summaryrefslogtreecommitdiff
path: root/example_free917/grammar/grammar.8
blob: ab388a49a7dfde16f1d909e0bf1d08cd79631a7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
[X] ||| [X,1] wie ||| [X,1] wie ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.393585623128 MaxLexEgivenF=2.5282477959 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57417925849 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] as ||| EgivenFCoherent=1.09691001301 SampleCountF=2.47856649559 CountEF=1.39794000867 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=0.544175042425 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] what ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39521630774 MaxLexEgivenF=1.86361028607 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] how ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.388062468203 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] like ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=0.614879635764 MaxLexEgivenF=1.00917154112 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] such ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.59551603305 MaxLexEgivenF=0.988861737951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] such as ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=0.59551603305 MaxLexEgivenF=1.53303678038 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] wie ||| [X,1] however ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.99352499487 MaxLexEgivenF=2.67831362766 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie ||| [X,1] just ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.85695323304 MaxLexEgivenF=2.29761686943 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie ||| and [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.49166939209 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] wie ||| how [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.388062468203 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] wie [X,2] ||| [X,1] wie [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.393585623128 MaxLexEgivenF=2.5282477959 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie [X,2] ||| [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57417925849 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie [X,2] ||| [X,1] as [X,2] ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=0.544175042425 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] wie [X,2] ||| [X,1] as [X,2] as ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=1.08835008485 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-3
[X] ||| [X,1] wie [X,2] ||| [X,1] as for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=2.19171110639 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie [X,2] ||| [X,1] as is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=2.01450929193 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] wie [X,2] ||| [X,1] how [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.388062468203 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] wie [X,2] ||| [X,1] like [X,2] ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=0.614879635764 MaxLexEgivenF=1.00917154112 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] wie [X,2] ||| [X,1] such as [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.59551603305 MaxLexEgivenF=1.53303678038 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] wie [X,2] ||| how [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.388062468203 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| wie ||| and ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.49166939209 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| wie ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.393585623128 MaxLexEgivenF=2.5282477959 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57417925849 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie ||| for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57417925849 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie ||| as ||| EgivenFCoherent=0.728933227713 SampleCountF=2.47856649559 CountEF=1.75587485567 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=0.544175042425 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| what ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.39521630774 MaxLexEgivenF=1.86361028607 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| where ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2189806527 MaxLexEgivenF=2.55593279611 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie ||| how ||| EgivenFCoherent=1.1346985739 SampleCountF=2.47856649559 CountEF=1.36172783602 MaxLexFgivenE=0.388062468203 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| like ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=0.614879635764 MaxLexEgivenF=1.00917154112 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| such ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.59551603305 MaxLexEgivenF=0.988861737951 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie ||| such as ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=0.59551603305 MaxLexEgivenF=1.53303678038 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| wie ||| including ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.21432328539 MaxLexEgivenF=1.90924374565 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| practically ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22604725044 MaxLexEgivenF=4.30743185172 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie ||| however ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.99352499487 MaxLexEgivenF=2.67831362766 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie ||| just ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85695323304 MaxLexEgivenF=2.29761686943 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie ||| look like ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.614879635764 MaxLexEgivenF=4.31044308413 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| wie [X,1] ||| and [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.49166939209 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] ||| wie [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.393585623128 MaxLexEgivenF=2.5282477959 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57417925849 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] ||| as [X,1] ||| EgivenFCoherent=1 SampleCountF=2.47856649559 CountEF=1.49136169383 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=0.544175042425 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie [X,1] ||| as [X,1] as ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=1.08835008485 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-2
[X] ||| wie [X,1] ||| as to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=1.55648031348 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] ||| as for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=2.19171110639 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] ||| as is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.915694477787 MaxLexEgivenF=2.01450929193 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] ||| what [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39521630774 MaxLexEgivenF=1.86361028607 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] ||| how [X,1] ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=0.388062468203 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie [X,1] ||| like [X,1] ||| EgivenFCoherent=1.09691001301 SampleCountF=2.47856649559 CountEF=1.39794000867 MaxLexFgivenE=0.614879635764 MaxLexEgivenF=1.00917154112 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie [X,1] ||| such as [X,1] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=0.59551603305 MaxLexEgivenF=1.53303678038 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| wie [X,1] ||| including [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.21432328539 MaxLexEgivenF=1.90924374565 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie [X,1] ||| practically [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22604725044 MaxLexEgivenF=4.30743185172 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] alt ||| [X,1] of age ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.7137907602 MaxLexEgivenF=1.91886399596 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] alt ||| [X,1] " alt ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.291484677758 MaxLexEgivenF=4.04198130348 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] alt ||| [X,1] old ||| EgivenFCoherent=0.568636235841 SampleCountF=2.47856649559 CountEF=1.91381385238 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] old people ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=3.69710874456 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] alt ||| [X,1] children ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30309783408 MaxLexEgivenF=2.4661933546 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] ago ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41422391814 MaxLexEgivenF=2.04518804186 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] alt ||| EgivenFCoherent=1.1346985739 SampleCountF=2.47856649559 CountEF=1.36172783602 MaxLexFgivenE=0.291484677758 MaxLexEgivenF=0.999730168067 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] ancient ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61694512601 MaxLexEgivenF=2.22883243881 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] 75th birthday ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96848294855 MaxLexEgivenF=6.4131120882 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] alt ||| [X,1] young ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.87962827886 MaxLexEgivenF=2.36145800408 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] age ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7137907602 MaxLexEgivenF=1.22202873076 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] originating ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76192783842 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt ||| [X,1] adults ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52672686731 MaxLexEgivenF=2.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt ||| old [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] alt [X,2] ||| [X,2] [X,1] of age ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.7137907602 MaxLexEgivenF=1.91886399596 IsSingletonF=0 IsSingletonFE=0 ||| 1-3
[X] ||| [X,1] alt [X,2] ||| [X,2] [X,1] old ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] alt [X,2] ||| [X,1] [X,2] old ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] alt [X,2] ||| [X,1] " alt [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.291484677758 MaxLexEgivenF=4.04198130348 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] alt [X,2] ||| [X,1] old [X,2] ||| EgivenFCoherent=0.778151250384 SampleCountF=2.47856649559 CountEF=1.7075701761 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] old , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=1.10117631447 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] old - [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=4.2300577435 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] old people [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=3.69710874456 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] alt [X,2] ||| [X,1] children [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30309783408 MaxLexEgivenF=2.4661933546 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] ago [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41422391814 MaxLexEgivenF=2.04518804186 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] alt [X,2] ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=0.291484677758 MaxLexEgivenF=0.999730168067 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] ancient [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61694512601 MaxLexEgivenF=2.22883243881 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] 75th birthday [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96848294855 MaxLexEgivenF=6.4131120882 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] alt [X,2] ||| [X,1] young [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.87962827886 MaxLexEgivenF=2.36145800408 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] originating [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76192783842 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| [X,1] adults [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52672686731 MaxLexEgivenF=2.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] alt [X,2] ||| old [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] alt [X,2] ||| berlin [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.11816548524 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| alt ||| before ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.15460653928 MaxLexEgivenF=3.2065560441 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| both ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.08800607634 MaxLexEgivenF=3.03046478504 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| but ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.98883977523 MaxLexEgivenF=2.50758603976 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt ||| old ||| EgivenFCoherent=0.485895179027 SampleCountF=2.47856649559 CountEF=1.9956351946 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt ||| old people ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=3.69710874456 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| alt ||| children ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30309783408 MaxLexEgivenF=2.4661933546 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| ago ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.41422391814 MaxLexEgivenF=2.04518804186 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt ||| alt ||| EgivenFCoherent=0.933053210369 SampleCountF=2.47856649559 CountEF=1.55630250077 MaxLexFgivenE=0.291484677758 MaxLexEgivenF=0.999730168067 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt ||| ancient ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.61694512601 MaxLexEgivenF=2.22883243881 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt ||| berlin ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.11816548524 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| 75th birthday ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96848294855 MaxLexEgivenF=6.4131120882 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| alt ||| young ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.87962827886 MaxLexEgivenF=2.36145800408 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| near ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.53192575494 MaxLexEgivenF=2.60449605277 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| word ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.53636902868 MaxLexEgivenF=3.2065560441 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| rental ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.76589197643 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| age ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.7137907602 MaxLexEgivenF=1.22202873076 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt ||| older ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26672434801 MaxLexEgivenF=2.18536674503 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| minimum age ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7137907602 MaxLexEgivenF=4.2524935158 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| alt ||| or ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.92395374735 MaxLexEgivenF=1.97610712272 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt ||| originating ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76192783842 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt ||| adults ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52672686731 MaxLexEgivenF=2.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| [X,1] old ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| alt [X,1] ||| before [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.15460653928 MaxLexEgivenF=3.2065560441 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| both [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.08800607634 MaxLexEgivenF=3.03046478504 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| but [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.98883977523 MaxLexEgivenF=2.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| old [X,1] ||| EgivenFCoherent=0.736758565225 SampleCountF=2.47856649559 CountEF=1.74818802701 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt [X,1] ||| old , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=1.10117631447 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| old - [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=4.2300577435 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| old people [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37576909778 MaxLexEgivenF=3.69710874456 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| alt [X,1] ||| children [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30309783408 MaxLexEgivenF=2.4661933546 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| ago [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41422391814 MaxLexEgivenF=2.04518804186 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt [X,1] ||| alt [X,1] ||| EgivenFCoherent=0.985759560885 SampleCountF=2.47856649559 CountEF=1.50514997832 MaxLexFgivenE=0.291484677758 MaxLexEgivenF=0.999730168067 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt [X,1] ||| ancient [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61694512601 MaxLexEgivenF=2.22883243881 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| berlin [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.11816548524 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| 75th birthday [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96848294855 MaxLexEgivenF=6.4131120882 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| alt [X,1] ||| young [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.87962827886 MaxLexEgivenF=2.36145800408 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| rental [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.76589197643 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| age of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7137907602 MaxLexEgivenF=1.91886399596 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| minimum age [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7137907602 MaxLexEgivenF=4.2524935158 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| alt [X,1] ||| originating [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76192783842 MaxLexEgivenF=3.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| alt [X,1] ||| adults [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52672686731 MaxLexEgivenF=2.50758603976 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] sollte ||| [X,1] was ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.64026788561 MaxLexEgivenF=1.54357236865 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sollte ||| [X,1] had ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.05699343767 MaxLexEgivenF=2.63108965722 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sollte ||| [X,1] this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.48982774976 MaxLexEgivenF=3.2645581128 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sollte ||| [X,1] have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45273063885 MaxLexEgivenF=2.42570902206 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sollte ||| [X,1] if ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89389481326 MaxLexEgivenF=1.09931378668 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sollte ||| [X,1] should ||| EgivenFCoherent=0.920818753952 SampleCountF=2.47856649559 CountEF=1.56820172407 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sollte ||| [X,1] should be ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] sollte ||| [X,1] should include ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=4.0804099057 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] sollte ||| [X,1] should give ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=3.73798722487 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] sollte ||| should [X,1] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] sollte ||| should be a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=2.75868395513 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] sollte ||| would [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.29544822102 MaxLexEgivenF=1.91820513835 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] sollte [X,2] ||| [X,2] [X,1] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] sollte [X,2] ||| [X,1] [X,2] should ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] sollte [X,2] ||| [X,1] was [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.64026788561 MaxLexEgivenF=1.54357236865 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sollte [X,2] ||| [X,1] , [X,2] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=1.12544541124 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] sollte [X,2] ||| [X,1] this [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.48982774976 MaxLexEgivenF=3.2645581128 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sollte [X,2] ||| [X,1] if [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89389481326 MaxLexEgivenF=1.09931378668 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sollte [X,2] ||| [X,1] should [X,2] ||| EgivenFCoherent=1.02996322338 SampleCountF=2.47856649559 CountEF=1.4623979979 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sollte [X,2] ||| [X,1] should be [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] sollte [X,2] ||| [X,1] should include [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=4.0804099057 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] sollte [X,2] ||| [X,1] should give [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=3.73798722487 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] sollte [X,2] ||| should [X,1] [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] sollte [X,2] ||| expect [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56457502673 MaxLexEgivenF=3.15061476049 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| sollte ||| was ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.64026788561 MaxLexEgivenF=1.54357236865 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte ||| ) should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=2.40645886677 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte ||| in ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=3.32403539291 MaxLexEgivenF=1.42080109061 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte ||| in case ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.21417554302 MaxLexEgivenF=3.62466136305 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte ||| it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.95561885599 MaxLexEgivenF=1.68821676259 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| over ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.95989164938 MaxLexEgivenF=3.48640686242 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| had ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.05699343767 MaxLexEgivenF=2.63108965722 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| were ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.33055870727 MaxLexEgivenF=2.72049006845 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| is ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.56716909157 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte ||| you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.06146139133 MaxLexEgivenF=1.63821774543 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| you should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=2.15303954266 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte ||| this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.48982774976 MaxLexEgivenF=3.2645581128 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| however , if ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89389481326 MaxLexEgivenF=4.12323716476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| sollte ||| have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45273063885 MaxLexEgivenF=2.42570902206 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| have to be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26116645838 MaxLexEgivenF=4.46502866778 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| sollte ||| be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.26116645838 MaxLexEgivenF=1.02701437466 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte ||| if ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.89389481326 MaxLexEgivenF=1.09931378668 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte ||| should ||| EgivenFCoherent=0.607889534989 SampleCountF=2.47856649559 CountEF=1.87506126339 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte ||| should be ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| sollte ||| should include ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=4.0804099057 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte ||| should give ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=3.73798722487 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte ||| would ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.29544822102 MaxLexEgivenF=1.91820513835 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte ||| expect ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56457502673 MaxLexEgivenF=3.15061476049 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| traveled ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52891670028 MaxLexEgivenF=3.96352811714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| make ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.42567276833 MaxLexEgivenF=2.96352811714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte ||| food ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96713484766 MaxLexEgivenF=3.03410919142 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] ||| [X,1] have to be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26116645838 MaxLexEgivenF=4.46502866778 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-3
[X] ||| sollte [X,1] ||| [X,1] should ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| sollte [X,1] ||| was [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.64026788561 MaxLexEgivenF=1.54357236865 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte [X,1] ||| ) should [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=2.40645886677 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte [X,1] ||| in [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.32403539291 MaxLexEgivenF=1.42080109061 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] ||| in case [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.21417554302 MaxLexEgivenF=3.62466136305 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte [X,1] ||| were [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.33055870727 MaxLexEgivenF=2.72049006845 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] ||| you should [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=2.15303954266 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte [X,1] ||| this [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.48982774976 MaxLexEgivenF=3.2645581128 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] ||| however , if [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89389481326 MaxLexEgivenF=4.12323716476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| sollte [X,1] ||| if [X,1] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.89389481326 MaxLexEgivenF=1.09931378668 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte [X,1] ||| should [X,1] ||| EgivenFCoherent=0.945642337677 SampleCountF=2.47856649559 CountEF=1.54406804435 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte [X,1] ||| should be [X,1] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| sollte [X,1] ||| should include [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=4.0804099057 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte [X,1] ||| should give [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.777777586123 MaxLexEgivenF=3.73798722487 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| sollte [X,1] ||| expect [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56457502673 MaxLexEgivenF=3.15061476049 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] ||| traveled [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52891670028 MaxLexEgivenF=3.96352811714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] ||| make [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.42567276833 MaxLexEgivenF=2.96352811714 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] man ||| [X,1] man ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.83064572545 MaxLexEgivenF=1.83023492238 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man ||| [X,1] the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.56607364502 MaxLexEgivenF=1.34466383608 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man ||| [X,1] it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=1.28633413954 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man ||| [X,1] it would ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=4.12365010708 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] man ||| [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52930887083 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man ||| [X,1] found ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.85800781064 MaxLexEgivenF=2.44900060722 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man ||| [X,1] one ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=1.41306101859 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man ||| [X,1] one can see ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=5.44456592192 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] man ||| [X,1] you ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=0.775017372873 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man ||| [X,1] you can go ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=5.02799321416 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] man ||| [X,1] we ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.07410159504 MaxLexEgivenF=1.69289104966 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man ||| [X,1] we get ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81135185082 MaxLexEgivenF=3.82945589835 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] man ||| [X,1] will help you to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=7.46277030894 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 1-4
[X] ||| [X,1] man ||| [X,1] i ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16613334134 MaxLexEgivenF=2.02761792053 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man ||| one [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=1.41306101859 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] man ||| you [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=0.775017372873 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] man [X,2] ||| [X,1] man [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.83064572545 MaxLexEgivenF=1.83023492238 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man [X,2] ||| [X,1] it [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=1.28633413954 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man [X,2] ||| [X,1] it would [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=4.12365010708 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] man [X,2] ||| [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52930887083 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man [X,2] ||| [X,1] found [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.85800781064 MaxLexEgivenF=2.44900060722 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man [X,2] ||| [X,1] one [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=1.41306101859 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man [X,2] ||| [X,1] one can see [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=5.44456592192 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] man [X,2] ||| [X,1] you [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=0.775017372873 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man [X,2] ||| [X,1] we [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.07410159504 MaxLexEgivenF=1.69289104966 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] man [X,2] ||| [X,1] we get [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81135185082 MaxLexEgivenF=3.82945589835 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] man [X,2] ||| [X,1] will help you to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=7.46277030894 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 1-4
[X] ||| [X,1] man [X,2] ||| [X,1] i [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16613334134 MaxLexEgivenF=2.02761792053 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] man [X,2] ||| one [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=1.41306101859 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] man [X,2] ||| you [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=0.775017372873 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] man [X,2] ||| you [X,1] [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=0.775017372873 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| man ||| man ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.83064572545 MaxLexEgivenF=1.83023492238 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99235643274 MaxLexEgivenF=2.87693696737 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| ) ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80194316563 MaxLexEgivenF=1.89163706954 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.56607364502 MaxLexEgivenF=1.34466383608 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| the people ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.04681882808 MaxLexEgivenF=3.67423480147 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| to ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.34497786156 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=1.28633413954 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| it there ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=3.10387960862 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| it is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=2.75666838904 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| it would ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=4.12365010708 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| there ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.88460781705 MaxLexEgivenF=1.81754546909 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| what ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.42645733853 MaxLexEgivenF=2.74399024846 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| where they ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84742818679 MaxLexEgivenF=4.11473305565 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| were ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.27913052979 MaxLexEgivenF=2.4061726015 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| is ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.52930887083 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| found ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.85800781064 MaxLexEgivenF=2.44900060722 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| one ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=1.41306101859 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| one can see ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=5.44456592192 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| man ||| you ||| EgivenFCoherent=1.04575749056 SampleCountF=2.47856649559 CountEF=1.44715803134 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=0.775017372873 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| you can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=2.38805222685 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| you can go ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=5.02799321416 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| man ||| you need ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=3.54115774929 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| you reach ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=3.55920225199 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16138439865 MaxLexEgivenF=1.56391826051 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| we ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.07410159504 MaxLexEgivenF=1.69289104966 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| we get ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81135185082 MaxLexEgivenF=3.82945589835 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| all you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=3.42066033901 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33015742365 MaxLexEgivenF=2.53480120297 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| will help you to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=7.46277030894 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| man ||| be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0804089052 MaxLexEgivenF=1.58336753201 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| if you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=2.85240691014 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man ||| they ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.84742818679 MaxLexEgivenF=1.87424004548 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| i ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.16613334134 MaxLexEgivenF=2.02761792053 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man ||| here ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63299687229 MaxLexEgivenF=2.92248757728 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| still ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63263401426 MaxLexEgivenF=3.20232827387 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man ||| uncertainty ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.71850168887 MaxLexEgivenF=5.00166882333 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| [X,1] they ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84742818679 MaxLexEgivenF=1.87424004548 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| man [X,1] ||| man [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.83064572545 MaxLexEgivenF=1.83023492238 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man [X,1] ||| . [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99235643274 MaxLexEgivenF=2.87693696737 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| the people [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.04681882808 MaxLexEgivenF=3.67423480147 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.34497786156 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| it [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=1.28633413954 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| it is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=2.75666838904 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] ||| it would [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81662552241 MaxLexEgivenF=4.12365010708 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] ||| what [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.42645733853 MaxLexEgivenF=2.74399024846 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52930887083 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| found [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.85800781064 MaxLexEgivenF=2.44900060722 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| one [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=1.41306101859 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man [X,1] ||| one can see [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50142792848 MaxLexEgivenF=5.44456592192 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| man [X,1] ||| you [X,1] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=0.775017372873 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man [X,1] ||| you need [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=3.54115774929 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] ||| we [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.07410159504 MaxLexEgivenF=1.69289104966 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man [X,1] ||| we get [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81135185082 MaxLexEgivenF=3.82945589835 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] ||| all you [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=3.42066033901 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] ||| will help you to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=7.46277030894 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| man [X,1] ||| if you [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46115030825 MaxLexEgivenF=2.85240691014 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] ||| they [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84742818679 MaxLexEgivenF=1.87424004548 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| man [X,1] ||| i [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.16613334134 MaxLexEgivenF=2.02761792053 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man [X,1] ||| here [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63299687229 MaxLexEgivenF=2.92248757728 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] sein ||| [X,1] it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62347518732 MaxLexEgivenF=1.87288254793 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein ||| [X,1] his ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.18138974424 MaxLexEgivenF=1.04258700833 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sein ||| [X,1] one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76988944711 MaxLexEgivenF=2.4612212807 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein ||| [X,1] its ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7375238821 MaxLexEgivenF=1.40369712748 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein ||| [X,1] be ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sein ||| [X,1] being ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.70305276654 MaxLexEgivenF=1.93441224179 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein ||| [X,1] sein ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.574655702748 MaxLexEgivenF=2.63835276656 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein ||| be [X,1] ||| EgivenFCoherent=0.9719712764 SampleCountF=2.47856649559 CountEF=1.51851393988 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] sein ||| being [X,1] others ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.70305276654 MaxLexEgivenF=5.30080646063 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| [X,1] sein [X,2] ||| [X,2] be [X,1] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sein [X,2] ||| [X,1] it [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62347518732 MaxLexEgivenF=1.87288254793 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein [X,2] ||| [X,1] his [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.18138974424 MaxLexEgivenF=1.04258700833 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sein [X,2] ||| [X,1] its [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7375238821 MaxLexEgivenF=1.40369712748 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein [X,2] ||| [X,1] be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] sein [X,2] ||| be [X,1] [X,2] ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] sein [X,2] ||| being [X,1] others [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.70305276654 MaxLexEgivenF=5.30080646063 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| sein ||| in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34459701549 MaxLexEgivenF=1.42080109061 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| the ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=3.34459701549 MaxLexEgivenF=1.34466383608 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| to ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.76299839549 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34459701549 MaxLexEgivenF=1.64753606397 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| it ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.62347518732 MaxLexEgivenF=1.87288254793 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| their ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.34158209389 MaxLexEgivenF=2.08588589032 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.22190812546 MaxLexEgivenF=2.32129714838 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| that can not be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=8.30479863044 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| sein ||| ” ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13848845287 MaxLexEgivenF=3.24988864977 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| not ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76620651026 MaxLexEgivenF=2.31598471536 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| his ||| EgivenFCoherent=1.04575749056 SampleCountF=2.47856649559 CountEF=1.44715803134 MaxLexFgivenE=1.18138974424 MaxLexEgivenF=1.04258700833 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76988944711 MaxLexEgivenF=2.4612212807 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| however ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.55392740656 MaxLexEgivenF=2.86755371443 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| its ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.7375238821 MaxLexEgivenF=1.40369712748 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| all ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34459701549 MaxLexEgivenF=3.43421424042 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.47666654832 MaxLexEgivenF=1.96645438554 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| will ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.66691862996 MaxLexEgivenF=2.1320327081 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| be ||| EgivenFCoherent=0.721246399047 SampleCountF=2.47856649559 CountEF=1.76342799356 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| being ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.70305276654 MaxLexEgivenF=1.93441224179 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein ||| sein ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.574655702748 MaxLexEgivenF=2.63835276656 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| systems ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34459701549 MaxLexEgivenF=4.78136756681 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein ||| technologies ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.23337690347 MaxLexEgivenF=4.17930757548 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sein [X,1] ||| [X,1] will ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66691862996 MaxLexEgivenF=2.1320327081 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| sein [X,1] ||| [X,1] be ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| sein [X,1] ||| the [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.34459701549 MaxLexEgivenF=1.34466383608 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein [X,1] ||| it [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.62347518732 MaxLexEgivenF=1.87288254793 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein [X,1] ||| his [X,1] ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=1.18138974424 MaxLexEgivenF=1.04258700833 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein [X,1] ||| its [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.7375238821 MaxLexEgivenF=1.40369712748 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein [X,1] ||| be [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.23782824606 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| [X,1] , ||| [X,1] , ||| EgivenFCoherent=0.590630529547 SampleCountF=2.47856649559 CountEF=1.89209460269 MaxLexFgivenE=0.186246036225 MaxLexEgivenF=0.212015318424 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] , ||| [X,1] and ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.523831401668 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] , [X,2] ||| [X,1] , [X,2] ||| EgivenFCoherent=0.651046452019 SampleCountF=2.47856649559 CountEF=1.83250891271 MaxLexFgivenE=0.186246036225 MaxLexEgivenF=0.212015318424 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| , ||| . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.523831401668 MaxLexEgivenF=2.33909787868 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| , ||| , ||| EgivenFCoherent=0.38721614328 SampleCountF=2.47856649559 CountEF=2.09342168516 MaxLexFgivenE=0.186246036225 MaxLexEgivenF=0.212015318424 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| , ||| and ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.523831401668 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| , ||| to ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.523831401668 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| , ||| that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.487393411096 MaxLexEgivenF=1.30197103764 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| , [X,1] ||| , [X,1] ||| EgivenFCoherent=0.585026652029 SampleCountF=2.47856649559 CountEF=1.89762709129 MaxLexFgivenE=0.186246036225 MaxLexEgivenF=0.212015318424 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| , [X,1] ||| and [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.523831401668 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| , [X,1] ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.523831401668 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] um ||| [X,1] in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92054718907 MaxLexEgivenF=1.08713736777 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] um ||| [X,1] in order to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.693457579698 MaxLexEgivenF=2.82907678454 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] um ||| [X,1] to ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.31351218197 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um ||| [X,1] for ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.72082635162 MaxLexEgivenF=1.15667476722 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um ||| [X,1] at ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.78324772291 MaxLexEgivenF=1.57899244056 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um ||| [X,1] by ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78607055458 MaxLexEgivenF=1.54711339033 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] um ||| [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82369037449 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] um ||| [X,1] around ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.802472803248 MaxLexEgivenF=1.54464730268 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um ||| [X,1] facilitate ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.55606115901 MaxLexEgivenF=4.53984359428 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] um ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31351218197 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] um [X,2] ||| [X,1] [X,2] involves ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3079398337 MaxLexEgivenF=3.21350773335 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] um [X,2] ||| [X,1] in the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92054718907 MaxLexEgivenF=2.43180120385 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] um [X,2] ||| [X,1] to [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.31351218197 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um [X,2] ||| [X,1] for [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.72082635162 MaxLexEgivenF=1.15667476722 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um [X,2] ||| [X,1] at [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.78324772291 MaxLexEgivenF=1.57899244056 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um [X,2] ||| [X,1] by [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78607055458 MaxLexEgivenF=1.54711339033 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] um [X,2] ||| [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82369037449 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] um [X,2] ||| [X,1] around [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.802472803248 MaxLexEgivenF=1.54464730268 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] um [X,2] ||| to [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31351218197 MaxLexEgivenF=1.0446246116 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| um ||| in ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.92054718907 MaxLexEgivenF=1.08713736777 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| in order ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.693457579698 MaxLexEgivenF=2.48128743814 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| um ||| in order to ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.693457579698 MaxLexEgivenF=2.82907678454 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 0-2
[X] ||| um ||| to ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=1.31351218197 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| to take ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31351218197 MaxLexEgivenF=3.38248296235 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| um ||| on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66528743303 MaxLexEgivenF=2.09624703638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um ||| for ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=1.72082635162 MaxLexEgivenF=1.15667476722 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| as ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.76212148868 MaxLexEgivenF=2.16942275345 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| with ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.47895703404 MaxLexEgivenF=1.71760560821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um ||| at ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.78324772291 MaxLexEgivenF=1.57899244056 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| by ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.78607055458 MaxLexEgivenF=1.54711339033 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| is ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.82369037449 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| around ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.802472803248 MaxLexEgivenF=1.54464730268 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| get ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89613851332 MaxLexEgivenF=2.45849628648 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um ||| facilitate ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.55606115901 MaxLexEgivenF=4.53984359428 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um ||| involves ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3079398337 MaxLexEgivenF=3.21350773335 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um ||| order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.693457579698 MaxLexEgivenF=1.39415007038 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um ||| delight ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84104646541 MaxLexEgivenF=4.93778360295 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| [X,1] involves ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3079398337 MaxLexEgivenF=3.21350773335 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| um [X,1] ||| in [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.92054718907 MaxLexEgivenF=1.08713736777 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um [X,1] ||| in the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92054718907 MaxLexEgivenF=2.43180120385 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| in order to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.693457579698 MaxLexEgivenF=2.82907678454 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| um [X,1] ||| to [X,1] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.31351218197 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um [X,1] ||| on [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66528743303 MaxLexEgivenF=2.09624703638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| for [X,1] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.72082635162 MaxLexEgivenF=1.15667476722 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um [X,1] ||| as [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76212148868 MaxLexEgivenF=2.16942275345 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| with [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.47895703404 MaxLexEgivenF=1.71760560821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| at [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.78324772291 MaxLexEgivenF=1.57899244056 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um [X,1] ||| by [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78607055458 MaxLexEgivenF=1.54711339033 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82369037449 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| around [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.802472803248 MaxLexEgivenF=1.54464730268 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| um [X,1] ||| order [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.693457579698 MaxLexEgivenF=1.39415007038 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] ||| delight [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84104646541 MaxLexEgivenF=4.93778360295 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] monopoly ||| [X,1] game of monopoly ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=2.52934417792 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] monopoly ||| [X,1] monopoly ||| EgivenFCoherent=0.54406804435 SampleCountF=1.4623979979 CountEF=0.954242509439 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=0.602059991328 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] monopoly ||| [X,1] monopoly , a place ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=4.26204030128 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-4
[X] ||| [X,1] monopoly [X,2] ||| [X,1] monopoly [X,2] ||| EgivenFCoherent=0.54406804435 SampleCountF=1.4623979979 CountEF=0.954242509439 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=0.602059991328 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] monopoly [X,2] ||| [X,1] monopoly , a place [X,2] ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=4.26204030128 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-4
[X] ||| monopoly ||| ( ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=5.15888895599 MaxLexEgivenF=1.35538765799 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| monopoly ||| game of monopoly ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=2.52934417792 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| monopoly ||| monopoly ||| EgivenFCoherent=0.447158031342 SampleCountF=1.4623979979 CountEF=1.04139268516 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=0.602059991328 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| monopoly ||| monopoly , a place ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=4.26204030128 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-3
[X] ||| monopoly ||| monopoly ( game ) ||| EgivenFCoherent=1.14612803568 SampleCountF=1.4623979979 CountEF=0.47712125472 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=4.71937548774 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 0-2 0-3
[X] ||| monopoly [X,1] ||| ( [X,1] ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=5.15888895599 MaxLexEgivenF=1.35538765799 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| monopoly [X,1] ||| monopoly [X,1] ||| EgivenFCoherent=0.447158031342 SampleCountF=1.4623979979 CountEF=1.04139268516 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=0.602059991328 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| monopoly [X,1] ||| monopoly , a place [X,1] ||| EgivenFCoherent=1.44715803134 SampleCountF=1.4623979979 CountEF=0.301029995664 MaxLexFgivenE=1.33065246227 MaxLexEgivenF=4.26204030128 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-3
[X] ||| [X,1] spielen ||| [X,1] , play ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=1.10030126183 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] spielen ||| [X,1] of playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=1.81683081921 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] spielen ||| [X,1] on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.13215505338 MaxLexEgivenF=2.09624703638 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] are playing ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=2.846771738 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] spielen ||| [X,1] some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.71784379796 MaxLexEgivenF=2.91004602768 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] title ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.12336155875 MaxLexEgivenF=3.3871672824 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] spielen ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.670941280736 MaxLexEgivenF=2.48407729541 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] games ||| EgivenFCoherent=1.01472325682 SampleCountF=2.47856649559 CountEF=1.47712125472 MaxLexFgivenE=0.998170807679 MaxLexEgivenF=0.888512187157 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] playing ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=1.119995554 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] play ||| EgivenFCoherent=1.1346985739 SampleCountF=2.47856649559 CountEF=1.36172783602 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] gamble ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.950086549668 MaxLexEgivenF=2.44515922938 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] gambling ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.32776424891 MaxLexEgivenF=2.18988672428 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen ||| [X,1] gameplay ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.83463260634 MaxLexEgivenF=3.03498476429 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen ||| are playing [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=2.846771738 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] spielen ||| playing [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=1.119995554 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] spielen ||| play [X,1] ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] spielen [X,2] ||| [X,2] [X,1] , play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=1.10030126183 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] spielen [X,2] ||| [X,2] [X,1] of playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=1.81683081921 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] spielen [X,2] ||| [X,2] [X,1] games ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.998170807679 MaxLexEgivenF=0.888512187157 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] spielen [X,2] ||| [X,2] [X,1] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] spielen [X,2] ||| [X,2] [X,1] gameplay ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.83463260634 MaxLexEgivenF=3.03498476429 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] spielen [X,2] ||| [X,2] are playing [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=2.846771738 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] spielen [X,2] ||| [X,2] play [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| [X,1] [X,2] play ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] spielen [X,2] ||| [X,1] , play [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=1.10030126183 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] spielen [X,2] ||| [X,1] are playing [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=2.846771738 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] spielen [X,2] ||| [X,1] some [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.71784379796 MaxLexEgivenF=2.91004602768 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| [X,1] title [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.12336155875 MaxLexEgivenF=3.3871672824 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| [X,1] spielen [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.670941280736 MaxLexEgivenF=2.48407729541 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| [X,1] games [X,2] ||| EgivenFCoherent=1.15490195999 SampleCountF=2.47856649559 CountEF=1.34242268082 MaxLexFgivenE=0.998170807679 MaxLexEgivenF=0.888512187157 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| [X,1] playing [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=1.119995554 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| [X,1] play [X,2] ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| [X,1] gambling [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.32776424891 MaxLexEgivenF=2.18988672428 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] spielen [X,2] ||| play [X,1] [X,2] ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| spielen ||| de ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.90930041678 MaxLexEgivenF=3.03498476429 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.13215505338 MaxLexEgivenF=2.09624703638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| with ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.08286677649 MaxLexEgivenF=1.71760560821 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| are ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.33668387174 MaxLexEgivenF=1.726776184 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen ||| are playing ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=2.846771738 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| spielen ||| some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.71784379796 MaxLexEgivenF=2.91004602768 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.61948187166 MaxLexEgivenF=2.31712941579 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| take ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.30667516631 MaxLexEgivenF=2.60901603202 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| first ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.0934006704 MaxLexEgivenF=3.29025726939 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| title ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.12336155875 MaxLexEgivenF=3.3871672824 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| now ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.86216120621 MaxLexEgivenF=3.21107602335 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| spielen ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.670941280736 MaxLexEgivenF=2.48407729541 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen ||| games ||| EgivenFCoherent=0.933053210369 SampleCountF=2.47856649559 CountEF=1.55630250077 MaxLexFgivenE=0.998170807679 MaxLexEgivenF=0.888512187157 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen ||| playing ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=1.119995554 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen ||| play ||| EgivenFCoherent=0.596307662439 SampleCountF=2.47856649559 CountEF=1.88649072517 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen ||| play at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=3.5497292016 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| spielen ||| gamble ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.950086549668 MaxLexEgivenF=2.44515922938 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| children ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34449051924 MaxLexEgivenF=2.98922727373 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| gambling ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.32776424891 MaxLexEgivenF=2.18988672428 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| game ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0408316415 MaxLexEgivenF=1.76134056912 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen ||| gameplay ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.83463260634 MaxLexEgivenF=3.03498476429 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen [X,1] ||| [X,1] to play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=1.50198291888 IsSingletonF=0 IsSingletonFE=1 ||| 0-2
[X] ||| spielen [X,1] ||| [X,1] are ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.33668387174 MaxLexEgivenF=1.726776184 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| spielen [X,1] ||| [X,1] are playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=2.846771738 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2
[X] ||| spielen [X,1] ||| [X,1] play ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| spielen [X,1] ||| are playing [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=2.846771738 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| spielen [X,1] ||| some [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.71784379796 MaxLexEgivenF=2.91004602768 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen [X,1] ||| do [X,1] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=3.03174689021 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| spielen [X,1] ||| title [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.12336155875 MaxLexEgivenF=3.3871672824 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen [X,1] ||| spielen [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.670941280736 MaxLexEgivenF=2.48407729541 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen [X,1] ||| games [X,1] ||| EgivenFCoherent=1.1153934187 SampleCountF=2.47856649559 CountEF=1.38021124171 MaxLexFgivenE=0.998170807679 MaxLexEgivenF=0.888512187157 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen [X,1] ||| playing [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.00408888208 MaxLexEgivenF=1.119995554 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen [X,1] ||| play [X,1] ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=0.692711092737 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| spielen [X,1] ||| children [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34449051924 MaxLexEgivenF=2.98922727373 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| spielen [X,1] ||| gambling [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.32776424891 MaxLexEgivenF=2.18988672428 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] zu ||| [X,1] of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=0.69683526521 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] zu ||| [X,1] to ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=0.797361455792 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] zu ||| [X,1] on ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.4939987167 MaxLexEgivenF=1.59269263256 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] zu ||| [X,1] for ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.4772648401 MaxLexEgivenF=1.38226988104 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] zu ||| [X,1] with ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=1.71760560821 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] zu ||| [X,1] at ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37067191445 MaxLexEgivenF=1.63557325744 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] zu ||| [X,1] attacks ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=4.6665775388 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] zu [X,2] ||| [X,2] [X,1] with ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=1.71760560821 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] zu [X,2] ||| [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=0.69683526521 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] zu [X,2] ||| [X,1] to [X,2] ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=0.797361455792 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] zu [X,2] ||| [X,1] on [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.4939987167 MaxLexEgivenF=1.59269263256 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] zu [X,2] ||| [X,1] for [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.4772648401 MaxLexEgivenF=1.38226988104 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] zu [X,2] ||| [X,1] at [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37067191445 MaxLexEgivenF=1.63557325744 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] zu [X,2] ||| to [X,2] [X,1] ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=0.797361455792 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| zu ||| and ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=0.94620073587 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu ||| of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=0.69683526521 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu ||| to ||| EgivenFCoherent=0.632023214705 SampleCountF=2.47856649559 CountEF=1.85125834872 MaxLexFgivenE=0.797361455792 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu ||| on ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.4939987167 MaxLexEgivenF=1.59269263256 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu ||| for ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.4772648401 MaxLexEgivenF=1.38226988104 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu ||| as ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=2.16942275345 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu ||| with ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=1.71760560821 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu ||| at ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.37067191445 MaxLexEgivenF=1.63557325744 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu ||| up ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=2.82658556719 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu ||| attacks ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=4.6665775388 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu ||| unto ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.774652703964 MaxLexEgivenF=2.57093276917 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu ||| into ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.26629876138 MaxLexEgivenF=2.14758530099 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu [X,1] ||| of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50018638689 MaxLexEgivenF=0.69683526521 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu [X,1] ||| of [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.797361455792 MaxLexEgivenF=0.997630510772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| zu [X,1] ||| to [X,1] ||| EgivenFCoherent=0.805023396784 SampleCountF=2.47856649559 CountEF=1.68124123738 MaxLexFgivenE=0.797361455792 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu [X,1] ||| on [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.4939987167 MaxLexEgivenF=1.59269263256 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| zu [X,1] ||| for [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.4772648401 MaxLexEgivenF=1.38226988104 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu [X,1] ||| at [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.37067191445 MaxLexEgivenF=1.63557325744 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| zu [X,1] ||| unto [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.774652703964 MaxLexEgivenF=2.57093276917 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] können ||| [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64570790937 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können ||| [X,1] is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.7915334141 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können ||| [X,1] you can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.85339491092 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] können ||| [X,1] will ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89186193426 MaxLexEgivenF=1.74141049521 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] können ||| [X,1] be able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.894618110557 MaxLexEgivenF=2.86405163427 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] können ||| [X,1] may ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] können ||| [X,1] can ||| EgivenFCoherent=0.920818753952 SampleCountF=2.47856649559 CountEF=1.56820172407 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] können ||| [X,1] can use ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=2.49498278979 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] können ||| [X,1] can be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.66033281896 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] können ||| [X,1] lets ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.926406930643 MaxLexEgivenF=2.58260327566 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können ||| [X,1] do ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16539554997 MaxLexEgivenF=2.49094090889 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können ||| [X,1] allows ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.12634516521 MaxLexEgivenF=2.06405497568 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können ||| [X,1] able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.894618110557 MaxLexEgivenF=1.61925938615 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können ||| be able [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.894618110557 MaxLexEgivenF=2.86405163427 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 1-1
[X] ||| [X,1] können ||| may [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] können ||| can [X,1] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] können ||| can be [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.66033281896 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] können ||| might [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.38828270815 MaxLexEgivenF=2.50116007407 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] können [X,2] ||| [X,2] , [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.02616418484 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] können [X,2] ||| [X,2] can [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] können [X,2] ||| [X,1] [X,2] will ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89186193426 MaxLexEgivenF=1.74141049521 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] können [X,2] ||| [X,1] [X,2] may ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] können [X,2] ||| [X,1] [X,2] can ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] können [X,2] ||| [X,1] [X,2] can be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.66033281896 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3
[X] ||| [X,1] können [X,2] ||| [X,1] , [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.02616418484 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] können [X,2] ||| [X,1] , [X,2] can be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=2.27095643297 IsSingletonF=0 IsSingletonFE=1 ||| 1-3 1-4
[X] ||| [X,1] können [X,2] ||| [X,1] is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.7915334141 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können [X,2] ||| [X,1] will [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89186193426 MaxLexEgivenF=1.74141049521 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können [X,2] ||| [X,1] may [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] können [X,2] ||| [X,1] can [X,2] ||| EgivenFCoherent=1.07918124605 SampleCountF=2.47856649559 CountEF=1.41497334797 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] können [X,2] ||| [X,1] can use [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=2.49498278979 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] können [X,2] ||| [X,1] can be [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.66033281896 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] können [X,2] ||| [X,1] lets [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.926406930643 MaxLexEgivenF=2.58260327566 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] können [X,2] ||| be able [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.894618110557 MaxLexEgivenF=2.86405163427 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 1-1
[X] ||| [X,1] können [X,2] ||| may [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] können [X,2] ||| may [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] können [X,2] ||| can [X,1] [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| können ||| to ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.64570790937 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| is ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.7915334141 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| you ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.95985404916 MaxLexEgivenF=1.43785434008 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| you can ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.85339491092 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| können ||| are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.9801460411 MaxLexEgivenF=1.54681312926 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können ||| will ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.89186193426 MaxLexEgivenF=1.74141049521 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| be ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.57770039502 MaxLexEgivenF=1.24479224813 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| be able ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.894618110557 MaxLexEgivenF=2.86405163427 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| können ||| may ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| can ||| EgivenFCoherent=0.460087915421 SampleCountF=2.47856649559 CountEF=2.02118929907 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| can use ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=2.49498278979 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| können ||| can be ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.66033281896 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| können ||| lets ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.926406930643 MaxLexEgivenF=2.58260327566 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können ||| do ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16539554997 MaxLexEgivenF=2.49094090889 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können ||| might ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.38828270815 MaxLexEgivenF=2.50116007407 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können ||| allows ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.12634516521 MaxLexEgivenF=2.06405497568 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können ||| allows you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.12634516521 MaxLexEgivenF=3.50190931576 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| können ||| help ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.95029381481 MaxLexEgivenF=2.64860615167 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können ||| also ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11084649784 MaxLexEgivenF=2.17324853179 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können ||| able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.894618110557 MaxLexEgivenF=1.61925938615 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können [X,1] ||| [X,1] will ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.89186193426 MaxLexEgivenF=1.74141049521 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| können [X,1] ||| [X,1] be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57770039502 MaxLexEgivenF=1.24479224813 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| können [X,1] ||| [X,1] may ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| können [X,1] ||| [X,1] can ||| EgivenFCoherent=1.15490195999 SampleCountF=2.47856649559 CountEF=1.34242268082 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| können [X,1] ||| [X,1] can be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.66033281896 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 0-2
[X] ||| können [X,1] ||| is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.7915334141 MaxLexEgivenF=1.47033424951 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können [X,1] ||| will [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89186193426 MaxLexEgivenF=1.74141049521 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können [X,1] ||| may [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.882166521606 MaxLexEgivenF=1.28647674884 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können [X,1] ||| can [X,1] ||| EgivenFCoherent=0.985759560885 SampleCountF=2.47856649559 CountEF=1.50514997832 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| können [X,1] ||| can use [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=2.49498278979 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| können [X,1] ||| can be [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.599625770218 MaxLexEgivenF=1.66033281896 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| können [X,1] ||| lets [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.926406930643 MaxLexEgivenF=2.58260327566 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können [X,1] ||| allows [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.12634516521 MaxLexEgivenF=2.06405497568 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| können [X,1] ||| help [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.95029381481 MaxLexEgivenF=2.64860615167 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] wie alt ||| [X,1] , how old ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=1.99969014534 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] wie alt ||| [X,1] , such as alt ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=0.887000710808 MaxLexEgivenF=3.14339056245 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 2-4
[X] ||| [X,1] wie alt ||| [X,1] how old ||| EgivenFCoherent=1.27875360095 SampleCountF=1.76342799356 CountEF=0.602059991328 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=1.38906653134 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] wie alt ||| as [X,1] how old exactly ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=4.8387676222 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2 2-3 2-4
[X] ||| [X,1] wie alt [X,2] ||| [X,1] , how old [X,2] ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=1.99969014534 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] wie alt [X,2] ||| [X,1] , such as alt [X,2] ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=0.887000710808 MaxLexEgivenF=3.14339056245 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 2-4
[X] ||| [X,1] wie alt [X,2] ||| [X,1] what [X,2] age ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=3.10900706794 MaxLexEgivenF=3.08563901683 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] wie alt [X,2] ||| [X,1] how old [X,2] ||| EgivenFCoherent=1.45484486001 SampleCountF=1.76342799356 CountEF=0.47712125472 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=1.38906653134 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] wie alt [X,2] ||| as [X,1] how old exactly [X,2] ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=4.8387676222 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2 2-3 2-4
[X] ||| wie alt ||| what age ||| EgivenFCoherent=1.45484486001 SampleCountF=1.76342799356 CountEF=0.47712125472 MaxLexFgivenE=3.10900706794 MaxLexEgivenF=3.08563901683 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| wie alt ||| how long ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=4.14007248118 MaxLexEgivenF=3.80403987931 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| wie alt ||| how old ||| EgivenFCoherent=0.641931503366 SampleCountF=1.76342799356 CountEF=1.14612803568 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=1.38906653134 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| wie alt ||| such as alt ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=0.887000710808 MaxLexEgivenF=2.53276694844 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| wie alt ||| however old ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=3.36929409265 MaxLexEgivenF=3.16886632812 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| wie alt ||| exact age ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=3.79423685481 MaxLexEgivenF=5.07352862683 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| wie alt [X,1] ||| what [X,1] age ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=3.10900706794 MaxLexEgivenF=3.08563901683 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| wie alt [X,1] ||| what age [X,1] ||| EgivenFCoherent=1.45484486001 SampleCountF=1.76342799356 CountEF=0.47712125472 MaxLexFgivenE=3.10900706794 MaxLexEgivenF=3.08563901683 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| wie alt [X,1] ||| how long [X,1] ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=4.14007248118 MaxLexEgivenF=3.80403987931 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| wie alt [X,1] ||| how old [X,1] ||| EgivenFCoherent=0.755874855672 SampleCountF=1.76342799356 CountEF=1.04139268516 MaxLexFgivenE=1.76383156599 MaxLexEgivenF=1.38906653134 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| wie alt [X,1] ||| such as alt [X,1] ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=0.887000710808 MaxLexEgivenF=2.53276694844 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| wie alt [X,1] ||| however old [X,1] ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=3.36929409265 MaxLexEgivenF=3.16886632812 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] the way [X,2] shouldn ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33133548784 MaxLexEgivenF=5.66373145441 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] wie [X,2] sollte ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.03819796514 MaxLexEgivenF=5.26132699166 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] as [X,2] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.5559623634 MaxLexEgivenF=2.08774741107 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] as [X,2] ) ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.2077238753 MaxLexEgivenF=2.43581211196 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] as [X,2] when ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.98755383551 MaxLexEgivenF=2.99581979858 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] as [X,2] should ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=1.05899683966 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] as [X,2] should be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=2.08601121431 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] how [X,2] should be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16584005433 MaxLexEgivenF=2.44035000276 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] such as [X,2] should ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.37329361917 MaxLexEgivenF=2.04785857761 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] sollte ||| [X,1] however as with [X,2] should ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=5.18990221195 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-5
[X] ||| [X,1] wie [X,2] sollte ||| how [X,1] [X,2] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16584005433 MaxLexEgivenF=1.4133356281 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| wie [X,1] sollte ||| [X,1] how would ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68351068923 MaxLexEgivenF=2.81671896922 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2
[X] ||| wie [X,1] sollte ||| wie [X,1] sollte ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.03819796514 MaxLexEgivenF=5.26132699166 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| as [X,1] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.5559623634 MaxLexEgivenF=2.08774741107 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| as [X,1] ) ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.2077238753 MaxLexEgivenF=2.43581211196 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| as [X,1] when ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.98755383551 MaxLexEgivenF=2.99581979858 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| as [X,1] should ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=1.05899683966 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| as [X,1] should be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=2.08601121431 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] sollte ||| as how [X,1] you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.44952385953 MaxLexEgivenF=3.08090661872 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] sollte ||| how [X,1] it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.3436813242 MaxLexEgivenF=2.58673059347 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| how [X,1] should ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=1.16584005433 MaxLexEgivenF=1.4133356281 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| how [X,1] should be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16584005433 MaxLexEgivenF=2.44035000276 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] sollte ||| how [X,1] do ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.32522917192 MaxLexEgivenF=3.11705055878 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte ||| such as [X,1] should ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.37329361917 MaxLexEgivenF=2.04785857761 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] sollte ||| however as with [X,1] should ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=5.18990221195 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-4
[X] ||| wie [X,1] sollte ||| way [X,1] shouldn ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33133548784 MaxLexEgivenF=4.31906761832 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| [X,1] how would [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68351068923 MaxLexEgivenF=2.81671896922 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2
[X] ||| wie [X,1] sollte [X,2] ||| wie [X,1] sollte [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.03819796514 MaxLexEgivenF=5.26132699166 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| as [X,1] [X,2] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=1.05899683966 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| wie [X,1] sollte [X,2] ||| as [X,1] was to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.5559623634 MaxLexEgivenF=3.10005268213 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| as [X,1] , [X,2] should be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=2.69663482832 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4 2-5
[X] ||| wie [X,1] sollte [X,2] ||| as [X,1] ) [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.2077238753 MaxLexEgivenF=2.43581211196 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| as [X,1] when [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.98755383551 MaxLexEgivenF=2.99581979858 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| as [X,1] should [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=1.05899683966 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| as [X,1] should be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=2.08601121431 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] sollte [X,2] ||| how [X,1] should [X,2] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.16584005433 MaxLexEgivenF=1.4133356281 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| how [X,1] should be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16584005433 MaxLexEgivenF=2.44035000276 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] sollte [X,2] ||| how [X,1] do [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.32522917192 MaxLexEgivenF=3.11705055878 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sollte [X,2] ||| like [X,1] [X,2] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39265722189 MaxLexEgivenF=1.52399333835 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| wie [X,1] sollte [X,2] ||| such as [X,1] should [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.37329361917 MaxLexEgivenF=2.04785857761 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] sollte [X,2] ||| however as with [X,1] should [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.69347206391 MaxLexEgivenF=5.18990221195 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-4
[X] ||| wie [X,1] sollte [X,2] ||| way [X,1] shouldn [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33133548784 MaxLexEgivenF=4.31906761832 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] wie [X,2] man ||| [X,1] as [X,2] man ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.74634020324 MaxLexEgivenF=2.37440996481 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] as [X,2] you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37684478604 MaxLexEgivenF=1.3191924153 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] how [X,2] one ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.88949039668 MaxLexEgivenF=2.31157484946 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] how [X,2] you ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=1.67353120375 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] how [X,2] be called ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=5.06524889489 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] wie [X,2] man ||| [X,1] how can you [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=3.28656605772 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-2 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] how do you [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=3.89206793165 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] like [X,2] man ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.44552536121 MaxLexEgivenF=2.8394064635 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] like [X,2] one ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.11630756424 MaxLexEgivenF=2.4222325597 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] man ||| [X,1] like [X,2] you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07602994401 MaxLexEgivenF=1.78418891399 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| wie [X,1] man ||| as [X,1] man ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.74634020324 MaxLexEgivenF=2.37440996481 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| as [X,1] one were to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41712240627 MaxLexEgivenF=5.37571393357 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 2-4
[X] ||| wie [X,1] man ||| as [X,1] you ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.37684478604 MaxLexEgivenF=1.3191924153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| how [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| wie [X,1] man ||| how [X,1] it ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=2.18484797041 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| how [X,1] one ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.88949039668 MaxLexEgivenF=2.31157484946 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| how [X,1] one supposed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.88949039668 MaxLexEgivenF=6.16711563711 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] man ||| how [X,1] you ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=1.67353120375 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| how [X,1] be called ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=5.06524889489 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] man ||| how [X,1] i ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=2.92613175141 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| how can you [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=3.28656605772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1 2-2
[X] ||| wie [X,1] man ||| how can we [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=4.20443973451 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1 2-2
[X] ||| wie [X,1] man ||| how do you [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=3.89206793165 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-2
[X] ||| wie [X,1] man ||| like [X,1] man ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.44552536121 MaxLexEgivenF=2.8394064635 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| like [X,1] one ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.11630756424 MaxLexEgivenF=2.4222325597 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man ||| like [X,1] you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07602994401 MaxLexEgivenF=1.78418891399 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| as [X,1] man [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.74634020324 MaxLexEgivenF=2.37440996481 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| as [X,1] you [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.37684478604 MaxLexEgivenF=1.3191924153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| how [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=0.898513830873 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| wie [X,1] man [X,2] ||| how [X,1] it [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=2.18484797041 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| how [X,1] one [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.88949039668 MaxLexEgivenF=2.31157484946 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| how [X,1] one [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.88949039668 MaxLexEgivenF=3.32388012052 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-4
[X] ||| wie [X,1] man [X,2] ||| how [X,1] one supposed [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.88949039668 MaxLexEgivenF=6.16711563711 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] man [X,2] ||| how [X,1] you [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=1.67353120375 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| how [X,1] be called [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=5.06524889489 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] man [X,2] ||| how [X,1] i [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=2.92613175141 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| how are [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=2.46243209138 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| wie [X,1] man [X,2] ||| how can you [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=3.28656605772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1 2-2
[X] ||| wie [X,1] man [X,2] ||| how can we [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89788130774 MaxLexEgivenF=4.20443973451 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1 2-2
[X] ||| wie [X,1] man [X,2] ||| how do you [X,1] [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.84921277645 MaxLexEgivenF=3.89206793165 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-2
[X] ||| wie [X,1] man [X,2] ||| like [X,1] man [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.44552536121 MaxLexEgivenF=2.8394064635 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| like [X,1] one [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.11630756424 MaxLexEgivenF=2.4222325597 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] man [X,2] ||| like [X,1] you [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07602994401 MaxLexEgivenF=1.78418891399 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] wie [X,2] sein ||| [X,1] wie [X,2] sein ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.968241325876 MaxLexEgivenF=5.16660056246 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sein ||| [X,1] as [X,2] in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.26029149328 MaxLexEgivenF=1.96497613303 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sein ||| [X,1] as [X,2] as his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09708422202 MaxLexEgivenF=2.13093709318 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3 3-4
[X] ||| [X,1] wie [X,2] sein ||| [X,1] how [X,2] his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56945221244 MaxLexEgivenF=1.9411008392 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sein ||| [X,1] how [X,2] will be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.62589071426 MaxLexEgivenF=3.55103215532 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] wie [X,2] sein ||| [X,1] how [X,2] be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.62589071426 MaxLexEgivenF=1.41899944722 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] sein ||| [X,1] such as [X,2] his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.77690577729 MaxLexEgivenF=2.5756237887 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] sein ||| [X,1] be like [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85270788182 MaxLexEgivenF=1.52965715747 IsSingletonF=0 IsSingletonFE=0 ||| 3-1 1-2
[X] ||| wie [X,1] sein ||| wie [X,1] sein ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.968241325876 MaxLexEgivenF=5.16660056246 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sein ||| as [X,1] in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.26029149328 MaxLexEgivenF=1.96497613303 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sein ||| as [X,1] as his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09708422202 MaxLexEgivenF=2.13093709318 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 2-3
[X] ||| wie [X,1] sein ||| how [X,1] his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56945221244 MaxLexEgivenF=1.9411008392 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sein ||| how [X,1] will be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.62589071426 MaxLexEgivenF=3.55103215532 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] sein ||| how [X,1] be ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.62589071426 MaxLexEgivenF=1.41899944722 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sein ||| such as [X,1] his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.77690577729 MaxLexEgivenF=2.5756237887 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] sein ||| be like [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85270788182 MaxLexEgivenF=1.52965715747 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 0-1
[X] ||| wie [X,1] sein [X,2] ||| wie [X,1] sein [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.968241325876 MaxLexEgivenF=5.16660056246 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sein [X,2] ||| as [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.26029149328 MaxLexEgivenF=0.544175042425 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] sein [X,2] ||| as [X,1] [X,2] be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15352272384 MaxLexEgivenF=1.06466065877 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| wie [X,1] sein [X,2] ||| as [X,1] as his [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09708422202 MaxLexEgivenF=2.13093709318 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 2-3
[X] ||| wie [X,1] sein [X,2] ||| how [X,1] [X,2] be ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.62589071426 MaxLexEgivenF=1.41899944722 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| wie [X,1] sein [X,2] ||| how [X,1] his [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56945221244 MaxLexEgivenF=1.9411008392 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sein [X,2] ||| how [X,1] will be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.62589071426 MaxLexEgivenF=3.55103215532 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] sein [X,2] ||| how [X,1] be [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.62589071426 MaxLexEgivenF=1.41899944722 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sein [X,2] ||| such as [X,1] his [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.77690577729 MaxLexEgivenF=2.5756237887 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] sein [X,2] ||| be like [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.85270788182 MaxLexEgivenF=1.52965715747 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 0-1
[X] ||| [X,1] wie [X,2] , ||| [X,1] , which include [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09006062388 MaxLexEgivenF=5.13505078983 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 3-5
[X] ||| [X,1] wie [X,2] , ||| [X,1] , like [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.801125671989 MaxLexEgivenF=1.43320217797 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] wie [X,2] , ||| [X,1] , including [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40056932161 MaxLexEgivenF=2.3332743825 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] wie [X,2] , ||| [X,1] and [X,2] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.97906280318 MaxLexEgivenF=2.24817177351 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] , ||| [X,1] as [X,2] , ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.10194051401 MaxLexEgivenF=0.756190360848 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] , ||| [X,1] how do [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.574308504428 MaxLexEgivenF=3.3290658772 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] , ||| [X,1] like [X,2] , ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.801125671989 MaxLexEgivenF=1.22118685954 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] , ||| [X,1] such as [X,2] , ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=0.781762069276 MaxLexEgivenF=1.7450520988 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] , ||| [X,1] including [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.40056932161 MaxLexEgivenF=2.12125906407 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| wie [X,1] , ||| and [X,1] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.97906280318 MaxLexEgivenF=2.24817177351 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] , ||| as [X,1] , ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=1.10194051401 MaxLexEgivenF=0.756190360848 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] , ||| which include [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09006062388 MaxLexEgivenF=4.92303547141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] , ||| how [X,1] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.574308504428 MaxLexEgivenF=1.1105291493 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] , ||| how do [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.574308504428 MaxLexEgivenF=3.3290658772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] , ||| like [X,1] , ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.801125671989 MaxLexEgivenF=1.22118685954 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] , ||| such [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.781762069276 MaxLexEgivenF=1.20087705637 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] , ||| such as [X,1] , ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=0.781762069276 MaxLexEgivenF=1.7450520988 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] , ||| including [X,1] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.40056932161 MaxLexEgivenF=2.12125906407 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] , [X,2] ||| and [X,1] that [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.97906280318 MaxLexEgivenF=2.24817177351 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] , [X,2] ||| as [X,1] , [X,2] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.10194051401 MaxLexEgivenF=0.756190360848 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] , [X,2] ||| which include [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09006062388 MaxLexEgivenF=4.92303547141 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] , [X,2] ||| how [X,1] , [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.574308504428 MaxLexEgivenF=1.1105291493 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] , [X,2] ||| how do [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.574308504428 MaxLexEgivenF=3.3290658772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] , [X,2] ||| like [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.13871103743 MaxLexEgivenF=1.00917154112 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] , [X,2] ||| like [X,1] , [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.801125671989 MaxLexEgivenF=1.22118685954 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] , [X,2] ||| such [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.781762069276 MaxLexEgivenF=1.20087705637 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] , [X,2] ||| such as [X,1] , [X,2] ||| EgivenFCoherent=1.22184874962 SampleCountF=2.47856649559 CountEF=1.27875360095 MaxLexFgivenE=0.781762069276 MaxLexEgivenF=1.7450520988 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] , [X,2] ||| such as [X,1] , the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.781762069276 MaxLexEgivenF=3.08971593488 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| [X,1] wie [X,2] um ||| [X,1] as how [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.70157465017 MaxLexEgivenF=1.79047821969 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] um ||| [X,1] like [X,2] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33570598738 MaxLexEgivenF=2.16584630834 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] um ||| [X,1] such as [X,2] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.31634238467 MaxLexEgivenF=2.6897115476 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] um ||| [X,1] such as [X,2] around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3979888363 MaxLexEgivenF=3.07768408306 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| wie [X,1] um ||| as how [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.70157465017 MaxLexEgivenF=1.79047821969 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] um ||| how [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.10888881982 MaxLexEgivenF=2.0551885981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] um ||| how [X,1] around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19053527145 MaxLexEgivenF=2.44316113356 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] um ||| like [X,1] for ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.33570598738 MaxLexEgivenF=2.16584630834 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] um ||| such as [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.31634238467 MaxLexEgivenF=2.6897115476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] um ||| such as [X,1] around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3979888363 MaxLexEgivenF=3.07768408306 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] um [X,2] ||| what [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.25327741844 MaxLexEgivenF=1.86361028607 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] um [X,2] ||| how [X,1] for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.10888881982 MaxLexEgivenF=2.0551885981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] um [X,2] ||| like [X,1] [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92839181773 MaxLexEgivenF=1.35696088751 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| wie [X,1] um [X,2] ||| like [X,1] for [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.33570598738 MaxLexEgivenF=2.16584630834 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] um [X,2] ||| such as [X,1] for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.31634238467 MaxLexEgivenF=2.6897115476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] um [X,2] ||| such as [X,1] around [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.3979888363 MaxLexEgivenF=3.07768408306 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] and [X,2] play ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=3.18438048482 MaxLexEgivenF=1.4358783837 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] as [X,2] games ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.91386528547 MaxLexEgivenF=1.43268722958 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] as [X,2] playing ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.91978335987 MaxLexEgivenF=1.66417059642 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] as [X,2] play ||| EgivenFCoherent=1.97158506519 SampleCountF=2.45024910832 CountEF=0.602059991328 MaxLexFgivenE=1.60840557052 MaxLexEgivenF=1.03385269025 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] as well as [X,2] play ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.60840557052 MaxLexEgivenF=3.95024031227 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 3-5
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] how [X,2] games ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.38623327588 MaxLexEgivenF=1.78702601803 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] how [X,2] play ||| EgivenFCoherent=1.97158506519 SampleCountF=2.45024910832 CountEF=0.602059991328 MaxLexFgivenE=1.08077356094 MaxLexEgivenF=1.3881914787 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] how [X,2] touch ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=3.82022973765 MaxLexEgivenF=4.58671110894 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] like [X,2] playing ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.61896851785 MaxLexEgivenF=2.12916709512 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] like [X,2] play ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.3075907285 MaxLexEgivenF=1.49884918894 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] such as [X,2] play ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.28822712579 MaxLexEgivenF=2.0227144282 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] such as [X,2] plays ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=2.38158685866 MaxLexEgivenF=3.84102281673 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] wie [X,2] spielen ||| [X,1] such as the [X,2] games ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.59368684073 MaxLexEgivenF=3.76621280362 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-5
[X] ||| wie [X,1] spielen ||| and [X,1] play ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=3.18438048482 MaxLexEgivenF=1.4358783837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| as [X,1] games ||| EgivenFCoherent=1.97158506519 SampleCountF=2.45024910832 CountEF=0.602059991328 MaxLexFgivenE=1.91386528547 MaxLexEgivenF=1.43268722958 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| as [X,1] playing ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.91978335987 MaxLexEgivenF=1.66417059642 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| as [X,1] play ||| EgivenFCoherent=1.74973631557 SampleCountF=2.45024910832 CountEF=0.778151250384 MaxLexFgivenE=1.60840557052 MaxLexEgivenF=1.03385269025 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| as well as [X,1] play ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.60840557052 MaxLexEgivenF=3.95024031227 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-4
[X] ||| wie [X,1] spielen ||| how [X,1] games ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.38623327588 MaxLexEgivenF=1.78702601803 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| how [X,1] play ||| EgivenFCoherent=1.84664632858 SampleCountF=2.45024910832 CountEF=0.698970004336 MaxLexFgivenE=1.08077356094 MaxLexEgivenF=1.3881914787 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| how [X,1] touch ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=3.82022973765 MaxLexEgivenF=4.58671110894 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| like [X,1] playing ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.61896851785 MaxLexEgivenF=2.12916709512 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| like [X,1] play ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.3075907285 MaxLexEgivenF=1.49884918894 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen ||| such as [X,1] play ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.28822712579 MaxLexEgivenF=2.0227144282 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] spielen ||| such as [X,1] plays ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=2.38158685866 MaxLexEgivenF=3.84102281673 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] spielen ||| such as the [X,1] games ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.59368684073 MaxLexEgivenF=3.76621280362 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4
[X] ||| wie [X,1] spielen ||| playing like [X,1] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.61896851785 MaxLexEgivenF=2.12916709512 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| wie [X,1] spielen [X,2] ||| and [X,1] play [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=3.18438048482 MaxLexEgivenF=1.4358783837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| as [X,1] games [X,2] ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.91386528547 MaxLexEgivenF=1.43268722958 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| as [X,1] games [X,2] play ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.60840557052 MaxLexEgivenF=1.92236487741 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-4
[X] ||| wie [X,1] spielen [X,2] ||| as [X,1] playing [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.91978335987 MaxLexEgivenF=1.66417059642 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| as [X,1] play [X,2] ||| EgivenFCoherent=1.97158506519 SampleCountF=2.45024910832 CountEF=0.602059991328 MaxLexFgivenE=1.60840557052 MaxLexEgivenF=1.03385269025 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| as well as [X,1] play [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.60840557052 MaxLexEgivenF=3.95024031227 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-4
[X] ||| wie [X,1] spielen [X,2] ||| how [X,1] [X,2] play ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.08077356094 MaxLexEgivenF=1.3881914787 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| wie [X,1] spielen [X,2] ||| how [X,1] games [X,2] ||| EgivenFCoherent=2.14767632424 SampleCountF=2.45024910832 CountEF=0.47712125472 MaxLexFgivenE=1.38623327588 MaxLexEgivenF=1.78702601803 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| how [X,1] play [X,2] ||| EgivenFCoherent=1.97158506519 SampleCountF=2.45024910832 CountEF=0.602059991328 MaxLexFgivenE=1.08077356094 MaxLexEgivenF=1.3881914787 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| how [X,1] touch [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=3.82022973765 MaxLexEgivenF=4.58671110894 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| like [X,1] playing [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.61896851785 MaxLexEgivenF=2.12916709512 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| like [X,1] play [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.3075907285 MaxLexEgivenF=1.49884918894 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] spielen [X,2] ||| such as [X,1] play [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.28822712579 MaxLexEgivenF=2.0227144282 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] spielen [X,2] ||| such as the [X,1] games [X,2] ||| EgivenFCoherent=2.44870631991 SampleCountF=2.45024910832 CountEF=0.301029995664 MaxLexFgivenE=1.59368684073 MaxLexEgivenF=3.76621280362 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4
[X] ||| [X,1] wie [X,2] zu ||| [X,1] how to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.18542392399 MaxLexEgivenF=1.19930907644 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-2
[X] ||| wie [X,1] zu ||| as [X,1] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.71305593358 MaxLexEgivenF=0.844970287987 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] zu ||| as [X,1] involve ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41588086467 MaxLexEgivenF=5.25214526638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] zu ||| how to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.18542392399 MaxLexEgivenF=1.19930907644 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| wie [X,1] zu ||| like [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41224109156 MaxLexEgivenF=1.30996678668 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] zu ||| such as [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39287748884 MaxLexEgivenF=1.83383202594 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] zu ||| way [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.28960583869 MaxLexEgivenF=2.37233809039 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] zu [X,2] ||| to [X,2] like [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.41224109156 MaxLexEgivenF=1.30996678668 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 0-2
[X] ||| wie [X,1] zu [X,2] ||| as [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41588086467 MaxLexEgivenF=0.544175042425 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| wie [X,1] zu [X,2] ||| as [X,1] to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.71305593358 MaxLexEgivenF=0.844970287987 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] zu [X,2] ||| as [X,1] involve [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41588086467 MaxLexEgivenF=5.25214526638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] zu [X,2] ||| how to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.18542392399 MaxLexEgivenF=1.19930907644 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| wie [X,1] zu [X,2] ||| such as [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.39287748884 MaxLexEgivenF=1.83383202594 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| wie [X,1] zu [X,2] ||| way [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.28960583869 MaxLexEgivenF=2.37233809039 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] wie [X,2] können ||| [X,1] wie [X,2] können ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.912519374041 MaxLexEgivenF=5.41989199626 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] können ||| [X,1] as [X,2] can ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.51532024801 MaxLexEgivenF=0.959715613262 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] können ||| [X,1] how [X,2] be able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28268057876 MaxLexEgivenF=3.76256546515 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] wie [X,2] können ||| [X,1] like [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21450540598 MaxLexEgivenF=1.42471211196 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] wie [X,2] können ||| [X,1] can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.17380502871 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=1 ||| 3-1
[X] ||| [X,1] wie [X,2] können ||| allows [X,1] like [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.74122480097 MaxLexEgivenF=3.0732265168 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-2
[X] ||| wie [X,1] können ||| wie [X,1] können ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.912519374041 MaxLexEgivenF=5.41989199626 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] können ||| as [X,1] can ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.51532024801 MaxLexEgivenF=0.959715613262 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] können ||| how [X,1] are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.3682085093 MaxLexEgivenF=2.44532696013 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] können ||| how [X,1] be able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28268057876 MaxLexEgivenF=3.76256546515 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] können ||| like [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21450540598 MaxLexEgivenF=1.42471211196 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] können [X,2] ||| wie [X,1] können [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.912519374041 MaxLexEgivenF=5.41989199626 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] können [X,2] ||| as [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.15376800032 MaxLexEgivenF=0.544175042425 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| wie [X,1] können [X,2] ||| as [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51532024801 MaxLexEgivenF=0.959715613262 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| wie [X,1] können [X,2] ||| as [X,1] can [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.51532024801 MaxLexEgivenF=0.959715613262 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] können [X,2] ||| how [X,1] [X,2] can ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.987688238421 MaxLexEgivenF=1.31405440171 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| wie [X,1] können [X,2] ||| how [X,1] are [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.3682085093 MaxLexEgivenF=2.44532696013 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] können [X,2] ||| how [X,1] be able [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.28268057876 MaxLexEgivenF=3.76256546515 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| wie [X,1] können [X,2] ||| like [X,1] can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21450540598 MaxLexEgivenF=1.42471211196 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] können [X,2] ||| such as [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19514180327 MaxLexEgivenF=1.94857735121 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4
[X] ||| [X,1] alt [X,2] man ||| [X,1] old [X,2] you ||| EgivenFCoherent=1.27875360095 SampleCountF=1.59106460703 CountEF=0.47712125472 MaxLexFgivenE=2.83691940604 MaxLexEgivenF=1.26557007334 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| alt [X,1] man ||| old [X,1] you ||| EgivenFCoherent=1.27875360095 SampleCountF=1.59106460703 CountEF=0.47712125472 MaxLexFgivenE=2.83691940604 MaxLexEgivenF=1.26557007334 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] man [X,2] ||| old [X,1] you [X,2] ||| EgivenFCoherent=1.57978359662 SampleCountF=1.59106460703 CountEF=0.301029995664 MaxLexFgivenE=2.83691940604 MaxLexEgivenF=1.26557007334 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] alt [X,2] sein ||| [X,2] be [X,1] old ||| EgivenFCoherent=1.61804809671 SampleCountF=1.92427928606 CountEF=0.47712125472 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=1.01103831681 IsSingletonF=0 IsSingletonFE=0 ||| 3-1 1-3
[X] ||| [X,1] alt [X,2] sein ||| [X,1] old [X,2] his ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.55715884202 MaxLexEgivenF=1.53313970879 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] sein ||| [X,1] old [X,2] a ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=4.62244349919 MaxLexEgivenF=1.7074004837 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] sein ||| [X,1] old [X,2] be ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=1.01103831681 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] sein ||| [X,1] age [X,2] be ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.95161900626 MaxLexEgivenF=1.7425143471 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] sein ||| be [X,1] old [X,2] ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=1.01103831681 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-2
[X] ||| alt [X,1] sein ||| [X,1] be old ||| EgivenFCoherent=1.44195683766 SampleCountF=1.92427928606 CountEF=0.602059991328 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=1.01103831681 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 0-2
[X] ||| alt [X,1] sein ||| old [X,1] his ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.55715884202 MaxLexEgivenF=1.53313970879 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] sein ||| old [X,1] a ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=4.62244349919 MaxLexEgivenF=1.7074004837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] sein ||| old [X,1] be ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=1.01103831681 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] sein ||| age [X,1] be ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.95161900626 MaxLexEgivenF=1.7425143471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] sein [X,2] ||| [X,1] be old [X,2] ||| EgivenFCoherent=1.44195683766 SampleCountF=1.92427928606 CountEF=0.602059991328 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=1.01103831681 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 0-2
[X] ||| alt [X,1] sein [X,2] ||| old [X,1] his [X,2] ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.55715884202 MaxLexEgivenF=1.53313970879 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] sein [X,2] ||| old [X,1] a [X,2] ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=4.62244349919 MaxLexEgivenF=1.7074004837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] sein [X,2] ||| old [X,1] have to be [X,2] be ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=4.51028358975 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 2-4 2-6
[X] ||| alt [X,1] sein [X,2] ||| old [X,1] be [X,2] ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.61359734384 MaxLexEgivenF=1.01103831681 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] sein [X,2] ||| age [X,1] be [X,2] ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.95161900626 MaxLexEgivenF=1.7425143471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] alt [X,2] , ||| [X,2] [X,1] old , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=0.702568018888 IsSingletonF=0 IsSingletonFE=0 ||| 1-2 3-3
[X] ||| [X,1] alt [X,2] , ||| [X,1] [X,2] old , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=0.702568018888 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-3
[X] ||| [X,1] alt [X,2] , ||| [X,1] of the alt [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.477730713983 MaxLexEgivenF=3.25324458778 IsSingletonF=0 IsSingletonFE=1 ||| 1-3 3-5
[X] ||| [X,1] alt [X,2] , ||| [X,1] old [X,2] , ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=0.702568018888 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] , ||| [X,1] old people [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=3.90912406299 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] alt [X,2] , ||| [X,1] ago [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60046995436 MaxLexEgivenF=2.25720336029 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] , ||| [X,1] alt [X,2] , ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.477730713983 MaxLexEgivenF=1.21174548649 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] , ||| [X,1] alt [X,2] which ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.815316079426 MaxLexEgivenF=2.97652172064 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] , ||| [X,1] alto [X,2] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.06769409828 MaxLexEgivenF=2.76535884875 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| alt [X,1] , ||| [X,1] old , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=0.702568018888 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2
[X] ||| alt [X,1] , ||| old [X,1] , ||| EgivenFCoherent=1.15490195999 SampleCountF=2.47856649559 CountEF=1.34242268082 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=0.702568018888 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] , ||| old people [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=3.90912406299 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| alt [X,1] , ||| ago [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60046995436 MaxLexEgivenF=2.25720336029 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] , ||| alt [X,1] , ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.477730713983 MaxLexEgivenF=1.21174548649 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] , ||| alt [X,1] which ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.815316079426 MaxLexEgivenF=2.97652172064 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] , ||| alto [X,1] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.06769409828 MaxLexEgivenF=2.76535884875 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] , [X,2] ||| old [X,1] [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.89960049945 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt [X,1] , [X,2] ||| old [X,1] , [X,2] ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=0.702568018888 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] , [X,2] ||| old [X,1] , and [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=1.64876875476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] , [X,2] ||| old people [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.56201513401 MaxLexEgivenF=3.90912406299 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| alt [X,1] , [X,2] ||| ago [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60046995436 MaxLexEgivenF=2.25720336029 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] , [X,2] ||| alt [X,1] , [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.477730713983 MaxLexEgivenF=1.21174548649 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] , [X,2] ||| alt [X,1] which is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.815316079426 MaxLexEgivenF=4.44685597015 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] , [X,2] ||| alto [X,1] , [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.06769409828 MaxLexEgivenF=2.76535884875 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] alt [X,2] um ||| [X,1] alt [X,2] to ||| EgivenFCoherent=1.95424250944 SampleCountF=1.95904139232 CountEF=0.301029995664 MaxLexFgivenE=1.60499685972 MaxLexEgivenF=1.34751951446 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] um ||| [X,1] alt [X,2] to view ||| EgivenFCoherent=1.95424250944 SampleCountF=1.95904139232 CountEF=0.301029995664 MaxLexFgivenE=1.60499685972 MaxLexEgivenF=4.12996707995 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| alt [X,1] um ||| alt [X,1] to ||| EgivenFCoherent=1.95424250944 SampleCountF=1.95904139232 CountEF=0.301029995664 MaxLexFgivenE=1.60499685972 MaxLexEgivenF=1.34751951446 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] um ||| alt [X,1] to view ||| EgivenFCoherent=1.95424250944 SampleCountF=1.95904139232 CountEF=0.301029995664 MaxLexFgivenE=1.60499685972 MaxLexEgivenF=4.12996707995 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| alt [X,1] um [X,2] ||| alt [X,1] to [X,2] ||| EgivenFCoherent=1.95424250944 SampleCountF=1.95904139232 CountEF=0.301029995664 MaxLexFgivenE=1.60499685972 MaxLexEgivenF=1.34751951446 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] um [X,2] ||| alt [X,1] to view [X,2] ||| EgivenFCoherent=1.95424250944 SampleCountF=1.95904139232 CountEF=0.301029995664 MaxLexFgivenE=1.60499685972 MaxLexEgivenF=4.12996707995 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| [X,1] alt [X,2] spielen ||| [X,1] old [X,2] playing ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=2.37985797987 MaxLexEgivenF=1.61054825446 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| alt [X,1] spielen ||| old [X,1] playing ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=2.37985797987 MaxLexEgivenF=1.61054825446 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] spielen [X,2] ||| old [X,1] playing [X,2] ||| EgivenFCoherent=1.11394335231 SampleCountF=1.14612803568 CountEF=0.301029995664 MaxLexFgivenE=2.37985797987 MaxLexEgivenF=1.61054825446 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] alt [X,2] zu ||| [X,1] old [X,2] to ||| EgivenFCoherent=2.04921802267 SampleCountF=2.35218251811 CountEF=0.47712125472 MaxLexFgivenE=2.17313055358 MaxLexEgivenF=0.791347946027 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] zu ||| [X,1] old [X,2] too ||| EgivenFCoherent=2.04921802267 SampleCountF=2.35218251811 CountEF=0.47712125472 MaxLexFgivenE=2.13804456161 MaxLexEgivenF=2.64804996732 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] zu ||| [X,1] ago [X,2] to ||| EgivenFCoherent=2.35024801833 SampleCountF=2.35218251811 CountEF=0.301029995664 MaxLexFgivenE=3.21158537393 MaxLexEgivenF=2.34598328743 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] alt [X,2] zu ||| [X,1] alt [X,2] to ||| EgivenFCoherent=1.87312676361 SampleCountF=2.35218251811 CountEF=0.602059991328 MaxLexFgivenE=1.08884613355 MaxLexEgivenF=1.30052541363 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| alt [X,1] zu ||| old [X,1] to ||| EgivenFCoherent=1.87312676361 SampleCountF=2.35218251811 CountEF=0.602059991328 MaxLexFgivenE=2.17313055358 MaxLexEgivenF=0.791347946027 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] zu ||| old [X,1] too ||| EgivenFCoherent=2.04921802267 SampleCountF=2.35218251811 CountEF=0.47712125472 MaxLexFgivenE=2.13804456161 MaxLexEgivenF=2.64804996732 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] zu ||| ago [X,1] to ||| EgivenFCoherent=2.35024801833 SampleCountF=2.35218251811 CountEF=0.301029995664 MaxLexFgivenE=3.21158537393 MaxLexEgivenF=2.34598328743 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] zu ||| alt [X,1] to ||| EgivenFCoherent=1.87312676361 SampleCountF=2.35218251811 CountEF=0.602059991328 MaxLexFgivenE=1.08884613355 MaxLexEgivenF=1.30052541363 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] zu [X,2] ||| old [X,1] [X,2] ||| EgivenFCoherent=2.04921802267 SampleCountF=2.35218251811 CountEF=0.47712125472 MaxLexFgivenE=2.87595548467 MaxLexEgivenF=0.490552700464 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| alt [X,1] zu [X,2] ||| old [X,1] to [X,2] ||| EgivenFCoherent=2.04921802267 SampleCountF=2.35218251811 CountEF=0.47712125472 MaxLexFgivenE=2.17313055358 MaxLexEgivenF=0.791347946027 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] zu [X,2] ||| old [X,1] too [X,2] ||| EgivenFCoherent=2.04921802267 SampleCountF=2.35218251811 CountEF=0.47712125472 MaxLexFgivenE=2.13804456161 MaxLexEgivenF=2.64804996732 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| alt [X,1] zu [X,2] ||| ago [X,1] to [X,2] ||| EgivenFCoherent=2.35024801833 SampleCountF=2.35218251811 CountEF=0.301029995664 MaxLexFgivenE=3.21158537393 MaxLexEgivenF=2.34598328743 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| alt [X,1] zu [X,2] ||| alt [X,1] to [X,2] ||| EgivenFCoherent=1.87312676361 SampleCountF=2.35218251811 CountEF=0.602059991328 MaxLexFgivenE=1.08884613355 MaxLexEgivenF=1.30052541363 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] sollte man ||| [X,1] one should ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.2792055146 MaxLexEgivenF=1.92788281582 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 1-2
[X] ||| [X,1] sollte man ||| [X,1] you must ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.80572119369 MaxLexEgivenF=2.95679011536 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| [X,1] sollte man ||| [X,1] you should ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=1.2898391701 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 1-2
[X] ||| [X,1] sollte man ||| [X,1] you shouldn ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30024141319 MaxLexEgivenF=3.02254214637 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| [X,1] sollte man ||| [X,1] we should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.85187918117 MaxLexEgivenF=2.20771284689 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| [X,1] sollte man ||| [X,1] take ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.34467324923 MaxLexEgivenF=2.54077098057 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] sollte man ||| [X,1] should be ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 2-2
[X] ||| [X,1] sollte man ||| [X,1] should i ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.94391092746 MaxLexEgivenF=2.54243971777 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] sollte man ||| [X,1] then you should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=4.04924730458 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 1-3
[X] ||| [X,1] sollte man ||| [X,1] would we ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.36954981607 MaxLexEgivenF=3.61109618801 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] sollte man ||| are [X,1] but one should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.2792055146 MaxLexEgivenF=5.80238840753 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 2-2 2-3 1-4
[X] ||| [X,1] sollte man ||| should be [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 2-1
[X] ||| [X,1] sollte man [X,2] ||| [X,1] [X,2] should be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 1-2 1-3 2-3
[X] ||| [X,1] sollte man [X,2] ||| [X,1] one should [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.2792055146 MaxLexEgivenF=1.92788281582 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 1-2
[X] ||| [X,1] sollte man [X,2] ||| [X,1] you must [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.80572119369 MaxLexEgivenF=2.95679011536 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| [X,1] sollte man [X,2] ||| [X,1] you should [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=1.2898391701 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 1-2
[X] ||| [X,1] sollte man [X,2] ||| [X,1] take [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.34467324923 MaxLexEgivenF=2.54077098057 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1
[X] ||| [X,1] sollte man [X,2] ||| [X,1] should be [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 2-2
[X] ||| [X,1] sollte man [X,2] ||| [X,1] should i [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.94391092746 MaxLexEgivenF=2.54243971777 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] sollte man [X,2] ||| [X,1] then you should [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=4.04924730458 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 1-3
[X] ||| [X,1] sollte man [X,2] ||| [X,1] people [X,2] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8245964142 MaxLexEgivenF=2.84439276262 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-3
[X] ||| [X,1] sollte man [X,2] ||| [X,1] would we [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.36954981607 MaxLexEgivenF=3.61109618801 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] sollte man [X,2] ||| should be [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 2-1
[X] ||| sollte man ||| was so ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.95678074184 MaxLexEgivenF=4.08887515885 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sollte man ||| one should ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.2792055146 MaxLexEgivenF=1.92788281582 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-1
[X] ||| sollte man ||| you must ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.80572119369 MaxLexEgivenF=2.95679011536 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| sollte man ||| you should ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=1.2898391701 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-1
[X] ||| sollte man ||| you shouldn ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30024141319 MaxLexEgivenF=3.02254214637 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| sollte man ||| we should ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.85187918117 MaxLexEgivenF=2.20771284689 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-1
[X] ||| sollte man ||| be more ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.34157536358 MaxLexEgivenF=4.10440391192 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sollte man ||| if you ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=3.35504512151 MaxLexEgivenF=1.87433115955 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| sollte man ||| if you 're ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35504512151 MaxLexEgivenF=4.83460729772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| sollte man ||| take ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.34467324923 MaxLexEgivenF=2.54077098057 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| sollte man ||| can be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.22241973803 MaxLexEgivenF=2.64004922863 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 1-1
[X] ||| sollte man ||| should be ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-1
[X] ||| sollte man ||| should i ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.94391092746 MaxLexEgivenF=2.54243971777 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| sollte man ||| then you should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=4.04924730458 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 0-2
[X] ||| sollte man ||| would one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.7968761495 MaxLexEgivenF=3.33126615693 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sollte man ||| would we ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.36954981607 MaxLexEgivenF=3.61109618801 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sollte man [X,1] ||| [X,1] should be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 0-2 1-2
[X] ||| sollte man [X,1] ||| one should [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.2792055146 MaxLexEgivenF=1.92788281582 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-1
[X] ||| sollte man [X,1] ||| you must [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.80572119369 MaxLexEgivenF=2.95679011536 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| sollte man [X,1] ||| you should [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=1.2898391701 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-1
[X] ||| sollte man [X,1] ||| if you [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.35504512151 MaxLexEgivenF=1.87433115955 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| sollte man [X,1] ||| if you 're [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35504512151 MaxLexEgivenF=4.83460729772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| sollte man [X,1] ||| take [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.34467324923 MaxLexEgivenF=2.54077098057 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| sollte man [X,1] ||| should [X,1] be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| sollte man [X,1] ||| should be [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.85818649132 MaxLexEgivenF=1.54183617189 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 1-1
[X] ||| sollte man [X,1] ||| should i [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.94391092746 MaxLexEgivenF=2.54243971777 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| sollte man [X,1] ||| then you should [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.23892789437 MaxLexEgivenF=4.04924730458 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 0-2
[X] ||| sollte man [X,1] ||| people [X,1] should ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.8245964142 MaxLexEgivenF=2.84439276262 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-2
[X] ||| sollte man [X,1] ||| would we [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.36954981607 MaxLexEgivenF=3.61109618801 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| [X,1] sollte [X,2] sein ||| [X,1] , should be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=1.64593102759 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 3-3
[X] ||| [X,1] sollte [X,2] sein ||| [X,1] should [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35104897837 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-1
[X] ||| [X,1] sollte [X,2] sein ||| [X,1] should [X,2] its ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51530146822 MaxLexEgivenF=1.91851892471 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] sein ||| [X,1] should [X,2] be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=1.03530741358 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] sein ||| [X,1] should be [X,2] ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=1.03530741358 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-2
[X] ||| [X,1] sollte [X,2] sein ||| [X,1] should be [X,2] audience ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=4.67054694471 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| sollte [X,1] sein ||| [X,1] must be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.49899470444 MaxLexEgivenF=2.70225835883 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2
[X] ||| sollte [X,1] sein ||| be [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.49899470444 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| sollte [X,1] sein ||| should [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35104897837 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| sollte [X,1] sein ||| should [X,1] its ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51530146822 MaxLexEgivenF=1.91851892471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] sein ||| should [X,1] be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=1.03530741358 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] sein ||| should be [X,1] ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=1.03530741358 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-1
[X] ||| sollte [X,1] sein ||| should be [X,1] audience ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=4.67054694471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] sein [X,2] ||| be [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.49899470444 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| sollte [X,1] sein [X,2] ||| if [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=5.23849182875 MaxLexEgivenF=1.09931378668 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte [X,1] sein [X,2] ||| should [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35104897837 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| sollte [X,1] sein [X,2] ||| should [X,1] its [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51530146822 MaxLexEgivenF=1.91851892471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] sein [X,2] ||| should [X,1] be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=1.03530741358 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] sein [X,2] ||| should be [X,1] [X,2] ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=1.03530741358 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-1
[X] ||| sollte [X,1] sein [X,2] ||| should be [X,1] audience [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.01560583218 MaxLexEgivenF=4.67054694471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| [X,1] sollte [X,2] , ||| [X,1] was supposed [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.62363757906 MaxLexEgivenF=4.29586993027 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] sollte [X,2] , ||| [X,1] if [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08014084949 MaxLexEgivenF=1.3113291051 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] , ||| [X,1] should [X,2] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=0.726837115655 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] , ||| [X,1] should be [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=1.75385149031 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| sollte [X,1] , ||| was supposed [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.62363757906 MaxLexEgivenF=4.29586993027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] , ||| if [X,1] , ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.08014084949 MaxLexEgivenF=1.3113291051 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] , ||| should [X,1] , ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=0.726837115655 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] , ||| should be [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=1.75385149031 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] , ||| should take [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=3.42319350439 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] , [X,2] ||| was supposed [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.62363757906 MaxLexEgivenF=4.29586993027 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] , [X,2] ||| shall [X,1] of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34909103378 MaxLexEgivenF=3.37032877098 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] , [X,2] ||| if [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41772621493 MaxLexEgivenF=1.09931378668 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] , [X,2] ||| if [X,1] , [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.08014084949 MaxLexEgivenF=1.3113291051 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] , [X,2] ||| should [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30160898779 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] , [X,2] ||| should [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30160898779 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| sollte [X,1] , [X,2] ||| should [X,1] , [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=0.726837115655 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] , [X,2] ||| should be [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=1.75385149031 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] , [X,2] ||| should take [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.964023622348 MaxLexEgivenF=3.42319350439 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| [X,1] sollte [X,2] um ||| [X,1] you should [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09128976809 MaxLexEgivenF=2.50082888905 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] sollte [X,2] um ||| [X,1] should [X,2] in order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.47123516582 MaxLexEgivenF=2.99610923538 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] sollte [X,2] um ||| [X,1] should [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09128976809 MaxLexEgivenF=0.862611143623 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] um ||| [X,1] should [X,2] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.49860393774 MaxLexEgivenF=1.67149656445 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] um ||| [X,1] should [X,2] at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56102530903 MaxLexEgivenF=2.09381423779 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] um ||| [X,1] should [X,2] around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58025038937 MaxLexEgivenF=2.05946909991 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] um ||| should [X,1] [X,2] in order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.47123516582 MaxLexEgivenF=2.99610923538 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3 3-4
[X] ||| sollte [X,1] um ||| you should [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09128976809 MaxLexEgivenF=2.50082888905 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] um ||| should [X,1] in order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.47123516582 MaxLexEgivenF=2.99610923538 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| sollte [X,1] um ||| should [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09128976809 MaxLexEgivenF=0.862611143623 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] um ||| should [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.49860393774 MaxLexEgivenF=1.67149656445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] um ||| should [X,1] at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56102530903 MaxLexEgivenF=2.09381423779 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] um ||| should [X,1] around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58025038937 MaxLexEgivenF=2.05946909991 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] um [X,2] ||| you should [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09128976809 MaxLexEgivenF=2.50082888905 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] um [X,2] ||| should [X,1] for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.49860393774 MaxLexEgivenF=1.67149656445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] um [X,2] ||| should [X,1] at [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56102530903 MaxLexEgivenF=2.09381423779 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] um [X,2] ||| should [X,1] around [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.58025038937 MaxLexEgivenF=2.05946909991 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] sollte [X,2] spielen ||| [X,1] should [X,2] are playing ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.78186646821 MaxLexEgivenF=3.36159353523 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] sollte [X,2] spielen ||| [X,1] should [X,2] games ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.7759483938 MaxLexEgivenF=1.40333398439 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] spielen ||| [X,1] should [X,2] play ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.47048867886 MaxLexEgivenF=1.00449944506 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] spielen ||| [X,1] should be [X,2] of play ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.47048867886 MaxLexEgivenF=2.72834908492 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-5
[X] ||| sollte [X,1] spielen ||| should [X,1] are playing ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.78186646821 MaxLexEgivenF=3.36159353523 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| sollte [X,1] spielen ||| should [X,1] games ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.7759483938 MaxLexEgivenF=1.40333398439 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] spielen ||| should [X,1] play ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.47048867886 MaxLexEgivenF=1.00449944506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] spielen ||| should be [X,1] of play ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.47048867886 MaxLexEgivenF=2.72834908492 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4
[X] ||| sollte [X,1] spielen [X,2] ||| should [X,1] are playing [X,2] ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.78186646821 MaxLexEgivenF=3.36159353523 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| sollte [X,1] spielen [X,2] ||| should [X,1] games [X,2] ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.7759483938 MaxLexEgivenF=1.40333398439 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] spielen [X,2] ||| should [X,1] play [X,2] ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.47048867886 MaxLexEgivenF=1.00449944506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] spielen [X,2] ||| should be [X,1] of play [X,2] ||| EgivenFCoherent=1.54406804435 SampleCountF=1.55630250077 CountEF=0.301029995664 MaxLexFgivenE=1.47048867886 MaxLexEgivenF=2.72834908492 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4
[X] ||| [X,1] sollte [X,2] zu ||| [X,1] be [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.05852791417 MaxLexEgivenF=1.32780962022 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] zu ||| [X,1] should [X,2] to be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=1.84263141745 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] sollte [X,2] zu ||| [X,1] should undertake [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=4.77914515993 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] sollte [X,2] zu ||| should [X,1] [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=0.815617042794 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| sollte [X,1] zu ||| be [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.05852791417 MaxLexEgivenF=1.32780962022 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] zu ||| should [X,1] to be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=1.84263141745 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| sollte [X,1] zu ||| should [X,1] too ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.54005304995 MaxLexEgivenF=2.67231906408 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] zu ||| should undertake [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=4.77914515993 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| sollte [X,1] zu [X,2] ||| be [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.05852791417 MaxLexEgivenF=1.32780962022 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] zu [X,2] ||| should [X,2] [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.27796397301 MaxLexEgivenF=0.514821797231 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sollte [X,1] zu [X,2] ||| should [X,1] to be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=1.84263141745 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| sollte [X,1] zu [X,2] ||| should [X,1] too [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.54005304995 MaxLexEgivenF=2.67231906408 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sollte [X,1] zu [X,2] ||| should give [X,1] [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=4.03878247044 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4
[X] ||| sollte [X,1] zu [X,2] ||| should undertake [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57513904191 MaxLexEgivenF=4.77914515993 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| [X,1] sollte [X,2] können ||| [X,1] should [X,2] may ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65994410773 MaxLexEgivenF=1.80129854607 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] können ||| [X,1] should [X,2] can ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37740335634 MaxLexEgivenF=0.930362368068 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] sollte [X,2] können ||| [X,1] should be able [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.67239569668 MaxLexEgivenF=3.16109555803 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-3
[X] ||| [X,1] sollte [X,2] können ||| [X,1] should be able to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.67239569668 MaxLexEgivenF=4.17340082909 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-3
[X] ||| [X,1] sollte [X,2] können ||| should [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.37740335634 MaxLexEgivenF=0.930362368068 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| sollte [X,1] können ||| should [X,1] may ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.65994410773 MaxLexEgivenF=1.80129854607 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] können ||| should [X,1] can ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37740335634 MaxLexEgivenF=0.930362368068 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] können ||| should be able [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.67239569668 MaxLexEgivenF=3.16109555803 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-2
[X] ||| sollte [X,1] können ||| should be able to [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.67239569668 MaxLexEgivenF=4.17340082909 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-2
[X] ||| sollte [X,1] können [X,2] ||| if [X,1] [X,2] can ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.49352058348 MaxLexEgivenF=1.51485435751 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| sollte [X,1] können [X,2] ||| should [X,1] [X,2] may ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.65994410773 MaxLexEgivenF=1.80129854607 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| sollte [X,1] können [X,2] ||| should [X,1] [X,2] can ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37740335634 MaxLexEgivenF=0.930362368068 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| sollte [X,1] können [X,2] ||| should [X,1] may [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.65994410773 MaxLexEgivenF=1.80129854607 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] können [X,2] ||| should [X,1] can [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.37740335634 MaxLexEgivenF=0.930362368068 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sollte [X,1] können [X,2] ||| should be able [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.67239569668 MaxLexEgivenF=3.16109555803 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-2
[X] ||| sollte [X,1] können [X,2] ||| should be able to [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.67239569668 MaxLexEgivenF=4.17340082909 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-2
[X] ||| sollte [X,1] können [X,2] ||| shouldn [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.43871687516 MaxLexEgivenF=2.66306534434 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| [X,1] man sein ||| [X,1] one be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.73925617454 MaxLexEgivenF=1.93354663493 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] man sein ||| [X,1] you have ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=3.93781685657 MaxLexEgivenF=2.56636767637 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] man sein ||| [X,1] you will be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.69897855431 MaxLexEgivenF=3.40064559506 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3
[X] ||| [X,1] man sein ||| [X,1] you won ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.39423247062 MaxLexEgivenF=4.55638493968 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] man sein ||| it only [X,1] investing your ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.44010070973 MaxLexEgivenF=10.8665896074 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1 1-3 2-4
[X] ||| [X,1] man sein ||| one [X,1] be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.73925617454 MaxLexEgivenF=1.93354663493 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] man sein ||| you [X,1] see his ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.64254005249 MaxLexEgivenF=4.23607443056 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2 2-3
[X] ||| [X,1] man sein ||| i [X,1] my ||| EgivenFCoherent=1.79934054945 SampleCountF=2.10380372096 CountEF=0.47712125472 MaxLexFgivenE=5.51073035683 MaxLexEgivenF=5.66285745167 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2
[X] ||| [X,1] man sein [X,2] ||| [X,1] one [X,2] his ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.68281767272 MaxLexEgivenF=2.45564802691 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] man sein [X,2] ||| [X,1] one be [X,2] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.73925617454 MaxLexEgivenF=1.93354663493 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] man sein [X,2] ||| [X,1] you [X,2] be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.69897855431 MaxLexEgivenF=1.29550298922 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] man sein [X,2] ||| [X,1] you have [X,2] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=3.93781685657 MaxLexEgivenF=2.56636767637 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] man sein [X,2] ||| [X,1] you won [X,2] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.39423247062 MaxLexEgivenF=4.55638493968 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] man sein [X,2] ||| one [X,1] be [X,2] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.73925617454 MaxLexEgivenF=1.93354663493 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] man sein [X,2] ||| you [X,1] see his [X,2] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.64254005249 MaxLexEgivenF=4.23607443056 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2 2-3
[X] ||| [X,1] man sein [X,2] ||| i [X,1] my [X,2] ||| EgivenFCoherent=1.79934054945 SampleCountF=2.10380372096 CountEF=0.47712125472 MaxLexFgivenE=5.51073035683 MaxLexEgivenF=5.66285745167 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2
[X] ||| man sein ||| fact ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.94442509537 MaxLexEgivenF=3.27621758849 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| man sein ||| one be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.73925617454 MaxLexEgivenF=1.93354663493 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein ||| you have ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=3.93781685657 MaxLexEgivenF=2.56636767637 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein ||| you will be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.69897855431 MaxLexEgivenF=3.40064559506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| man sein ||| you won ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.39423247062 MaxLexEgivenF=4.55638493968 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein ||| they differ ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=3.74190249122 MaxLexEgivenF=5.33338831755 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein ||| would be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=3.31823715126 MaxLexEgivenF=3.35780158389 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein ||| possible ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.23246690524 MaxLexEgivenF=2.46511038076 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| man sein [X,1] ||| one [X,1] his ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.68281767272 MaxLexEgivenF=2.45564802691 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| man sein [X,1] ||| one be [X,1] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.73925617454 MaxLexEgivenF=1.93354663493 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein [X,1] ||| you [X,1] be ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=2.69897855431 MaxLexEgivenF=1.29550298922 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| man sein [X,1] ||| you have [X,1] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=3.93781685657 MaxLexEgivenF=2.56636767637 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein [X,1] ||| you won [X,1] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.39423247062 MaxLexEgivenF=4.55638493968 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| man sein [X,1] ||| possible [X,1] ||| EgivenFCoherent=2.10037054512 SampleCountF=2.10380372096 CountEF=0.301029995664 MaxLexFgivenE=4.23246690524 MaxLexEgivenF=2.46511038076 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| [X,1] man [X,2] , ||| [X,1] man [X,2] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.01689176168 MaxLexEgivenF=2.04225024081 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] , ||| [X,1] you [X,2] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.64739634448 MaxLexEgivenF=0.987032691297 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] , ||| you [X,1] [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.64739634448 MaxLexEgivenF=0.987032691297 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| man [X,1] , ||| man [X,1] , ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.01689176168 MaxLexEgivenF=2.04225024081 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| man [X,1] , ||| was [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.7169109973 MaxLexEgivenF=2.38309547307 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] , ||| it [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00287155863 MaxLexEgivenF=1.49834945796 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] , ||| one [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68767396471 MaxLexEgivenF=1.62507633701 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] , ||| you [X,1] , ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.64739634448 MaxLexEgivenF=0.987032691297 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| man [X,1] , [X,2] ||| man [X,1] , [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.01689176168 MaxLexEgivenF=2.04225024081 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| man [X,1] , [X,2] ||| it [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00287155863 MaxLexEgivenF=1.49834945796 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] , [X,2] ||| one [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.02525933015 MaxLexEgivenF=1.41306101859 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| man [X,1] , [X,2] ||| one [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68767396471 MaxLexEgivenF=1.62507633701 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] , [X,2] ||| you [X,1] , [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.64739634448 MaxLexEgivenF=0.987032691297 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| man [X,1] , [X,2] ||| you can [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.98498170992 MaxLexEgivenF=2.38805222685 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| [X,1] man [X,2] um ||| [X,1] to [X,2] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65849004353 MaxLexEgivenF=1.50446411361 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] um ||| [X,1] you can [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77466249022 MaxLexEgivenF=2.73584157324 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] man [X,2] um ||| to [X,1] [X,2] about ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65849004353 MaxLexEgivenF=2.28884243391 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| man [X,1] um ||| to [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65849004353 MaxLexEgivenF=1.50446411361 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] um ||| you can [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77466249022 MaxLexEgivenF=2.73584157324 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| man [X,1] um [X,2] ||| to [X,1] for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65849004353 MaxLexEgivenF=1.50446411361 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] um [X,2] ||| you can [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77466249022 MaxLexEgivenF=2.73584157324 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| [X,1] man [X,2] spielen ||| [X,1] man [X,2] spielen ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=1.50158700619 MaxLexEgivenF=4.3143122178 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] spielen ||| [X,1] you [X,2] play ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] spielen ||| [X,1] you can play [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=2.87772987467 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-3
[X] ||| [X,1] man [X,2] spielen ||| [X,1] you play [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-2
[X] ||| [X,1] man [X,2] spielen ||| [X,1] some [X,2] play ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.02286851639 MaxLexEgivenF=3.0244788508 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] spielen ||| [X,1] they play [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.54013927952 MaxLexEgivenF=2.3639176933 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-2
[X] ||| [X,1] man [X,2] spielen ||| [X,1] play [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.54254913056 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-1
[X] ||| [X,1] man [X,2] spielen ||| you [X,1] [X,2] play ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| [X,1] man [X,2] spielen ||| you [X,1] play [X,2] ||| EgivenFCoherent=1.84716120058 SampleCountF=2.32633586093 CountEF=0.602059991328 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 3-2
[X] ||| man [X,1] spielen ||| man [X,1] spielen ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=1.50158700619 MaxLexEgivenF=4.3143122178 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen ||| the one [X,1] game ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.54225956998 MaxLexEgivenF=4.51906542378 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| man [X,1] spielen ||| one [X,1] play ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.19413902122 MaxLexEgivenF=1.90273866641 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen ||| you [X,1] play ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen ||| you can [X,1] gamble ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.41123685792 MaxLexEgivenF=4.83321145623 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| man [X,1] spielen ||| you can play [X,1] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=2.87772987467 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-2
[X] ||| man [X,1] spielen ||| you play [X,1] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| man [X,1] spielen ||| some [X,1] play ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.02286851639 MaxLexEgivenF=3.0244788508 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen ||| they play [X,1] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.54013927952 MaxLexEgivenF=2.3639176933 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| man [X,1] spielen ||| play [X,1] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.54254913056 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| man [X,1] spielen [X,2] ||| man [X,1] spielen [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=1.50158700619 MaxLexEgivenF=4.3143122178 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen [X,2] ||| the one [X,1] game [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.54225956998 MaxLexEgivenF=4.51906542378 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| man [X,1] spielen [X,2] ||| one [X,1] play [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.19413902122 MaxLexEgivenF=1.90273866641 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen [X,2] ||| you [X,2] play [X,1] ||| EgivenFCoherent=1.84716120058 SampleCountF=2.32633586093 CountEF=0.602059991328 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| man [X,1] spielen [X,2] ||| you [X,1] play [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen [X,2] ||| you play [X,1] [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.15386140099 MaxLexEgivenF=1.2646950207 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| man [X,1] spielen [X,2] ||| we [X,2] start playing [X,1] now ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.07819047713 MaxLexEgivenF=8.73443629979 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 2-5
[X] ||| man [X,1] spielen [X,2] ||| some [X,1] play [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=3.02286851639 MaxLexEgivenF=3.0244788508 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] spielen [X,2] ||| they play [X,1] [X,2] ||| EgivenFCoherent=2.3242824553 SampleCountF=2.32633586093 CountEF=0.301029995664 MaxLexFgivenE=2.54013927952 MaxLexEgivenF=2.3639176933 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| [X,1] man [X,2] zu ||| [X,1] you [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25851176404 MaxLexEgivenF=1.07581261844 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] zu ||| [X,1] we [X,2] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.87146305084 MaxLexEgivenF=1.99368629523 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| man [X,1] zu ||| you [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25851176404 MaxLexEgivenF=1.07581261844 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] zu ||| we [X,1] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.87146305084 MaxLexEgivenF=1.99368629523 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| man [X,1] zu [X,2] ||| you can [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96133669514 MaxLexEgivenF=2.38805222685 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| man [X,1] zu [X,2] ||| we [X,1] to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.87146305084 MaxLexEgivenF=1.99368629523 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] man [X,2] können ||| [X,1] and you [X,2] will ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35301224251 MaxLexEgivenF=3.46262860396 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] man [X,2] können ||| [X,1] you are [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=2.73737107297 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] man [X,2] können ||| [X,1] you can [X,2] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=1.19055794371 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-2
[X] ||| [X,1] man [X,2] können ||| [X,1] be [X,2] may ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96257542681 MaxLexEgivenF=2.53126899697 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] man [X,2] können ||| [X,1] be called [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.44767379089 MaxLexEgivenF=4.24370035097 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| man [X,1] können ||| man [X,1] nnen ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.955584462058 MaxLexEgivenF=5.40497236498 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] können ||| you [X,1] will ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35301224251 MaxLexEgivenF=2.51642786809 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] können ||| you are [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=2.73737107297 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| man [X,1] können ||| you can [X,1] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=1.19055794371 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-1
[X] ||| man [X,1] können ||| be [X,1] may ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96257542681 MaxLexEgivenF=2.53126899697 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] können ||| be called [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.44767379089 MaxLexEgivenF=4.24370035097 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| man [X,1] können [X,2] ||| man [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.43027149567 MaxLexEgivenF=2.24577549322 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| man [X,1] können [X,2] ||| man [X,1] nnen [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.955584462058 MaxLexEgivenF=5.40497236498 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] können [X,2] ||| it [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41625129263 MaxLexEgivenF=1.70187471037 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| man [X,1] können [X,2] ||| you [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=1.19055794371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| man [X,1] können [X,2] ||| you [X,1] will [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35301224251 MaxLexEgivenF=2.51642786809 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] können [X,2] ||| you are [X,1] can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=2.73737107297 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| man [X,1] können [X,2] ||| you have [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=2.98190824721 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-4
[X] ||| man [X,1] können [X,2] ||| you can [X,1] [X,2] ||| EgivenFCoherent=1.47712125472 SampleCountF=2.47856649559 CountEF=1.04139268516 MaxLexFgivenE=2.06077607847 MaxLexEgivenF=1.19055794371 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-1
[X] ||| man [X,1] können [X,2] ||| be [X,1] may [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96257542681 MaxLexEgivenF=2.53126899697 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| man [X,1] können [X,2] ||| be called [X,1] can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.44767379089 MaxLexEgivenF=4.24370035097 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| [X,1] sein , ||| [X,1] , ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.53084305172 MaxLexEgivenF=0.212015318424 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] sein , ||| [X,1] be , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42407428228 MaxLexEgivenF=0.732500934771 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] sein , ||| [X,1] be to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.76165964773 MaxLexEgivenF=1.53279088741 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] sein , ||| [X,1] sein , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.760901738974 MaxLexEgivenF=2.85036808498 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] sein , ||| be [X,1] , ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.42407428228 MaxLexEgivenF=0.732500934771 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2
[X] ||| [X,1] sein , ||| be [X,1] to ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.76165964773 MaxLexEgivenF=1.53279088741 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2
[X] ||| [X,1] sein , ||| being [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.88929880276 MaxLexEgivenF=2.14642756022 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] sein , [X,2] ||| [X,1] , [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.53084305172 MaxLexEgivenF=0.212015318424 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] sein , [X,2] ||| [X,1] be [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.76165964773 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] sein , [X,2] ||| [X,1] be , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42407428228 MaxLexEgivenF=0.732500934771 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] sein , [X,2] ||| [X,1] sein , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.760901738974 MaxLexEgivenF=2.85036808498 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] sein , [X,2] ||| be [X,1] [X,2] ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.76165964773 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] sein , [X,2] ||| be [X,1] , [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.42407428228 MaxLexEgivenF=0.732500934771 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2
[X] ||| [X,1] sein , [X,2] ||| be [X,1] to [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.76165964773 MaxLexEgivenF=1.53279088741 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2
[X] ||| sein , ||| . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.86842841716 MaxLexEgivenF=2.33909787868 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| sein , ||| to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.28682979716 MaxLexEgivenF=1.01230527106 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| sein , ||| be , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42407428228 MaxLexEgivenF=0.732500934771 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sein , ||| be to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.76165964773 MaxLexEgivenF=1.53279088741 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sein , ||| sein , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.760901738974 MaxLexEgivenF=2.85036808498 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sein , ||| unenforceable , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.33484869103 MaxLexEgivenF=3.59544287656 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sein , [X,1] ||| . [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.86842841716 MaxLexEgivenF=2.33909787868 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| sein , [X,1] ||| be [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.76165964773 MaxLexEgivenF=0.520485616348 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| sein , [X,1] ||| be , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42407428228 MaxLexEgivenF=0.732500934771 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| sein , [X,1] ||| sein , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.760901738974 MaxLexEgivenF=2.85036808498 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| [X,1] sein [X,2] um ||| [X,2] be [X,1] at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.02107596897 MaxLexEgivenF=2.09947805691 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] um ||| [X,1] his [X,2] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90221609586 MaxLexEgivenF=2.19926177555 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] um ||| [X,1] his [X,2] because ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83879046189 MaxLexEgivenF=4.49607077193 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] um ||| [X,1] its [X,2] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45835023372 MaxLexEgivenF=2.5603718947 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] um ||| [X,1] sein [X,2] um ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.02823991025 MaxLexEgivenF=5.11749852048 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] um ||| be [X,1] [X,2] around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.04030104931 MaxLexEgivenF=2.06513291903 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| sein [X,1] um ||| to its [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.05103606407 MaxLexEgivenF=1.75148647387 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| sein [X,1] um ||| his [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4949019262 MaxLexEgivenF=1.39037635472 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] um ||| his [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90221609586 MaxLexEgivenF=2.19926177555 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] um ||| his [X,1] because ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.83879046189 MaxLexEgivenF=4.49607077193 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] um ||| its [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45835023372 MaxLexEgivenF=2.5603718947 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] um ||| sein [X,1] um ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.02823991025 MaxLexEgivenF=5.11749852048 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] um [X,2] ||| [X,2] to its [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.05103606407 MaxLexEgivenF=1.75148647387 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 0-2
[X] ||| sein [X,1] um [X,2] ||| its [X,1] for a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45835023372 MaxLexEgivenF=3.77721967794 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] um [X,2] ||| sein [X,1] um [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.02823991025 MaxLexEgivenF=5.11749852048 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] sein [X,2] spielen ||| [X,1] his [X,2] playing ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.18547862632 MaxLexEgivenF=2.16258256233 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| sein [X,1] spielen ||| his [X,1] playing ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.18547862632 MaxLexEgivenF=2.16258256233 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] spielen [X,2] ||| his [X,1] playing [X,2] ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.18547862632 MaxLexEgivenF=2.16258256233 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] sein [X,2] zu ||| [X,1] his [X,2] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.97875120003 MaxLexEgivenF=1.34338225389 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| sein [X,1] zu ||| his [X,1] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.97875120003 MaxLexEgivenF=1.34338225389 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| sein [X,1] zu [X,2] ||| his [X,1] to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.97875120003 MaxLexEgivenF=1.34338225389 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] sein [X,2] können ||| [X,1] his [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78101551445 MaxLexEgivenF=1.45812757916 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] können ||| [X,1] his [X,2] skill ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64780105304 MaxLexEgivenF=4.49238571432 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] können ||| [X,1] its [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33714965232 MaxLexEgivenF=1.81923769831 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] können ||| [X,1] be [X,2] able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.13244635661 MaxLexEgivenF=2.13974500249 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] können ||| [X,1] sein [X,2] koennen ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24675356068 MaxLexEgivenF=7.80415481618 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] sein [X,2] können ||| be [X,1] [X,2] may ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11999476766 MaxLexEgivenF=1.80696236519 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| [X,1] sein [X,2] können ||| be [X,1] [X,2] can ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.83745401628 MaxLexEgivenF=0.936026187185 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 3-3
[X] ||| sein [X,1] können ||| his [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78101551445 MaxLexEgivenF=1.45812757916 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] können ||| his [X,1] skill ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64780105304 MaxLexEgivenF=4.49238571432 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] können ||| its [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33714965232 MaxLexEgivenF=1.81923769831 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] können ||| be [X,1] able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.13244635661 MaxLexEgivenF=2.13974500249 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] können ||| sein [X,1] koennen ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24675356068 MaxLexEgivenF=7.80415481618 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] können [X,2] ||| his [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78101551445 MaxLexEgivenF=1.45812757916 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| sein [X,1] können [X,2] ||| his [X,1] skill [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.64780105304 MaxLexEgivenF=4.49238571432 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| sein [X,1] können [X,2] ||| sein [X,1] koennen [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24675356068 MaxLexEgivenF=7.80415481618 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] , um ||| [X,1] , um ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.639830243732 MaxLexEgivenF=2.69116107235 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] , um ||| [X,1] , of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.10875005309 MaxLexEgivenF=0.908850583633 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] , um ||| [X,1] in order to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=2.82907678454 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 2-2 1-3 2-3
[X] ||| [X,1] , um ||| [X,1] to ||| EgivenFCoherent=0.958607314842 SampleCountF=2.47856649559 CountEF=1.53147891704 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-1
[X] ||| [X,1] , um ||| [X,1] to make ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=2.5814224325 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 2-2
[X] ||| [X,1] , um ||| [X,1] for ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.24465775329 MaxLexEgivenF=1.15667476722 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] , um ||| [X,1] order ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=1.39415007038 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] , um ||| [X,1] order to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=1.74193941677 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2 2-2
[X] ||| [X,1] , um [X,2] ||| [X,1] , um [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.639830243732 MaxLexEgivenF=2.69116107235 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] , um [X,2] ||| [X,1] , of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.10875005309 MaxLexEgivenF=0.908850583633 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] , um [X,2] ||| [X,1] to [X,2] ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-1
[X] ||| [X,1] , um [X,2] ||| [X,1] to make [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=2.5814224325 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 2-2
[X] ||| [X,1] , um [X,2] ||| [X,1] for [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.24465775329 MaxLexEgivenF=1.15667476722 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] , um [X,2] ||| [X,1] order [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=1.39415007038 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] , um [X,2] ||| [X,1] order to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=1.74193941677 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2 2-2
[X] ||| , um ||| so that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.27800106742 MaxLexEgivenF=3.55851340322 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| , um ||| , um ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.639830243732 MaxLexEgivenF=2.69116107235 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| , um ||| , and in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.1067932253 MaxLexEgivenF=2.24535342206 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| , um ||| , of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.10875005309 MaxLexEgivenF=0.908850583633 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| , um ||| , in order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.879703615923 MaxLexEgivenF=2.69330275657 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| , um ||| , in order to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.879703615923 MaxLexEgivenF=3.04109210296 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2 1-3
[X] ||| , um ||| in order to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=2.82907678454 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2 1-2
[X] ||| , um ||| to ||| EgivenFCoherent=0.744727494897 SampleCountF=2.47856649559 CountEF=1.74036268949 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0
[X] ||| , um ||| to make ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=2.5814224325 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 1-1
[X] ||| , um ||| order to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=1.74193941677 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 1-1
[X] ||| , um [X,1] ||| so that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.27800106742 MaxLexEgivenF=3.55851340322 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| , um [X,1] ||| , um [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.639830243732 MaxLexEgivenF=2.69116107235 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| , um [X,1] ||| , of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.10875005309 MaxLexEgivenF=0.908850583633 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| , um [X,1] ||| in order to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=2.82907678454 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2 1-2
[X] ||| , um [X,1] ||| to [X,1] ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=0.347789346392 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0
[X] ||| , um [X,1] ||| to make [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.83734358363 MaxLexEgivenF=2.5814224325 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 1-1
[X] ||| , um [X,1] ||| order to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.21728898137 MaxLexEgivenF=1.74193941677 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 1-1
[X] ||| [X,1] , [X,2] monopoly ||| [X,1] , [X,2] monopoly ||| EgivenFCoherent=1.23044892138 SampleCountF=1.2552725051 CountEF=0.301029995664 MaxLexFgivenE=1.5168984985 MaxLexEgivenF=0.814075309752 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| , [X,1] monopoly ||| , [X,1] monopoly ||| EgivenFCoherent=0.929418925714 SampleCountF=1.2552725051 CountEF=0.47712125472 MaxLexFgivenE=1.5168984985 MaxLexEgivenF=0.814075309752 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] monopoly [X,2] ||| , [X,1] monopoly [X,2] ||| EgivenFCoherent=0.929418925714 SampleCountF=1.2552725051 CountEF=0.47712125472 MaxLexFgivenE=1.5168984985 MaxLexEgivenF=0.814075309752 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] , [X,2] spielen ||| [X,1] [X,2] games ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.52200220935 MaxLexEgivenF=0.888512187157 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] , [X,2] spielen ||| [X,1] [X,2] play ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.2165424944 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 3-2
[X] ||| [X,1] , [X,2] spielen ||| [X,1] , [X,2] to play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=1.71399823731 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] , [X,2] spielen ||| [X,1] , [X,2] games ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.1844168439 MaxLexEgivenF=1.10052750558 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] , [X,2] spielen ||| [X,1] , [X,2] playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19033491831 MaxLexEgivenF=1.33201087242 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] , [X,2] spielen ||| [X,1] , [X,2] playing together ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19033491831 MaxLexEgivenF=4.54308689577 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] , [X,2] spielen ||| [X,1] , [X,2] play ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=0.701692966249 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] , [X,2] spielen ||| [X,1] play [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.2165424944 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=1 ||| 3-1
[X] ||| [X,1] , [X,2] spielen ||| play [X,1] , [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=0.701692966249 IsSingletonF=0 IsSingletonFE=0 ||| 3-0 1-2
[X] ||| , [X,1] spielen ||| , [X,1] to play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=1.71399823731 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| , [X,1] spielen ||| , [X,1] games ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.1844168439 MaxLexEgivenF=1.10052750558 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] spielen ||| , [X,1] games are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.1844168439 MaxLexEgivenF=2.82730368958 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| , [X,1] spielen ||| , [X,1] playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19033491831 MaxLexEgivenF=1.33201087242 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] spielen ||| , [X,1] playing together ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19033491831 MaxLexEgivenF=4.54308689577 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| , [X,1] spielen ||| , [X,1] play ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=0.701692966249 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] spielen [X,2] ||| , [X,1] [X,2] play ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=0.701692966249 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| , [X,1] spielen [X,2] ||| , [X,1] to play [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=1.71399823731 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| , [X,1] spielen [X,2] ||| , [X,1] games [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.1844168439 MaxLexEgivenF=1.10052750558 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] spielen [X,2] ||| , [X,1] playing [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19033491831 MaxLexEgivenF=1.33201087242 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] spielen [X,2] ||| , [X,1] playing together [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.19033491831 MaxLexEgivenF=4.54308689577 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| , [X,1] spielen [X,2] ||| , [X,1] play [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.878957128962 MaxLexEgivenF=0.701692966249 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] , [X,2] zu ||| [X,1] [X,2] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.32119285746 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 3-2
[X] ||| [X,1] , [X,2] zu ||| [X,1] , [X,2] to ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.983607492018 MaxLexEgivenF=0.512810563986 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] , [X,2] zu ||| [X,1] , [X,2] about ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41800661687 MaxLexEgivenF=2.25637883426 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| , [X,1] zu ||| , [X,1] to ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=0.983607492018 MaxLexEgivenF=0.512810563986 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] zu ||| , [X,1] on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68024475293 MaxLexEgivenF=1.80470795099 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] zu ||| , [X,1] about ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41800661687 MaxLexEgivenF=2.25637883426 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] zu ||| , [X,1] too ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.948521500048 MaxLexEgivenF=2.36951258528 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] zu [X,2] ||| , [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68643242311 MaxLexEgivenF=0.212015318424 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| , [X,1] zu [X,2] ||| , [X,1] to [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.983607492018 MaxLexEgivenF=0.512810563986 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] zu [X,2] ||| , [X,1] on [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68024475293 MaxLexEgivenF=1.80470795099 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] zu [X,2] ||| , [X,1] about [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.41800661687 MaxLexEgivenF=2.25637883426 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] zu [X,2] ||| , [X,1] too [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.948521500048 MaxLexEgivenF=2.36951258528 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| , [X,1] zu [X,2] ||| to [X,2] [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.32119285746 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-0
[X] ||| , [X,1] zu [X,2] ||| to [X,2] , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.983607492018 MaxLexEgivenF=0.512810563986 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-2
[X] ||| [X,1] , [X,2] können ||| [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.12345717189 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=1 ||| 3-2
[X] ||| [X,1] , [X,2] können ||| [X,1] , [X,2] , can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=0.839571207684 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] , [X,2] können ||| [X,1] , [X,2] can ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=0.627555889261 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] , [X,2] können ||| [X,1] , [X,2] can be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=1.87234813739 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] , [X,2] können ||| can [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=0.627555889261 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-2
[X] ||| , [X,1] können ||| , [X,1] , can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=0.839571207684 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| , [X,1] können ||| , [X,1] can ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=0.627555889261 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] können ||| , [X,1] can be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=1.87234813739 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| , [X,1] können [X,2] ||| , [X,1] [X,2] can ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=0.627555889261 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| , [X,1] können [X,2] ||| , [X,1] can [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=0.627555889261 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| , [X,1] können [X,2] ||| , [X,1] can be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.785871806444 MaxLexEgivenF=1.87234813739 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| [X,1] um [X,2] spielen ||| [X,1] um [X,2] spielen ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.12452548824 MaxLexEgivenF=4.96322304934 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] um [X,2] spielen ||| [X,1] to make [X,2] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0062232747 MaxLexEgivenF=3.07110008033 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] um [X,2] spielen ||| [X,1] for [X,2] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41353744436 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] um [X,2] spielen ||| [X,1] at [X,2] games ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.78141853059 MaxLexEgivenF=2.46750462772 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] um [X,2] spielen ||| [X,1] play to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0062232747 MaxLexEgivenF=0.837466994217 IsSingletonF=0 IsSingletonFE=1 ||| 3-1 1-2
[X] ||| [X,1] um [X,2] spielen ||| [X,1] play for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41353744436 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=1 ||| 3-1 1-2
[X] ||| [X,1] um [X,2] spielen ||| [X,1] play around [X,2] undisturbed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.49518389598 MaxLexEgivenF=6.02355222424 IsSingletonF=0 IsSingletonFE=1 ||| 3-1 1-2 3-4
[X] ||| um [X,1] spielen ||| um [X,1] spielen ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.12452548824 MaxLexEgivenF=4.96322304934 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen ||| in order to play [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.38616867243 MaxLexEgivenF=3.31875443236 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-3
[X] ||| um [X,1] spielen ||| to [X,1] playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.31760106405 MaxLexEgivenF=1.46778490039 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen ||| to make [X,1] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0062232747 MaxLexEgivenF=3.07110008033 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| um [X,1] spielen ||| for [X,1] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41353744436 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen ||| at [X,1] games ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.78141853059 MaxLexEgivenF=2.46750462772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen ||| play to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0062232747 MaxLexEgivenF=0.837466994217 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| um [X,1] spielen ||| play for [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.41353744436 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 0-1
[X] ||| um [X,1] spielen ||| play around [X,1] undisturbed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.49518389598 MaxLexEgivenF=6.02355222424 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1 2-3
[X] ||| um [X,1] spielen [X,2] ||| [X,2] play for [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.41353744436 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 0-2
[X] ||| um [X,1] spielen [X,2] ||| um [X,1] spielen [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.12452548824 MaxLexEgivenF=4.96322304934 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen [X,2] ||| in order to play [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.38616867243 MaxLexEgivenF=3.31875443236 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-3
[X] ||| um [X,1] spielen [X,2] ||| to [X,1] playing [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.31760106405 MaxLexEgivenF=1.46778490039 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen [X,2] ||| to make [X,1] play [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0062232747 MaxLexEgivenF=3.07110008033 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| um [X,1] spielen [X,2] ||| for [X,1] play [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41353744436 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen [X,2] ||| at [X,1] games [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.78141853059 MaxLexEgivenF=2.46750462772 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] spielen [X,2] ||| play to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0062232747 MaxLexEgivenF=0.837466994217 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| um [X,1] spielen [X,2] ||| play for [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41353744436 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| um [X,1] spielen [X,2] ||| play around [X,1] undisturbed [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.49518389598 MaxLexEgivenF=6.02355222424 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1 2-3
[X] ||| [X,1] um [X,2] zu ||| [X,1] at [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11087363776 MaxLexEgivenF=1.87978768612 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] um [X,2] zu ||| to [X,2] [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11087363776 MaxLexEgivenF=0.601590491125 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| um [X,1] zu ||| at [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11087363776 MaxLexEgivenF=1.87978768612 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] zu [X,2] ||| in order to [X,2] [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.49081903549 MaxLexEgivenF=2.78208268371 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 0-2 2-2
[X] ||| um [X,1] zu [X,2] ||| to [X,2] [X,1] ||| EgivenFCoherent=1.39794000867 SampleCountF=2.47856649559 CountEF=1.11394335231 MaxLexFgivenE=2.11087363776 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-0
[X] ||| um [X,1] zu [X,2] ||| to [X,2] in an [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11087363776 MaxLexEgivenF=4.13833894588 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-2
[X] ||| um [X,1] zu [X,2] ||| to [X,2] to [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.11087363776 MaxLexEgivenF=0.601590491125 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 0-2
[X] ||| um [X,1] zu [X,2] ||| for [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.19809119172 MaxLexEgivenF=1.15667476722 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| um [X,1] zu [X,2] ||| at [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11087363776 MaxLexEgivenF=1.87978768612 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] zu [X,2] ||| order to [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.49081903549 MaxLexEgivenF=1.69494531594 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-1
[X] ||| [X,1] um [X,2] können ||| [X,1] over [X,2] enable ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.94344919211 MaxLexEgivenF=5.62396715981 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| um [X,1] können ||| um [X,1] können ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.97251795842 MaxLexEgivenF=5.37078995429 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] können ||| over [X,1] enable ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.94344919211 MaxLexEgivenF=5.62396715981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] können [X,2] ||| um [X,1] können [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.97251795842 MaxLexEgivenF=5.37078995429 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| um [X,1] können [X,2] ||| in order to [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.29308334992 MaxLexEgivenF=3.24461735537 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-5
[X] ||| um [X,1] können [X,2] ||| over [X,1] enable [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.94344919211 MaxLexEgivenF=5.62396715981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] spielen zu ||| [X,1] to play ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| [X,1] spielen zu ||| [X,1] spielen zu ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.05828821591 MaxLexEgivenF=5.01769692189 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu ||| [X,1] games to ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.79553226347 MaxLexEgivenF=1.18930743272 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] spielen zu ||| [X,1] play to ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] spielen zu ||| [X,1] play on ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.18670980944 MaxLexEgivenF=2.08237028039 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu ||| [X,1] game to ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.8381930973 MaxLexEgivenF=2.06213581468 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu ||| [X,1] acquire at ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=4.24515373215 MaxLexEgivenF=5.3237705355 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu ||| [X,1] gaming at ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.91386524655 MaxLexEgivenF=3.77354218245 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu ||| to playing [X,1] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.80145033788 MaxLexEgivenF=1.42079079956 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-1 2-1
[X] ||| [X,1] spielen zu ||| to play [X,1] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-1
[X] ||| [X,1] spielen zu [X,2] ||| [X,1] to play [X,2] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2
[X] ||| [X,1] spielen zu [X,2] ||| [X,1] spielen zu [X,2] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.05828821591 MaxLexEgivenF=5.01769692189 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu [X,2] ||| [X,1] games to [X,2] ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.79553226347 MaxLexEgivenF=1.18930743272 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] spielen zu [X,2] ||| [X,1] play to [X,2] ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] spielen zu [X,2] ||| [X,1] play on [X,2] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.18670980944 MaxLexEgivenF=2.08237028039 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu [X,2] ||| [X,1] acquire at [X,2] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=4.24515373215 MaxLexEgivenF=5.3237705355 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu [X,2] ||| [X,1] gaming at [X,2] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.91386524655 MaxLexEgivenF=3.77354218245 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] spielen zu [X,2] ||| to [X,2] [X,1] play ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-3
[X] ||| spielen zu ||| to playing ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.80145033788 MaxLexEgivenF=1.42079079956 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 1-1
[X] ||| spielen zu ||| to play ||| EgivenFCoherent=1.56110138365 SampleCountF=2.26245108973 CountEF=0.778151250384 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-1
[X] ||| spielen zu ||| spielen zu ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.05828821591 MaxLexEgivenF=5.01769692189 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu ||| games to ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.79553226347 MaxLexEgivenF=1.18930743272 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| spielen zu ||| playing ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.37635022168 MaxLexEgivenF=1.119995554 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0
[X] ||| spielen zu ||| play to ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| spielen zu ||| play on ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.18670980944 MaxLexEgivenF=2.08237028039 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu ||| game to ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.8381930973 MaxLexEgivenF=2.06213581468 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu ||| acquire at ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=4.24515373215 MaxLexEgivenF=5.3237705355 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu ||| gaming at ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.91386524655 MaxLexEgivenF=3.77354218245 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu [X,1] ||| [X,1] to play ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 0-2
[X] ||| spielen zu [X,1] ||| to play [X,1] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| spielen zu [X,1] ||| spielen zu [X,1] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=1.05828821591 MaxLexEgivenF=5.01769692189 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu [X,1] ||| games to [X,1] ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.79553226347 MaxLexEgivenF=1.18930743272 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| spielen zu [X,1] ||| play to [X,1] ||| EgivenFCoherent=1.95904139232 SampleCountF=2.26245108973 CountEF=0.47712125472 MaxLexFgivenE=1.49007254853 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| spielen zu [X,1] ||| play on [X,1] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.18670980944 MaxLexEgivenF=2.08237028039 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu [X,1] ||| acquire at [X,1] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=4.24515373215 MaxLexEgivenF=5.3237705355 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| spielen zu [X,1] ||| gaming at [X,1] ||| EgivenFCoherent=2.26007138799 SampleCountF=2.26245108973 CountEF=0.301029995664 MaxLexFgivenE=2.91386524655 MaxLexEgivenF=3.77354218245 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| [X,1] spielen [X,2] können ||| [X,2] be able [X,1] play ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.58732920329 MaxLexEgivenF=3.3537292821 IsSingletonF=0 IsSingletonFE=1 ||| 3-1 3-2 1-4
[X] ||| [X,1] spielen [X,2] können ||| [X,1] can play [X,2] ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 3-1 1-2
[X] ||| [X,1] spielen [X,2] können ||| [X,1] games [X,2] can ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.5977965779 MaxLexEgivenF=1.30405275799 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] spielen [X,2] können ||| [X,1] play [X,2] can ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] spielen [X,2] können ||| can [X,2] play [X,1] ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-2
[X] ||| [X,1] spielen [X,2] können ||| play [X,1] [X,2] can ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| spielen [X,1] können ||| can [X,1] play ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-2
[X] ||| spielen [X,1] können ||| can play [X,1] ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| spielen [X,1] können ||| games [X,1] can ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.5977965779 MaxLexEgivenF=1.30405275799 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| spielen [X,1] können ||| play [X,1] can ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| spielen [X,1] können ||| game [X,1] play ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=2.6444225631 MaxLexEgivenF=2.25101821694 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| spielen [X,1] können ||| able [X,1] play ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.58732920329 MaxLexEgivenF=2.10893703397 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-2
[X] ||| spielen [X,1] können [X,2] ||| games [X,1] [X,2] are ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=2.97831684878 MaxLexEgivenF=2.43532531642 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| spielen [X,1] können [X,2] ||| games [X,1] , [X,2] can ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.5977965779 MaxLexEgivenF=1.914676372 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4
[X] ||| spielen [X,1] können [X,2] ||| games [X,1] can [X,2] ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.5977965779 MaxLexEgivenF=1.30405275799 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| spielen [X,1] können [X,2] ||| playing [X,1] [X,2] can ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.6037146523 MaxLexEgivenF=1.53553612484 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| spielen [X,1] können [X,2] ||| play [X,1] [X,2] can ||| EgivenFCoherent=1.8260748027 SampleCountF=2.42975228 CountEF=0.698970004336 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-3
[X] ||| spielen [X,1] können [X,2] ||| play [X,1] can [X,2] ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=1.29233686295 MaxLexEgivenF=0.905218218663 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| spielen [X,1] können [X,2] ||| game [X,1] play [X,2] ||| EgivenFCoherent=2.42813479403 SampleCountF=2.42975228 CountEF=0.301029995664 MaxLexFgivenE=2.6444225631 MaxLexEgivenF=2.25101821694 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] zu können ||| [X,1] to be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.37506185082 MaxLexEgivenF=1.54558749369 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] zu können ||| [X,1] to be able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] zu können ||| [X,1] to bring ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.14074191169 MaxLexEgivenF=3.92252925084 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] zu können ||| to [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.44306936516 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-0
[X] ||| [X,1] zu können ||| to be able [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1 2-2
[X] ||| [X,1] zu können ||| to be able to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.4656421254 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1 2-2 1-3
[X] ||| [X,1] zu können ||| to your [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.44306936516 MaxLexEgivenF=3.6604173212 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1
[X] ||| [X,1] zu können ||| with [X,1] taking ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.03788745112 MaxLexEgivenF=5.26420782994 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2 2-2
[X] ||| [X,1] zu können ||| you can [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0998121571 MaxLexEgivenF=1.85339491092 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 2-1
[X] ||| [X,1] zu können ||| be able to [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 2-1 1-2
[X] ||| [X,1] zu können ||| can [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0998121571 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=1 ||| 2-0
[X] ||| [X,1] zu können ||| able to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=1.92005463171 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-1
[X] ||| [X,1] zu können ||| eligible to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25771250026 MaxLexEgivenF=3.8231446187 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-1
[X] ||| [X,1] zu können [X,2] ||| [X,1] to be able [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 2-3
[X] ||| [X,1] zu können [X,2] ||| to [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.44306936516 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-0
[X] ||| [X,1] zu können [X,2] ||| to be able [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-1 2-2
[X] ||| [X,1] zu können [X,2] ||| be able to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 2-1 1-2
[X] ||| [X,1] zu können [X,2] ||| can [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0998121571 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=1 ||| 2-0
[X] ||| zu können ||| to ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.44306936516 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0
[X] ||| zu können ||| to be ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.37506185082 MaxLexEgivenF=1.54558749369 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| zu können ||| to be able ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 1-2
[X] ||| zu können ||| to be able to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.4656421254 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 0-3
[X] ||| zu können ||| to your ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.44306936516 MaxLexEgivenF=3.6604173212 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| zu können ||| to scan ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80869018825 MaxLexEgivenF=4.32046925951 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| zu können ||| to bring ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.14074191169 MaxLexEgivenF=3.92252925084 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| zu können ||| to improve ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63003409875 MaxLexEgivenF=2.97213657416 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| zu können ||| be able to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 1-1 0-2
[X] ||| zu können ||| can be found ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0998121571 MaxLexEgivenF=4.78737806725 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2
[X] ||| zu können ||| able to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=1.92005463171 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 0-1
[X] ||| zu können ||| eligible to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25771250026 MaxLexEgivenF=3.8231446187 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| zu können [X,1] ||| to be able [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.69197956635 MaxLexEgivenF=3.16484687983 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| wie alt [X,1] sein ||| what age [X,1] be ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=4.346835314 MaxLexEgivenF=3.60612463318 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| wie alt [X,1] sein ||| how old [X,1] be ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=3.00165981205 MaxLexEgivenF=1.90955214768 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| wie alt [X,1] sein [X,2] ||| what age [X,1] be [X,2] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=4.346835314 MaxLexEgivenF=3.60612463318 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| wie alt [X,1] sein [X,2] ||| how old [X,1] have to be [X,2] be ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=3.00165981205 MaxLexEgivenF=5.40879742063 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4 3-5 3-7
[X] ||| wie alt [X,1] sein [X,2] ||| how old [X,1] be [X,2] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=3.00165981205 MaxLexEgivenF=1.90955214768 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| [X,1] wie alt [X,2] , ||| [X,1] , such as alt [X,2] , ||| EgivenFCoherent=1.63346845558 SampleCountF=1.64345267649 CountEF=0.301029995664 MaxLexFgivenE=1.07324674703 MaxLexEgivenF=2.95679758529 IsSingletonF=1 IsSingletonFE=1 ||| 1-2 1-3 2-4 4-6
[X] ||| wie alt [X,1] , ||| how old [X,1] , ||| EgivenFCoherent=1.33243845992 SampleCountF=1.64345267649 CountEF=0.47712125472 MaxLexFgivenE=1.95007760221 MaxLexEgivenF=1.60108184976 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| wie alt [X,1] , ||| such as alt [X,1] , ||| EgivenFCoherent=1.63346845558 SampleCountF=1.64345267649 CountEF=0.301029995664 MaxLexFgivenE=1.07324674703 MaxLexEgivenF=2.74478226687 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 3-4
[X] ||| wie alt [X,1] , [X,2] ||| how old [X,1] , [X,2] ||| EgivenFCoherent=1.33243845992 SampleCountF=1.64345267649 CountEF=0.47712125472 MaxLexFgivenE=1.95007760221 MaxLexEgivenF=1.60108184976 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1 3-3
[X] ||| wie alt [X,1] , [X,2] ||| such as alt [X,1] [X,2] ||| EgivenFCoherent=1.63346845558 SampleCountF=1.64345267649 CountEF=0.301029995664 MaxLexFgivenE=1.41083211248 MaxLexEgivenF=2.53276694844 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| wie alt [X,1] , [X,2] ||| such as alt [X,1] , [X,2] ||| EgivenFCoherent=1.63346845558 SampleCountF=1.64345267649 CountEF=0.301029995664 MaxLexFgivenE=1.07324674703 MaxLexEgivenF=2.74478226687 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 3-4
[X] ||| wie [X,1] sollte man ||| [X,1] how would one ||| EgivenFCoherent=1.68124123738 SampleCountF=1.69019608003 CountEF=0.301029995664 MaxLexFgivenE=4.18493861771 MaxLexEgivenF=4.22977998781 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2 3-3
[X] ||| wie [X,1] sollte man ||| how [X,1] does it ||| EgivenFCoherent=1.68124123738 SampleCountF=1.69019608003 CountEF=0.301029995664 MaxLexFgivenE=4.85350016373 MaxLexEgivenF=5.22678815184 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-3
[X] ||| wie [X,1] sollte man ||| how [X,1] should we ||| EgivenFCoherent=1.68124123738 SampleCountF=1.69019608003 CountEF=0.301029995664 MaxLexFgivenE=2.67565889386 MaxLexEgivenF=3.10622667777 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] sollte man ||| how [X,1] should i ||| EgivenFCoherent=1.38021124171 SampleCountF=1.69019608003 CountEF=0.47712125472 MaxLexFgivenE=2.67565889386 MaxLexEgivenF=3.44095354864 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] sollte man [X,2] ||| [X,1] how would one [X,2] ||| EgivenFCoherent=1.68124123738 SampleCountF=1.69019608003 CountEF=0.301029995664 MaxLexFgivenE=4.18493861771 MaxLexEgivenF=4.22977998781 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2 3-3
[X] ||| wie [X,1] sollte man [X,2] ||| how [X,1] does it [X,2] ||| EgivenFCoherent=1.68124123738 SampleCountF=1.69019608003 CountEF=0.301029995664 MaxLexFgivenE=4.85350016373 MaxLexEgivenF=5.22678815184 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 3-3
[X] ||| wie [X,1] sollte man [X,2] ||| how [X,1] should we [X,2] ||| EgivenFCoherent=1.68124123738 SampleCountF=1.69019608003 CountEF=0.301029995664 MaxLexFgivenE=2.67565889386 MaxLexEgivenF=3.10622667777 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] sollte man [X,2] ||| how [X,1] should i [X,2] ||| EgivenFCoherent=1.38021124171 SampleCountF=1.69019608003 CountEF=0.47712125472 MaxLexFgivenE=2.67565889386 MaxLexEgivenF=3.44095354864 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] sollte [X,2] sein ||| as [X,1] should be [X,2] ||| EgivenFCoherent=1.43136376416 SampleCountF=1.44715803134 CountEF=0.301029995664 MaxLexFgivenE=2.93130030997 MaxLexEgivenF=1.579482456 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 2-3 4-3
[X] ||| wie [X,1] sollte [X,2] , ||| like [X,1] should [X,2] , ||| EgivenFCoherent=1.86923171973 SampleCountF=1.87506126339 CountEF=0.301029995664 MaxLexFgivenE=1.57890325811 MaxLexEgivenF=1.73600865677 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] sollte [X,2] , ||| such as [X,1] should [X,2] , ||| EgivenFCoherent=1.86923171973 SampleCountF=1.87506126339 CountEF=0.301029995664 MaxLexFgivenE=1.5595396554 MaxLexEgivenF=2.25987389603 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| [X,1] wie [X,2] man sein ||| [X,1] how do i [X,2] my ||| EgivenFCoherent=1.23044892138 SampleCountF=1.2552725051 CountEF=0.301029995664 MaxLexFgivenE=4.69674531328 MaxLexEgivenF=8.77990801044 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 1-2 3-3 4-5
[X] ||| wie [X,1] man sein ||| how do i [X,1] my ||| EgivenFCoherent=0.929418925714 SampleCountF=1.2552725051 CountEF=0.47712125472 MaxLexFgivenE=4.69674531328 MaxLexEgivenF=8.77990801044 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-2 3-4
[X] ||| wie [X,1] man sein [X,2] ||| how do i [X,1] my [X,2] ||| EgivenFCoherent=0.929418925714 SampleCountF=1.2552725051 CountEF=0.47712125472 MaxLexFgivenE=4.69674531328 MaxLexEgivenF=8.77990801044 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-2 3-4
[X] ||| wie [X,1] man [X,2] , ||| as [X,1] man [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.93258623946 MaxLexEgivenF=2.58642528323 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] man [X,2] , ||| as [X,1] one to [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60336844249 MaxLexEgivenF=3.18155665049 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 4-5
[X] ||| wie [X,1] man [X,2] , ||| as [X,1] you [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56309082226 MaxLexEgivenF=1.53120773372 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] man [X,2] , ||| how [X,1] one [X,2] , ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.07573643291 MaxLexEgivenF=2.52359016788 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] man [X,2] , ||| how [X,1] you [X,2] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.33660618755 MaxLexEgivenF=2.97550224139 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] man [X,2] , ||| how do you [X,1] [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.03545881268 MaxLexEgivenF=4.10408325007 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-2 4-5
[X] ||| wie [X,1] man [X,2] , ||| like [X,1] man [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.63177139744 MaxLexEgivenF=3.05142178193 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] man [X,2] können ||| how [X,1] be called [X,2] can ||| EgivenFCoherent=1.14612803568 SampleCountF=1.17609125906 CountEF=0.301029995664 MaxLexFgivenE=2.49750707795 MaxLexEgivenF=5.14221418184 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 2-3 4-5
[X] ||| [X,1] wie [X,2] sein , ||| [X,1] be like [X,2] , ||| EgivenFCoherent=1.80617997398 SampleCountF=2.40993312333 CountEF=0.698970004336 MaxLexFgivenE=2.03895391805 MaxLexEgivenF=1.74167247589 IsSingletonF=0 IsSingletonFE=0 ||| 3-1 1-2 4-4
[X] ||| wie [X,1] sein , ||| how [X,1] have to be to be ||| EgivenFCoherent=2.40823996531 SampleCountF=2.40993312333 CountEF=0.301029995664 MaxLexFgivenE=2.14972211593 MaxLexEgivenF=5.93054999122 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 2-4 3-5 2-6
[X] ||| wie [X,1] sein , ||| how [X,1] be ||| EgivenFCoherent=2.40823996531 SampleCountF=2.40993312333 CountEF=0.301029995664 MaxLexFgivenE=2.14972211593 MaxLexEgivenF=1.41899944722 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-0 2-2
[X] ||| wie [X,1] sein , ||| be like [X,1] , ||| EgivenFCoherent=1.80617997398 SampleCountF=2.40993312333 CountEF=0.698970004336 MaxLexFgivenE=2.03895391805 MaxLexEgivenF=1.74167247589 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 0-1 3-3
[X] ||| wie [X,1] sein , [X,2] ||| as [X,1] in [X,2] ||| EgivenFCoherent=2.40823996531 SampleCountF=2.40993312333 CountEF=0.301029995664 MaxLexFgivenE=4.78412289495 MaxLexEgivenF=1.96497613303 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| wie [X,1] sein , [X,2] ||| how [X,1] [X,2] should ||| EgivenFCoherent=2.40823996531 SampleCountF=2.40993312333 CountEF=0.301029995664 MaxLexFgivenE=3.48516526212 MaxLexEgivenF=3.72563888824 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| wie [X,1] sein , [X,2] ||| how [X,1] be [X,2] ||| EgivenFCoherent=1.70926996098 SampleCountF=2.40993312333 CountEF=0.778151250384 MaxLexFgivenE=2.14972211593 MaxLexEgivenF=1.41899944722 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| wie [X,1] sein , [X,2] ||| be like [X,1] , [X,2] ||| EgivenFCoherent=1.80617997398 SampleCountF=2.40993312333 CountEF=0.698970004336 MaxLexFgivenE=2.03895391805 MaxLexEgivenF=1.74167247589 IsSingletonF=0 IsSingletonFE=0 ||| 2-0 0-1 3-3
[X] ||| [X,1] wie [X,2] , um ||| [X,1] wie [X,2] , um ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.03341586686 MaxLexEgivenF=5.21940886825 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] wie [X,2] , um ||| [X,1] as [X,2] , to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41545269598 MaxLexEgivenF=1.10397970724 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] wie [X,2] , um ||| [X,1] as [X,2] to ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.75303806142 MaxLexEgivenF=0.891964388816 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-3
[X] ||| [X,1] wie [X,2] , um ||| [X,1] as [X,2] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.16035223107 MaxLexEgivenF=1.70084980965 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 4-3
[X] ||| [X,1] wie [X,2] , um ||| [X,1] how [X,2] , to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.88782068639 MaxLexEgivenF=1.45831849569 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] wie [X,2] , um ||| [X,1] how [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22540605184 MaxLexEgivenF=1.24630317726 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-3
[X] ||| [X,1] wie [X,2] , um ||| [X,1] like [X,2] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.4522232194 MaxLexEgivenF=1.35696088751 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-3
[X] ||| [X,1] wie [X,2] , um ||| as [X,1] how [X,2] in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.83244105894 MaxLexEgivenF=2.52982624107 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2 4-4
[X] ||| wie [X,1] , um ||| wie [X,1] , um ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.03341586686 MaxLexEgivenF=5.21940886825 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] , um ||| as [X,1] , to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.41545269598 MaxLexEgivenF=1.10397970724 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] , um ||| as [X,1] to ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=2.75303806142 MaxLexEgivenF=0.891964388816 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| wie [X,1] , um ||| as [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.16035223107 MaxLexEgivenF=1.70084980965 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| wie [X,1] , um ||| as [X,1] order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.13298345915 MaxLexEgivenF=1.9383251128 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| wie [X,1] , um ||| what [X,1] like to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4522232194 MaxLexEgivenF=3.22057117358 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 2-3 3-3
[X] ||| wie [X,1] , um ||| how [X,1] , to ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.88782068639 MaxLexEgivenF=1.45831849569 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] , um ||| how [X,1] to ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.22540605184 MaxLexEgivenF=1.24630317726 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| wie [X,1] , um ||| how [X,1] around ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.71436667312 MaxLexEgivenF=2.44316113356 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| wie [X,1] , um ||| like [X,1] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.4522232194 MaxLexEgivenF=1.35696088751 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| wie [X,1] , um [X,2] ||| wie [X,1] , um [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.03341586686 MaxLexEgivenF=5.21940886825 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] , um [X,2] ||| as [X,1] , to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41545269598 MaxLexEgivenF=1.10397970724 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] , um [X,2] ||| as [X,1] to [X,2] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=2.75303806142 MaxLexEgivenF=0.891964388816 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| wie [X,1] , um [X,2] ||| as [X,1] for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.16035223107 MaxLexEgivenF=1.70084980965 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| wie [X,1] , um [X,2] ||| how [X,1] , to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.88782068639 MaxLexEgivenF=1.45831849569 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] , um [X,2] ||| how [X,1] to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.22540605184 MaxLexEgivenF=1.24630317726 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| wie [X,1] , um [X,2] ||| how [X,1] around [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.71436667312 MaxLexEgivenF=2.44316113356 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| wie [X,1] , [X,2] spielen ||| as [X,1] , [X,2] play ||| EgivenFCoherent=1.23468597432 SampleCountF=2.0170333393 CountEF=0.845098040014 MaxLexFgivenE=1.79465160675 MaxLexEgivenF=1.24586800867 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] spielen ||| like [X,1] , [X,2] playing ||| EgivenFCoherent=1.53571596999 SampleCountF=2.0170333393 CountEF=0.602059991328 MaxLexFgivenE=1.80521455407 MaxLexEgivenF=2.34118241354 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] spielen ||| like [X,1] , [X,2] play ||| EgivenFCoherent=1.53571596999 SampleCountF=2.0170333393 CountEF=0.602059991328 MaxLexFgivenE=1.49383676473 MaxLexEgivenF=1.71086450737 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] spielen ||| such as [X,1] , [X,2] play ||| EgivenFCoherent=2.01283722471 SampleCountF=2.0170333393 CountEF=0.301029995664 MaxLexFgivenE=1.47447316201 MaxLexEgivenF=2.23472974662 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| wie [X,1] , [X,2] spielen ||| such as [X,1] , [X,2] plays ||| EgivenFCoherent=1.71180722904 SampleCountF=2.0170333393 CountEF=0.47712125472 MaxLexFgivenE=2.56783289488 MaxLexEgivenF=4.05303813515 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 4-5
[X] ||| wie [X,1] , [X,2] zu ||| as [X,1] , [X,2] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.8993019698 MaxLexEgivenF=1.05698560641 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] zu ||| like [X,1] [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.93607249322 MaxLexEgivenF=1.30996678668 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| wie [X,1] , [X,2] zu ||| like [X,1] that [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89963450265 MaxLexEgivenF=2.61193782432 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] zu ||| such as [X,1] , [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57912352507 MaxLexEgivenF=2.04584734436 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| wie [X,1] , [X,2] zu ||| such as [X,1] , [X,2] on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.27576078598 MaxLexEgivenF=3.33774473136 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| wie [X,1] , [X,2] können ||| [X,1] how , [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.17393427465 MaxLexEgivenF=1.52606972013 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2 4-4
[X] ||| wie [X,1] , [X,2] können ||| wie [X,1] , [X,2] können ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.09876541027 MaxLexEgivenF=5.63190731468 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] können ||| as [X,1] , [X,2] are able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.99655862457 MaxLexEgivenF=3.92226287625 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4 4-5
[X] ||| wie [X,1] , [X,2] können ||| how do [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51151964009 MaxLexEgivenF=3.53259112961 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 4-4
[X] ||| wie [X,1] , [X,2] können ||| like [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.73833680765 MaxLexEgivenF=1.42471211196 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| wie [X,1] , [X,2] können ||| like [X,1] , [X,2] can ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.40075144221 MaxLexEgivenF=1.63672743038 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] können ||| like [X,1] , [X,2] allow ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.13055303102 MaxLexEgivenF=3.64504983144 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] können ||| like [X,1] , [X,2] show ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.28381739567 MaxLexEgivenF=4.60286473963 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| wie [X,1] , [X,2] können ||| such as [X,1] [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.71897320494 MaxLexEgivenF=1.94857735121 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 4-4
[X] ||| wie [X,1] , [X,2] können ||| such as [X,1] , [X,2] may ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.66392859088 MaxLexEgivenF=3.03152884764 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 4-5
[X] ||| wie [X,1] , [X,2] können ||| such as [X,1] , [X,2] can ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.38138783949 MaxLexEgivenF=2.16059266964 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 4-5
[X] ||| wie [X,1] , [X,2] können ||| such as [X,1] , [X,2] can be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.38138783949 MaxLexEgivenF=3.40538491776 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5 4-6
[X] ||| wie [X,1] um [X,2] spielen ||| like [X,1] play for [X,2] ||| EgivenFCoherent=1.17609125906 SampleCountF=1.20411998266 CountEF=0.301029995664 MaxLexFgivenE=3.02841708012 MaxLexEgivenF=2.65552395617 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 4-2 2-3
[X] ||| [X,1] wie [X,2] zu können ||| [X,1] wie [X,2] zu können ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=1.29986630922 MaxLexEgivenF=7.95351162274 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] wie [X,2] zu können ||| [X,1] as [X,2] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.60767404414 MaxLexEgivenF=3.70902192226 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4 4-5
[X] ||| [X,1] wie [X,2] zu können ||| [X,1] how [X,2] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.08004203455 MaxLexEgivenF=4.06336071071 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4 4-5
[X] ||| [X,1] wie [X,2] zu können ||| [X,1] like [X,2] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.30685920211 MaxLexEgivenF=4.17401842095 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4 4-5
[X] ||| [X,1] wie [X,2] zu können ||| [X,1] like a [X,2] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.30685920211 MaxLexEgivenF=5.39086620419 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4 4-5 4-6
[X] ||| wie [X,1] zu können ||| wie [X,1] zu können ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=1.29986630922 MaxLexEgivenF=7.95351162274 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] zu können ||| as [X,1] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.60767404414 MaxLexEgivenF=3.70902192226 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| wie [X,1] zu können ||| how [X,1] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.08004203455 MaxLexEgivenF=4.06336071071 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| wie [X,1] zu können ||| like [X,1] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.30685920211 MaxLexEgivenF=4.17401842095 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| wie [X,1] zu können ||| like a [X,1] to be able ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.30685920211 MaxLexEgivenF=5.39086620419 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3 3-4 3-5
[X] ||| wie [X,1] zu können [X,2] ||| wie [X,1] zu können [X,2] ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=1.29986630922 MaxLexEgivenF=7.95351162274 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| wie [X,1] zu können [X,2] ||| as [X,1] to be able [X,2] ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.60767404414 MaxLexEgivenF=3.70902192226 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| wie [X,1] zu können [X,2] ||| how [X,1] to be able [X,2] ||| EgivenFCoherent=2.13353890837 SampleCountF=2.13672056716 CountEF=0.301029995664 MaxLexFgivenE=2.08004203455 MaxLexEgivenF=4.06336071071 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| alt [X,1] man [X,2] können ||| old [X,1] you can [X,2] ||| EgivenFCoherent=0.47712125472 SampleCountF=0.602059991328 CountEF=0.301029995664 MaxLexFgivenE=3.43654517625 MaxLexEgivenF=1.68111064417 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 4-3
[X] ||| [X,1] alt [X,2] sein , ||| [X,2] be [X,1] old , ||| EgivenFCoherent=1.32221929473 SampleCountF=1.34242268082 CountEF=0.301029995664 MaxLexFgivenE=2.79984338007 MaxLexEgivenF=1.22305363524 IsSingletonF=0 IsSingletonFE=1 ||| 3-1 1-3 4-4
[X] ||| [X,1] alt [X,2] sein , ||| [X,1] old [X,2] have to be to be ||| EgivenFCoherent=1.32221929473 SampleCountF=1.34242268082 CountEF=0.301029995664 MaxLexFgivenE=3.13742874551 MaxLexEgivenF=5.52258886081 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4 3-5 4-6 3-7
[X] ||| alt [X,1] sein , ||| [X,1] be old , ||| EgivenFCoherent=1.02118929907 SampleCountF=1.34242268082 CountEF=0.47712125472 MaxLexFgivenE=2.79984338007 MaxLexEgivenF=1.22305363524 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 0-2 3-3
[X] ||| alt [X,1] sein , ||| old [X,1] have to be to be ||| EgivenFCoherent=1.32221929473 SampleCountF=1.34242268082 CountEF=0.301029995664 MaxLexFgivenE=3.13742874551 MaxLexEgivenF=5.52258886081 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3 2-4 3-5 2-6
[X] ||| alt [X,1] sein , [X,2] ||| [X,1] be old , [X,2] ||| EgivenFCoherent=1.02118929907 SampleCountF=1.34242268082 CountEF=0.47712125472 MaxLexFgivenE=2.79984338007 MaxLexEgivenF=1.22305363524 IsSingletonF=0 IsSingletonFE=0 ||| 2-1 0-2 3-3
[X] ||| [X,1] alt [X,2] , um ||| [X,2] [X,1] old to ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=3.21311268142 MaxLexEgivenF=0.838342046856 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-3 4-3
[X] ||| [X,1] alt [X,2] , um ||| [X,1] old [X,2] to ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=3.21311268142 MaxLexEgivenF=0.838342046856 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-3
[X] ||| [X,1] alt [X,2] , um ||| [X,1] alt [X,2] , to ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=1.79124289595 MaxLexEgivenF=1.55953483288 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] alt [X,2] , um ||| [X,1] alt [X,2] to ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=2.12882826139 MaxLexEgivenF=1.34751951446 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-3
[X] ||| alt [X,1] , um ||| old [X,1] to ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=3.21311268142 MaxLexEgivenF=0.838342046856 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-2
[X] ||| alt [X,1] , um ||| alt [X,1] , to ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=1.79124289595 MaxLexEgivenF=1.55953483288 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| alt [X,1] , um ||| alt [X,1] to ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=2.12882826139 MaxLexEgivenF=1.34751951446 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-2
[X] ||| alt [X,1] , um [X,2] ||| old [X,1] to [X,2] ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=3.21311268142 MaxLexEgivenF=0.838342046856 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-2
[X] ||| alt [X,1] , um [X,2] ||| alt [X,1] , to [X,2] ||| EgivenFCoherent=1.77085201164 SampleCountF=1.77815125038 CountEF=0.301029995664 MaxLexFgivenE=1.79124289595 MaxLexEgivenF=1.55953483288 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| [X,1] sollte man [X,2] , ||| [X,1] , one should [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46545155083 MaxLexEgivenF=2.13989813424 IsSingletonF=0 IsSingletonFE=1 ||| 4-1 2-2 1-3
[X] ||| [X,1] sollte man [X,2] , ||| [X,1] , you must [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99196722992 MaxLexEgivenF=3.16880543378 IsSingletonF=0 IsSingletonFE=1 ||| 4-1 2-2 1-3
[X] ||| [X,1] sollte man [X,2] , ||| [X,1] it would have [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.29831977966 MaxLexEgivenF=5.20790489981 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 1-2 2-3 4-5
[X] ||| [X,1] sollte man [X,2] , ||| [X,1] one should [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46545155083 MaxLexEgivenF=2.13989813424 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2 4-4
[X] ||| [X,1] sollte man [X,2] , ||| [X,1] you should [X,2] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72632130547 MaxLexEgivenF=2.59181020775 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 1-2 4-4
[X] ||| [X,1] sollte man [X,2] , ||| [X,1] should you [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4251739306 MaxLexEgivenF=1.50185448853 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| sollte man [X,1] , ||| , one should [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46545155083 MaxLexEgivenF=2.13989813424 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-1 0-2
[X] ||| sollte man [X,1] , ||| , you must [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99196722992 MaxLexEgivenF=3.16880543378 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-1 0-2
[X] ||| sollte man [X,1] , ||| it would have [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.29831977966 MaxLexEgivenF=5.20790489981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 0-1 1-2 3-4
[X] ||| sollte man [X,1] , ||| one should [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46545155083 MaxLexEgivenF=2.13989813424 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] , ||| you should [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4251739306 MaxLexEgivenF=1.50185448853 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] , ||| you should [X,1] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72632130547 MaxLexEgivenF=2.59181020775 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] , ||| if you 're [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.54129115774 MaxLexEgivenF=5.04662261614 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 3-4
[X] ||| sollte man [X,1] , ||| should you [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4251739306 MaxLexEgivenF=1.50185448853 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| sollte man [X,1] , [X,2] ||| , one should [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46545155083 MaxLexEgivenF=2.13989813424 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-1 0-2
[X] ||| sollte man [X,1] , [X,2] ||| , you must [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.99196722992 MaxLexEgivenF=3.16880543378 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 1-1 0-2
[X] ||| sollte man [X,1] , [X,2] ||| it would have [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.29831977966 MaxLexEgivenF=5.20790489981 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 0-1 1-2 3-4
[X] ||| sollte man [X,1] , [X,2] ||| one should [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46545155083 MaxLexEgivenF=2.13989813424 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] , [X,2] ||| you should [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76275929604 MaxLexEgivenF=1.2898391701 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1
[X] ||| sollte man [X,1] , [X,2] ||| you should [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4251739306 MaxLexEgivenF=1.50185448853 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] , [X,2] ||| you should [X,1] that [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72632130547 MaxLexEgivenF=2.59181020775 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] , [X,2] ||| if you 're [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.54129115774 MaxLexEgivenF=5.04662261614 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 3-4
[X] ||| sollte man [X,1] , [X,2] ||| should you [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.4251739306 MaxLexEgivenF=1.50185448853 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| sollte man [X,1] , [X,2] ||| would one [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.32070755117 MaxLexEgivenF=3.33126615693 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| [X,1] sollte man [X,2] zu ||| [X,1] you should [X,2] at ||| EgivenFCoherent=2.08278537032 SampleCountF=2.08635983067 CountEF=0.301029995664 MaxLexFgivenE=3.60959980882 MaxLexEgivenF=2.92541242754 IsSingletonF=1 IsSingletonFE=1 ||| 2-1 1-2 4-4
[X] ||| sollte man [X,1] zu ||| you should [X,1] at ||| EgivenFCoherent=2.08278537032 SampleCountF=2.08635983067 CountEF=0.301029995664 MaxLexFgivenE=3.60959980882 MaxLexEgivenF=2.92541242754 IsSingletonF=1 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] zu [X,2] ||| you should [X,1] at [X,2] ||| EgivenFCoherent=2.08278537032 SampleCountF=2.08635983067 CountEF=0.301029995664 MaxLexFgivenE=3.60959980882 MaxLexEgivenF=2.92541242754 IsSingletonF=1 IsSingletonFE=1 ||| 1-0 0-1 3-3
[X] ||| sollte man [X,1] können [X,2] ||| you should [X,1] [X,2] can ||| EgivenFCoherent=1.38021124171 SampleCountF=1.39794000867 CountEF=0.301029995664 MaxLexFgivenE=2.83855366459 MaxLexEgivenF=1.70537974094 IsSingletonF=1 IsSingletonFE=1 ||| 1-0 0-1 3-4
[X] ||| [X,1] sollte [X,2] sein , ||| [X,1] should be [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20185186841 MaxLexEgivenF=1.247322732 IsSingletonF=1 IsSingletonFE=1 ||| 1-1 1-2 3-2 4-4
[X] ||| sollte [X,1] sein , ||| should be [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20185186841 MaxLexEgivenF=1.247322732 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 0-1 2-1 3-3
[X] ||| sollte [X,1] sein , [X,2] ||| should be [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53943723385 MaxLexEgivenF=1.03530741358 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-1
[X] ||| sollte [X,1] sein , [X,2] ||| should be [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20185186841 MaxLexEgivenF=1.247322732 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-1 3-3
[X] ||| sollte [X,1] sein [X,2] um ||| should be [X,1] [X,2] to ||| EgivenFCoherent=1.69019608003 SampleCountF=1.69897000434 CountEF=0.301029995664 MaxLexFgivenE=3.32911801415 MaxLexEgivenF=1.38309675997 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 0-1 2-1 4-4
[X] ||| sollte [X,1] sein [X,2] zu ||| [X,1] should be [X,2] being ||| EgivenFCoherent=2.24054924828 SampleCountF=2.24303804869 CountEF=0.301029995664 MaxLexFgivenE=3.51579221907 MaxLexEgivenF=2.96971965537 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2 4-4
[X] ||| sollte [X,1] sein [X,2] zu ||| if [X,1] [X,2] to ||| EgivenFCoherent=2.24054924828 SampleCountF=2.24303804869 CountEF=0.301029995664 MaxLexFgivenE=5.45425466454 MaxLexEgivenF=1.40010903224 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| sollte [X,1] sein [X,2] zu ||| should be [X,1] [X,2] to ||| EgivenFCoherent=1.93951925262 SampleCountF=2.24303804869 CountEF=0.47712125472 MaxLexFgivenE=2.81296728797 MaxLexEgivenF=1.33610265914 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-1 4-4
[X] ||| sollte [X,1] sein [X,2] können ||| [X,1] should be [X,2] able ||| EgivenFCoherent=1.75587485567 SampleCountF=1.76342799356 CountEF=0.301029995664 MaxLexFgivenE=2.91022394274 MaxLexEgivenF=2.65456679972 IsSingletonF=1 IsSingletonFE=1 ||| 0-1 2-2 4-4
[X] ||| [X,1] sollte [X,2] , um ||| [X,1] should [X,2] , in order ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=1.65748120205 MaxLexEgivenF=3.2081245538 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4 4-5
[X] ||| [X,1] sollte [X,2] , um ||| [X,1] should [X,2] , to ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=2.27753580431 MaxLexEgivenF=1.07462646205 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] sollte [X,2] , um ||| [X,1] should [X,2] to ||| EgivenFCoherent=1.39357520327 SampleCountF=2.47421626408 CountEF=1.11394335231 MaxLexFgivenE=2.61512116976 MaxLexEgivenF=0.862611143623 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-3
[X] ||| [X,1] sollte [X,2] , um ||| [X,1] should [X,2] for ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=3.02243533941 MaxLexEgivenF=1.67149656445 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 4-3
[X] ||| [X,1] sollte [X,2] , um ||| [X,1] should [X,2] order ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=1.99506656749 MaxLexEgivenF=1.90897186761 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 4-3
[X] ||| [X,1] sollte [X,2] , um ||| [X,1] should be [X,2] to ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=2.61512116976 MaxLexEgivenF=1.88962551828 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4 4-4
[X] ||| [X,1] sollte [X,2] , um ||| should [X,1] [X,2] , in order ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=1.65748120205 MaxLexEgivenF=3.2081245538 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3 4-4 4-5
[X] ||| sollte [X,1] , um ||| should [X,1] , in order ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=1.65748120205 MaxLexEgivenF=3.2081245538 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| sollte [X,1] , um ||| should [X,1] , to ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=2.27753580431 MaxLexEgivenF=1.07462646205 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| sollte [X,1] , um ||| should [X,1] to ||| EgivenFCoherent=1.39357520327 SampleCountF=2.47421626408 CountEF=1.11394335231 MaxLexFgivenE=2.61512116976 MaxLexEgivenF=0.862611143623 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| sollte [X,1] , um ||| should [X,1] for ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=3.02243533941 MaxLexEgivenF=1.67149656445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| sollte [X,1] , um ||| should [X,1] order ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=1.99506656749 MaxLexEgivenF=1.90897186761 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| sollte [X,1] , um ||| should have [X,1] order ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=1.99506656749 MaxLexEgivenF=4.33468088967 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 3-3
[X] ||| sollte [X,1] , um ||| should be [X,1] to ||| EgivenFCoherent=2.17172645365 SampleCountF=2.47421626408 CountEF=0.47712125472 MaxLexFgivenE=2.61512116976 MaxLexEgivenF=1.88962551828 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 3-3
[X] ||| sollte [X,1] , um [X,2] ||| should [X,1] to [X,2] ||| EgivenFCoherent=1.6276584093 SampleCountF=2.47421626408 CountEF=0.903089986992 MaxLexFgivenE=2.61512116976 MaxLexEgivenF=0.862611143623 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| sollte [X,1] , um [X,2] ||| should [X,1] for [X,2] ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=3.02243533941 MaxLexEgivenF=1.67149656445 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| sollte [X,1] , um [X,2] ||| should have [X,1] order [X,2] ||| EgivenFCoherent=2.47275644932 SampleCountF=2.47421626408 CountEF=0.301029995664 MaxLexFgivenE=1.99506656749 MaxLexEgivenF=4.33468088967 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 3-3
[X] ||| sollte [X,1] , um [X,2] ||| should be [X,1] to [X,2] ||| EgivenFCoherent=2.17172645365 SampleCountF=2.47421626408 CountEF=0.47712125472 MaxLexFgivenE=2.61512116976 MaxLexEgivenF=1.88962551828 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3 3-3
[X] ||| sollte [X,1] , [X,2] können ||| should [X,1] [X,2] can ||| EgivenFCoherent=1.88649072517 SampleCountF=1.89209460269 CountEF=0.301029995664 MaxLexFgivenE=1.90123475801 MaxLexEgivenF=0.930362368068 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| [X,1] man [X,2] , um ||| [X,1] one [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.33877151211 MaxLexEgivenF=1.76085036498 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-3
[X] ||| [X,1] man [X,2] , um ||| [X,1] you [X,2] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.29849389188 MaxLexEgivenF=1.12280671926 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-3
[X] ||| man [X,1] , um ||| one [X,1] in order to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.71871690985 MaxLexEgivenF=4.24213780312 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2 3-3 2-4 3-4
[X] ||| man [X,1] , um ||| one [X,1] to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.33877151211 MaxLexEgivenF=1.76085036498 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| man [X,1] , um ||| you [X,1] in order to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67843928962 MaxLexEgivenF=3.60409415741 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2 3-3 2-4 3-4
[X] ||| man [X,1] , um ||| you [X,1] to ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=3.29849389188 MaxLexEgivenF=1.12280671926 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| man [X,1] , um ||| they [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.09208594007 MaxLexEgivenF=3.0309148127 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| man [X,1] , um [X,2] ||| one [X,1] in order to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.71871690985 MaxLexEgivenF=4.24213780312 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2 3-3 2-4 3-4
[X] ||| man [X,1] , um [X,2] ||| one [X,1] to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.33877151211 MaxLexEgivenF=1.76085036498 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| man [X,1] , um [X,2] ||| you [X,1] in order to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67843928962 MaxLexEgivenF=3.60409415741 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2 3-3 2-4 3-4
[X] ||| man [X,1] , um [X,2] ||| you [X,1] to [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.29849389188 MaxLexEgivenF=1.12280671926 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-2
[X] ||| man [X,1] , um [X,2] ||| they [X,1] for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.09208594007 MaxLexEgivenF=3.0309148127 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-2
[X] ||| man [X,1] , [X,2] spielen ||| one [X,1] , [X,2] play ||| EgivenFCoherent=1.86332286012 SampleCountF=1.86923171973 CountEF=0.301029995664 MaxLexFgivenE=2.38038505744 MaxLexEgivenF=2.11475398483 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 4-4
[X] ||| man [X,1] , [X,2] spielen ||| you can [X,1] , [X,2] gamble ||| EgivenFCoherent=1.86332286012 SampleCountF=1.86923171973 CountEF=0.301029995664 MaxLexFgivenE=2.59748289414 MaxLexEgivenF=5.04522677465 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 4-5
[X] ||| man [X,1] , [X,2] zu ||| man [X,1] [X,2] on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84847584382 MaxLexEgivenF=3.42292755495 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| man [X,1] , [X,2] zu ||| one [X,1] [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.82262078594 MaxLexEgivenF=1.71385626415 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 4-3
[X] ||| [X,1] sein , um ||| [X,1] may be to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=3.27306557249 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3 3-3
[X] ||| [X,1] sein , um ||| to be [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=0.868274962739 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 3-0 1-1
[X] ||| [X,1] sein , um ||| to be [X,1] in order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.45511722742 MaxLexEgivenF=3.34956240088 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-1 3-3 3-4
[X] ||| [X,1] sein , um ||| be [X,1] so as ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.55226730405 MaxLexEgivenF=4.94645073538 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2 3-3
[X] ||| [X,1] sein , um ||| be [X,1] and clear to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=5.07732932554 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2 1-3 2-4 3-4
[X] ||| [X,1] sein , um ||| be [X,1] to ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=0.868274962739 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2 3-2
[X] ||| [X,1] sein , um ||| be [X,1] to get ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=3.32677124921 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2 3-2 3-3
[X] ||| [X,1] sein , um ||| be [X,1] to obtain ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=4.37469480153 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2 3-2 3-3
[X] ||| [X,1] sein , um ||| be [X,1] for ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.48248599934 MaxLexEgivenF=1.67716038357 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2
[X] ||| [X,1] sein , um ||| be [X,1] order ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.45511722742 MaxLexEgivenF=1.91463568672 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2
[X] ||| [X,1] sein , um [X,2] ||| [X,1] may be to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=3.27306557249 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3 3-3
[X] ||| [X,1] sein , um [X,2] ||| to be [X,1] in order [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.45511722742 MaxLexEgivenF=3.34956240088 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-1 3-3 3-4
[X] ||| [X,1] sein , um [X,2] ||| be [X,1] so as [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.55226730405 MaxLexEgivenF=4.94645073538 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2 3-3
[X] ||| [X,1] sein , um [X,2] ||| be [X,1] and clear to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=5.07732932554 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2 1-3 2-4 3-4
[X] ||| [X,1] sein , um [X,2] ||| be [X,1] to [X,2] ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=0.868274962739 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2 3-2
[X] ||| [X,1] sein , um [X,2] ||| be [X,1] to get [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=3.32677124921 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2 3-2 3-3
[X] ||| [X,1] sein , um [X,2] ||| be [X,1] to obtain [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=4.37469480153 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2 3-2 3-3
[X] ||| [X,1] sein , um [X,2] ||| be [X,1] for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.48248599934 MaxLexEgivenF=1.67716038357 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2
[X] ||| sein , um ||| in the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.78897560623 MaxLexEgivenF=2.43180120385 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 0-1
[X] ||| sein , um ||| to be ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=0.868274962739 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-0 0-1
[X] ||| sein , um ||| may be to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=3.27306557249 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2 2-2
[X] ||| sein , um [X,1] ||| may be to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.07517182969 MaxLexEgivenF=3.27306557249 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 0-1 1-2 2-2
[X] ||| sein , [X,1] zu [X,2] ||| to [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.08419125295 MaxLexEgivenF=0.300795245562 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 1-0 3-0
[X] ||| [X,1] sein , [X,2] können ||| be [X,1] , [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.0237000525 MaxLexEgivenF=1.14804150561 IsSingletonF=1 IsSingletonFE=1 ||| 1-0 2-2 4-4
[X] ||| [X,1] sein [X,2] zu können ||| [X,1] be [X,2] being able ||| EgivenFCoherent=2.32633586093 SampleCountF=2.32837960344 CountEF=0.301029995664 MaxLexFgivenE=3.6326327435 MaxLexEgivenF=4.07415724428 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| [X,1] sein [X,2] zu können ||| be [X,1] to [X,2] ||| EgivenFCoherent=2.32633586093 SampleCountF=2.32837960344 CountEF=0.301029995664 MaxLexFgivenE=3.61289009687 MaxLexEgivenF=0.82128086191 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2 4-2
[X] ||| [X,1] sein [X,2] zu können ||| be [X,1] to be able [X,2] ||| EgivenFCoherent=2.32633586093 SampleCountF=2.32837960344 CountEF=0.301029995664 MaxLexFgivenE=2.92980781241 MaxLexEgivenF=2.9610258644 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-2 4-3 4-4
[X] ||| sein [X,1] zu können ||| be [X,1] being able ||| EgivenFCoherent=2.32633586093 SampleCountF=2.32837960344 CountEF=0.301029995664 MaxLexFgivenE=3.6326327435 MaxLexEgivenF=4.07415724428 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| [X,1] , um [X,2] spielen ||| [X,1] , um [X,2] spielen ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31077152447 MaxLexEgivenF=5.17523836776 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] , um [X,2] spielen ||| [X,1] of [X,2] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70983320871 MaxLexEgivenF=1.18651291304 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 4-3
[X] ||| [X,1] , um [X,2] spielen ||| [X,1] to [X,2] playing and playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84143246572 MaxLexEgivenF=3.53398119026 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 4-3 4-5
[X] ||| [X,1] , um [X,2] spielen ||| [X,1] to play [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53005467637 MaxLexEgivenF=0.837466994217 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 4-2
[X] ||| [X,1] , um [X,2] spielen ||| [X,1] to play for [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53005467637 MaxLexEgivenF=1.99414176144 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 4-2 2-3
[X] ||| , um [X,1] spielen ||| , um [X,1] spielen ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31077152447 MaxLexEgivenF=5.17523836776 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| , um [X,1] spielen ||| to [X,1] playing and playing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84143246572 MaxLexEgivenF=3.53398119026 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-2 3-4
[X] ||| , um [X,1] spielen ||| to play [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53005467637 MaxLexEgivenF=0.837466994217 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-1
[X] ||| , um [X,1] spielen ||| to play for [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53005467637 MaxLexEgivenF=1.99414176144 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-1 1-2
[X] ||| , um [X,1] spielen ||| to make [X,1] play ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53005467637 MaxLexEgivenF=3.07110008033 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 1-1 3-3
[X] ||| , um [X,1] spielen [X,2] ||| , um [X,1] spielen [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.31077152447 MaxLexEgivenF=5.17523836776 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| , um [X,1] spielen [X,2] ||| to [X,1] playing and playing [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84143246572 MaxLexEgivenF=3.53398119026 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-2 3-4
[X] ||| , um [X,1] spielen [X,2] ||| to play [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53005467637 MaxLexEgivenF=0.837466994217 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-1
[X] ||| , um [X,1] spielen [X,2] ||| to play for [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53005467637 MaxLexEgivenF=1.99414176144 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-1 1-2
[X] ||| [X,1] , um [X,2] zu ||| [X,1] , um [X,2] zu ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.02717717891 MaxLexEgivenF=5.22478069883 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2 4-4
[X] ||| [X,1] , um [X,2] zu ||| [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 4-1
[X] ||| [X,1] , um [X,2] zu ||| [X,1] to make [X,2] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=2.83522357724 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 2-2 4-4
[X] ||| [X,1] , um [X,2] zu ||| [X,1] to view [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=3.08324281105 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 4-1 2-2
[X] ||| , um [X,1] zu ||| , um [X,1] zu ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.02717717891 MaxLexEgivenF=5.22478069883 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| , um [X,1] zu ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-0
[X] ||| , um [X,1] zu ||| to make [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=2.83522357724 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 1-1 3-3
[X] ||| , um [X,1] zu ||| to view [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=3.08324281105 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-0 1-1
[X] ||| , um [X,1] zu [X,2] ||| , um [X,1] zu [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.02717717891 MaxLexEgivenF=5.22478069883 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| , um [X,1] zu [X,2] ||| , to [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.29711967398 MaxLexEgivenF=0.512810563986 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-1
[X] ||| , um [X,1] zu [X,2] ||| to [X,2] [X,1] ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0 3-0
[X] ||| , um [X,1] zu [X,2] ||| to [X,2] to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=0.601590491125 IsSingletonF=0 IsSingletonFE=1 ||| 3-0 0-2 1-2
[X] ||| , um [X,1] zu [X,2] ||| to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-0
[X] ||| , um [X,1] zu [X,2] ||| to make [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.63470503943 MaxLexEgivenF=2.83522357724 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 1-1 3-3
[X] ||| [X,1] , um [X,2] können ||| [X,1] so you can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.91406482821 MaxLexEgivenF=4.10993727649 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 4-2 4-3
[X] ||| [X,1] , um [X,2] können ||| [X,1] to [X,2] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.43696935385 MaxLexEgivenF=0.763329917229 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 4-3
[X] ||| [X,1] , um [X,2] können ||| [X,1] to be able [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.73196169419 MaxLexEgivenF=3.21184098066 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 4-2 4-3
[X] ||| , um [X,1] können ||| , to [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.09938398841 MaxLexEgivenF=0.975345235652 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 3-3
[X] ||| , um [X,1] können ||| in order to be able [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11190709192 MaxLexEgivenF=5.69312841881 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2 1-2 3-3 3-4
[X] ||| , um [X,1] können ||| to [X,1] can ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.43696935385 MaxLexEgivenF=0.763329917229 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-2
[X] ||| , um [X,1] können ||| to be able [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.73196169419 MaxLexEgivenF=3.21184098066 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-1 3-2
[X] ||| , um [X,1] können [X,2] ||| in order to be able [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.11190709192 MaxLexEgivenF=5.69312841881 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2 1-2 3-3 3-4
[X] ||| , um [X,1] können [X,2] ||| to be able [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.73196169419 MaxLexEgivenF=3.21184098066 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-1 3-2
[X] ||| [X,1] , [X,2] spielen zu ||| [X,1] [X,2] play to ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=2.0139039502 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 3-2 4-3
[X] ||| [X,1] , [X,2] spielen zu ||| [X,1] , [X,2] games to ||| EgivenFCoherent=1.84818911699 SampleCountF=2.15228834438 CountEF=0.47712125472 MaxLexFgivenE=1.9817782997 MaxLexEgivenF=1.40132275114 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3 4-4
[X] ||| [X,1] , [X,2] spielen zu ||| [X,1] , [X,2] play to ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.67631858475 MaxLexEgivenF=1.00248821181 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4
[X] ||| , [X,1] spielen zu ||| , [X,1] games to ||| EgivenFCoherent=1.54715912133 SampleCountF=2.15228834438 CountEF=0.698970004336 MaxLexFgivenE=1.9817782997 MaxLexEgivenF=1.40132275114 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| , [X,1] spielen zu ||| , [X,1] play to ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.67631858475 MaxLexEgivenF=1.00248821181 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| , [X,1] spielen zu [X,2] ||| , [X,1] games to [X,2] ||| EgivenFCoherent=1.84818911699 SampleCountF=2.15228834438 CountEF=0.47712125472 MaxLexFgivenE=1.9817782997 MaxLexEgivenF=1.40132275114 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2 3-3
[X] ||| , [X,1] spielen zu [X,2] ||| , [X,1] play to [X,2] ||| EgivenFCoherent=2.14921911266 SampleCountF=2.15228834438 CountEF=0.301029995664 MaxLexFgivenE=1.67631858475 MaxLexEgivenF=1.00248821181 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3
[X] ||| [X,1] , [X,2] zu können ||| [X,1] , [X,2] to be able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.87822560257 MaxLexEgivenF=3.37686219826 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 4-4 4-5
[X] ||| [X,1] , [X,2] zu können ||| [X,1] to [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.96690076683 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-1 4-1
[X] ||| [X,1] , [X,2] zu können ||| [X,1] to have [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.4230016307 MaxLexEgivenF=2.27682633884 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-1 4-2
[X] ||| [X,1] , [X,2] zu können ||| [X,1] to be [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89889325248 MaxLexEgivenF=1.54558749369 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-1 4-2
[X] ||| [X,1] , [X,2] zu können ||| [X,1] can [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.62364355877 MaxLexEgivenF=0.415540570837 IsSingletonF=0 IsSingletonFE=1 ||| 4-1
[X] ||| , [X,1] zu können ||| , [X,1] to be able ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.87822560257 MaxLexEgivenF=3.37686219826 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-3 3-4
[X] ||| , [X,1] zu können ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.96690076683 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-0
[X] ||| , [X,1] zu können ||| to have [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.4230016307 MaxLexEgivenF=2.27682633884 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-1
[X] ||| , [X,1] zu können ||| to be [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89889325248 MaxLexEgivenF=1.54558749369 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-1
[X] ||| , [X,1] zu können [X,2] ||| to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.96690076683 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-0
[X] ||| , [X,1] zu können [X,2] ||| to have [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.4230016307 MaxLexEgivenF=2.27682633884 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-1
[X] ||| , [X,1] zu können [X,2] ||| to be [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89889325248 MaxLexEgivenF=1.54558749369 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-1
[X] ||| um [X,1] spielen zu ||| to play [X,1] ||| EgivenFCoherent=1.96848294855 SampleCountF=1.9731278536 CountEF=0.301029995664 MaxLexFgivenE=2.80358473049 MaxLexEgivenF=0.790472893388 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 3-0 2-1
[X] ||| um [X,1] spielen zu [X,2] ||| to [X,2] [X,1] play ||| EgivenFCoherent=1.96848294855 SampleCountF=1.9731278536 CountEF=0.301029995664 MaxLexFgivenE=2.80358473049 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-0 2-3
[X] ||| um [X,1] spielen zu [X,2] ||| to play [X,1] [X,2] ||| EgivenFCoherent=1.96848294855 SampleCountF=1.9731278536 CountEF=0.301029995664 MaxLexFgivenE=2.80358473049 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 3-0 2-1
[X] ||| um [X,1] zu können ||| in order to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.71718628237 MaxLexEgivenF=2.78208268371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-2 3-2
[X] ||| um [X,1] zu können ||| in order to ensure [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65218703772 MaxLexEgivenF=5.39353042573 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-2 0-3 3-3
[X] ||| um [X,1] zu können ||| to [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=4.75658154713 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-0 3-0
[X] ||| um [X,1] zu können ||| to [X,1] possible ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.6634872634 MaxLexEgivenF=2.49532144645 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-2
[X] ||| um [X,1] zu können ||| to be able to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.00549174831 MaxLexEgivenF=3.4656421254 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 3-1 3-2 0-3
[X] ||| um [X,1] zu können [X,2] ||| in order to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.71718628237 MaxLexEgivenF=2.78208268371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-2 3-2
[X] ||| um [X,1] zu können [X,2] ||| in order to ensure [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65218703772 MaxLexEgivenF=5.39353042573 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-2 0-3 3-3
[X] ||| um [X,1] zu können [X,2] ||| to [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=4.75658154713 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-0 3-0
[X] ||| um [X,1] zu können [X,2] ||| to [X,1] possible [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.6634872634 MaxLexEgivenF=2.49532144645 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0 3-2
[X] ||| um [X,1] zu können [X,2] ||| to be able to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.00549174831 MaxLexEgivenF=3.4656421254 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 3-1 3-2 0-3
[X] ||| [X,1] spielen zu können ||| [X,1] play ||| EgivenFCoherent=1.61804809671 SampleCountF=1.92427928606 CountEF=0.47712125472 MaxLexFgivenE=4.14460894998 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-1 3-1
[X] ||| [X,1] spielen zu können ||| [X,1] play with ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=4.14460894998 MaxLexEgivenF=2.20728325604 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-1 3-1 2-2
[X] ||| [X,1] spielen zu können ||| to be able [X,1] play ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.38469065909 MaxLexEgivenF=3.65452452766 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 3-1 3-2 1-4
[X] ||| [X,1] spielen zu können [X,2] ||| to be able [X,1] play [X,2] ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.38469065909 MaxLexEgivenF=3.65452452766 IsSingletonF=1 IsSingletonFE=1 ||| 2-0 3-1 3-2 1-4
[X] ||| spielen zu können ||| to play ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=3.44178401889 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-0 0-1
[X] ||| spielen zu können ||| playing ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=4.88794298748 MaxLexEgivenF=1.119995554 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 2-0
[X] ||| spielen zu können ||| play ||| EgivenFCoherent=1.61804809671 SampleCountF=1.92427928606 CountEF=0.47712125472 MaxLexFgivenE=4.14460894998 MaxLexEgivenF=0.489677647825 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0 2-0
[X] ||| spielen zu können ||| play with ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=4.14460894998 MaxLexEgivenF=2.20728325604 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 2-0 1-1
[X] ||| spielen zu können ||| able to play ||| EgivenFCoherent=1.91907809238 SampleCountF=1.92427928606 CountEF=0.301029995664 MaxLexFgivenE=2.38469065909 MaxLexEgivenF=2.40973227953 IsSingletonF=0 IsSingletonFE=1 ||| 2-0 1-1 0-2
[X] ||| wie alt [X,1] sein , ||| how old [X,1] have to be to be ||| EgivenFCoherent=0.845098040014 SampleCountF=0.903089986992 CountEF=0.301029995664 MaxLexFgivenE=3.52549121371 MaxLexEgivenF=6.42110269169 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 1-1 3-3 3-4 3-5 4-6 3-7
[X] ||| wie [X,1] sein , um ||| such [X,1] to be able to ||| EgivenFCoherent=1.36172783602 SampleCountF=1.38021124171 CountEF=0.301029995664 MaxLexFgivenE=3.67068786274 MaxLexEgivenF=4.96510431482 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-2 2-3 2-4 3-5 4-5
[X] ||| sollte [X,1] sein , um ||| should be [X,1] , to ||| EgivenFCoherent=1.49136169383 SampleCountF=1.50514997832 CountEF=0.301029995664 MaxLexFgivenE=3.51536405037 MaxLexEgivenF=1.59511207839 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 0-1 2-1 3-3 4-4
[X] ||| , um [X,1] spielen zu ||| to play [X,1] ||| EgivenFCoherent=1.71600334363 SampleCountF=1.7242758696 CountEF=0.301029995664 MaxLexFgivenE=3.32741613216 MaxLexEgivenF=0.790472893388 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 1-0 4-0 3-1
[X] ||| , um [X,1] zu können ||| , in order to be able to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57168318227 MaxLexEgivenF=6.15894488196 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2 1-3 4-4 4-5 3-6
[X] ||| , um [X,1] zu können ||| in order to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.24101768404 MaxLexEgivenF=2.78208268371 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 0-2 1-2 3-2 4-2
[X] ||| , um [X,1] zu können ||| to [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=5.2804129488 MaxLexEgivenF=0.300795245562 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0 3-0 4-0
[X] ||| , um [X,1] zu können ||| to [X,1] to you ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.59455908859 MaxLexEgivenF=2.0394448312 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-0 3-2 4-3
[X] ||| , um [X,1] zu können ||| to be able to [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.52932314998 MaxLexEgivenF=3.4656421254 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-0 4-1 4-2 3-3
[X] ||| , um [X,1] zu können ||| for you to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.59455908859 MaxLexEgivenF=2.89532435286 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 4-1 0-2 3-2
[X] ||| um [X,1] spielen zu können ||| to play [X,1] ||| EgivenFCoherent=1.2552725051 SampleCountF=1.74036268949 CountEF=0.602059991328 MaxLexFgivenE=4.75529620085 MaxLexEgivenF=0.790472893388 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 3-0 2-1 4-1
[X] ||| um [X,1] spielen zu können ||| for [X,1] play ||| EgivenFCoherent=1.73239375982 SampleCountF=1.74036268949 CountEF=0.301029995664 MaxLexFgivenE=5.84251375481 MaxLexEgivenF=1.64635241505 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 3-2 4-2