summaryrefslogtreecommitdiff
path: root/example/1889/grammar
blob: 9ebb49387abe6ec62cdc21e0c5338ccb62225f61 (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
[X] ||| [X,1] manches ||| [X,1] , many ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=2.17982358008 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] . and ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=3.44555612915 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] in some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.28435809622 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] : a lot ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=5.85853751916 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] manches ||| [X,1] out by some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=5.73864274669 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] manches ||| [X,1] out many ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=3.80495814066 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] a few ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=3.40887961401 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] a lot ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=3.21699408777 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] a certain ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73503970503 MaxLexEgivenF=3.58497087306 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] some ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=0.735667568286 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] some of the things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=4.17953018193 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-4
[X] ||| [X,1] manches ||| [X,1] some have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.43981808513 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] manches ||| [X,1] some things ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.64047753567 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] manches ||| [X,1] might ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.95427467821 MaxLexEgivenF=2.22702926212 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] were some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.59472004511 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] manches ||| [X,1] there is some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=4.042874288 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] manches ||| [X,1] many ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=0.996580340742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] many areas ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=3.09867086625 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] manches ||| [X,1] number of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=4.66874419171 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] much ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=3.32214819904 MaxLexEgivenF=1.19900053852 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] quite a few ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=5.51097013952 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] manches ||| [X,1] quite a lot ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=5.31908461328 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] manches ||| [X,1] something ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] things ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=0.904809967386 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] overlook some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=5.99070045278 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches ||| [X,1] certain ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73503970503 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] booked ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45560611258 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] sometimes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90176472601 MaxLexEgivenF=1.50003053418 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] digress ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7075701761 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches ||| [X,1] manches ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.698970004336 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches ||| be [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.12640579987 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| some [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=0.735667568286 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| some of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.08695248558 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| some elements [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=4.77224275372 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| more had we been [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.04489238347 MaxLexEgivenF=10.178152176 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| many things [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.90139030813 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] manches ||| deal [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.3907781521 MaxLexEgivenF=1.7499080074 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| lot [X,1] things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=2.46283244855 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| [X,1] manches ||| lot of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=2.90930739846 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] manches ||| much [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.32214819904 MaxLexEgivenF=1.19900053852 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| something [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches ||| things [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=0.904809967386 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] manches ||| sometimes [X,1] some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90176472601 MaxLexEgivenF=2.23569810247 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| [X,1] manches [X,2] ||| [X,2] [X,1] things ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=0.904809967386 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,2] a lot [X,1] things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=4.12180405516 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-4
[X] ||| [X,1] manches [X,2] ||| [X,2] many things [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.90139030813 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] [X,2] in some areas ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=4.38644862173 IsSingletonF=0 IsSingletonFE=1 ||| 1-3 1-4
[X] ||| [X,1] manches [X,2] ||| [X,1] [X,2] be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.12640579987 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] [X,2] many ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=0.996580340742 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] [X,2] something ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] , many [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=2.17982358008 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] . and [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=3.44555612915 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] : a lot of this [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=9.46657579602 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] manches [X,2] ||| [X,1] out by some elements [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=9.77521793212 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] manches [X,2] ||| [X,1] out many [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=3.80495814066 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] a few [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=3.40887961401 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] a lot [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=3.21699408777 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] a lot of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=4.56827900506 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] a certain amount is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73503970503 MaxLexEgivenF=9.1943816444 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] some [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=0.735667568286 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] some [X,2] were ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.59472004511 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] manches [X,2] ||| [X,1] some of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.08695248558 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] some things [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.64047753567 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] some things [X,2] done ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=3.86750679779 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-4
[X] ||| [X,1] manches [X,2] ||| [X,1] some things went far [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=9.20022198925 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] some types of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=6.10964820885 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] might be able [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.95427467821 MaxLexEgivenF=7.49508203466 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] were some [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.59472004511 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] there is some [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=4.042874288 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] manches [X,2] ||| [X,1] many [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=0.996580340742 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] many a [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=2.65555194735 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] many areas of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=4.44995578355 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] many respects [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=5.74470750594 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] number of [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=4.66874419171 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] much [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.32214819904 MaxLexEgivenF=1.19900053852 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] quite a few [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=5.51097013952 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] manches [X,2] ||| [X,1] quite a lot [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=5.31908461328 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] manches [X,2] ||| [X,1] something [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] overlook some of the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=8.52975309904 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] manches [X,2] ||| [X,1] certain [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73503970503 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] sometimes he gets [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90176472601 MaxLexEgivenF=7.22774906489 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] digress from [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7075701761 MaxLexEgivenF=5.02176767768 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| [X,1] manches [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.698970004336 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] manches [X,2] ||| of [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=1.35128491729 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| some of [X,1] is going [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=7.38943612146 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| some of the drivers ' [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=10.4029002214 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| few [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=1.7499080074 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| deal [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.3907781521 MaxLexEgivenF=1.7499080074 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| lot of [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=2.90930739846 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] manches [X,2] ||| much [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.32214819904 MaxLexEgivenF=1.19900053852 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| something [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| things [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=0.904809967386 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] manches [X,2] ||| sometimes [X,1] some [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90176472601 MaxLexEgivenF=2.23569810247 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| manches ||| in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=1.54869052793 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=1.35128491729 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| and ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=1.5839749497 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| a great deal ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.3907781521 MaxLexEgivenF=5.51097013952 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| manches ||| a lot ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=3.21699408777 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| are some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.39842539997 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| be ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=5.12640579987 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| some ||| EgivenFCoherent=0.833668578233 SampleCountF=2.47856649559 CountEF=1.65321251378 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=0.735667568286 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| some of the things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=4.17953018193 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-3
[X] ||| manches ||| some have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.43981808513 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| some areas ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.8377580938 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| manches ||| some things ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.64047753567 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| manches ||| some things are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=3.30323536735 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| manches ||| some things have been ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=5.74774857369 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| manches ||| some certain aspects have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=6.46790787709 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| manches ||| few ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=1.7499080074 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| few things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=2.65471797479 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| might ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.95427467821 MaxLexEgivenF=2.22702926212 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| were some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.59472004511 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| there ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.2241551051 MaxLexEgivenF=1.47370159546 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| there are a lot of things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=8.60954839959 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3 0-4 0-5
[X] ||| manches ||| there are many things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=5.03784973527 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| manches ||| there are things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=4.04126939453 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| manches ||| more ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=5.0719648098 MaxLexEgivenF=2.40312052118 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| many ||| EgivenFCoherent=1.17609125906 SampleCountF=2.47856649559 CountEF=1.32221929473 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=0.996580340742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| many areas ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=3.09867086625 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| many things ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.90139030813 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| manches ||| many aspects ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=3.09867086625 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| great deal ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.3907781521 MaxLexEgivenF=3.85199853291 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| deal ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.3907781521 MaxLexEgivenF=1.7499080074 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| lot ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=1.55802248116 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| lot of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=2.90930739846 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| helpful ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.82112032378 MaxLexEgivenF=2.40312052118 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| much ||| EgivenFCoherent=1.24667233334 SampleCountF=2.47856649559 CountEF=1.2552725051 MaxLexFgivenE=3.32214819904 MaxLexEgivenF=1.19900053852 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| much room ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.32214819904 MaxLexEgivenF=3.42602980064 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| quite a few ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=5.51097013952 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 0-2
[X] ||| manches ||| quite a lot ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=5.31908461328 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| manches ||| something ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| simply ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.11247093934 MaxLexEgivenF=2.40312052118 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| things ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=0.904809967386 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| things have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=2.60896048423 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| perhaps ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.96404738234 MaxLexEgivenF=2.40312052118 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| certain ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.73503970503 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches ||| certain things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=2.83080923384 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| certain things have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=4.53495975068 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| manches ||| booked ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.45560611258 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| sometimes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90176472601 MaxLexEgivenF=1.50003053418 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| sometimes things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=2.40484050157 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches ||| digress ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7075701761 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches ||| manches ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.698970004336 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| [X,1] in some areas ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=4.38644862173 IsSingletonF=0 IsSingletonFE=1 ||| 0-2 0-3
[X] ||| manches [X,1] ||| [X,1] a great deal ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.3907781521 MaxLexEgivenF=5.51097013952 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2 0-3
[X] ||| manches [X,1] ||| [X,1] be ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.12640579987 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| manches [X,1] ||| [X,1] some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=0.735667568286 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| manches [X,1] ||| [X,1] many ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=0.996580340742 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| manches [X,1] ||| [X,1] many things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.90139030813 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2
[X] ||| manches [X,1] ||| [X,1] quite a few ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=5.51097013952 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2 0-3
[X] ||| manches [X,1] ||| [X,1] something ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| manches [X,1] ||| [X,1] things ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=0.904809967386 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| manches [X,1] ||| of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=1.35128491729 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| and [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.38985575769 MaxLexEgivenF=1.5839749497 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| be [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.12640579987 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| have [X,1] been ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.75773376639 MaxLexEgivenF=4.10727103802 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| manches [X,1] ||| some [X,1] ||| EgivenFCoherent=1.27300127206 SampleCountF=2.47856649559 CountEF=1.23044892138 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=0.735667568286 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| some [X,1] were ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.59472004511 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| manches [X,1] ||| some of [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.08695248558 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| some of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=3.27472021455 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| some of the drivers ' [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=10.4029002214 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| some more [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=3.13878808946 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| some things [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=1.64047753567 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| manches [X,1] ||| some things [X,1] done ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=3.86750679779 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-3
[X] ||| manches [X,1] ||| some things are [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=3.30323536735 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| manches [X,1] ||| some things went far [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=9.20022198925 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches [X,1] ||| some elements [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=4.77224275372 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| some certain aspects have [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=6.46790787709 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| manches [X,1] ||| some types of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=6.10964820885 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| few [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=1.7499080074 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| might be able [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.95427467821 MaxLexEgivenF=7.49508203466 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| were some [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=2.59472004511 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches [X,1] ||| there are a lot of things [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=8.60954839959 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3 0-4 0-5
[X] ||| manches [X,1] ||| there are many things [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=5.03784973527 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3
[X] ||| manches [X,1] ||| there are things [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=4.04126939453 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| manches [X,1] ||| there were [X,1] some ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.11957868328 MaxLexEgivenF=4.06842164057 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-3
[X] ||| manches [X,1] ||| more [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.0719648098 MaxLexEgivenF=2.40312052118 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| many [X,1] ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=0.996580340742 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| many a [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=2.65555194735 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| many areas of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=4.44995578355 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches [X,1] ||| many larger [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=5.2362068942 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| many aspects [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=3.09867086625 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| manches [X,1] ||| many respects [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.34621486204 MaxLexEgivenF=5.74470750594 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| lot [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=1.55802248116 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| lot of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=2.90930739846 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| lot of this [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=5.16606075802 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| much [X,1] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=3.32214819904 MaxLexEgivenF=1.19900053852 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| quite a few [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.70146244453 MaxLexEgivenF=5.51097013952 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| manches [X,1] ||| quite a lot [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13465514228 MaxLexEgivenF=5.31908461328 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| manches [X,1] ||| something [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=2.0051805125 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| something of an [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.81196355238 MaxLexEgivenF=5.80725157784 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| things [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=0.904809967386 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| things have [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.66578938569 MaxLexEgivenF=2.60896048423 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| certain [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.73503970503 MaxLexEgivenF=1.92599926646 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| manches [X,1] ||| certain amount is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73503970503 MaxLexEgivenF=7.53541003779 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| sometimes he gets [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.90176472601 MaxLexEgivenF=7.22774906489 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| digress from [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.7075701761 MaxLexEgivenF=5.02176767768 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| manches [X,1] ||| manches [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.698970004336 MaxLexEgivenF=2.70415051684 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] hielt ||| [X,1] , ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=1.18324323934 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] , made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67962773512 MaxLexEgivenF=3.18949529071 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] hielt ||| [X,1] , held ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=2.32320795162 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt ||| [X,1] so as ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=4.92603107896 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt ||| [X,1] of 11 held ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=6.55672981967 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt ||| [X,1] didn ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.00785441876 MaxLexEgivenF=2.70522205571 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] highly popular note of self loathing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50514997832 MaxLexEgivenF=20.2984888364 IsSingletonF=0 IsSingletonFE=1 ||| 1-6
[X] ||| [X,1] hielt ||| [X,1] has found ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.18021645068 MaxLexEgivenF=4.4640600467 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt ||| [X,1] has seen fit ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.75773334491 MaxLexEgivenF=8.52496824401 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt ||| [X,1] held ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] held his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=2.91576784228 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] hielt ||| [X,1] kept ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.04262069329 MaxLexEgivenF=1.52195221202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] continued its ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80704277017 MaxLexEgivenF=4.57317140891 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] hielt ||| [X,1] did ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=1.40965495574 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] did not ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=3.97537075779 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] hielt ||| [X,1] delivered ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52167638592 MaxLexEgivenF=2.07683312566 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] had ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.42043630508 MaxLexEgivenF=1.77580312999 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] saw ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69749759137 MaxLexEgivenF=2.19333869473 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] career spanning four ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.54777470539 MaxLexEgivenF=9.31978614977 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] hielt ||| [X,1] gave ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.35771710095 MaxLexEgivenF=1.76321400268 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] stayed ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.53135116458 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] considered ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=1.39346819465 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] regarded ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60552052344 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] thought ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=1.34349421969 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] believed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=2.05200954193 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] deemed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96090487567 MaxLexEgivenF=1.94555421102 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] felt ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt ||| [X,1] hielt ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.301029995664 MaxLexEgivenF=3.00625205137 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt ||| was [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.290638525 MaxLexEgivenF=1.05686204472 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] hielt ||| 's [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.64418640881 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| held [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] hielt ||| were with [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.59423712139 MaxLexEgivenF=3.82087267423 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| later occasion , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.6099357351 MaxLexEgivenF=8.12673558535 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| kept [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.04262069329 MaxLexEgivenF=1.52195221202 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| delivered [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52167638592 MaxLexEgivenF=2.07683312566 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| holding [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.40057910214 MaxLexEgivenF=1.9850627523 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| holding a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.40057910214 MaxLexEgivenF=3.64403435891 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| regarded as true folk [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60552052344 MaxLexEgivenF=12.9547351342 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| his [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.56471826834 MaxLexEgivenF=1.77580312999 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| thought [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=1.34349421969 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] hielt ||| found [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.18021645068 MaxLexEgivenF=2.02852844608 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| spent [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.08380112454 MaxLexEgivenF=2.52913079665 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| believed we would [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=7.21766348642 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| felt [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt ||| felt it [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=3.52289713647 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| [X,2] [X,1] held ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,2] [X,1] considered ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=1.39346819465 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,2] [X,1] felt ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,2] held [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.290638525 MaxLexEgivenF=1.05686204472 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] was believed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=3.10887158665 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=2.2738731037 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] held ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] saw ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69749759137 MaxLexEgivenF=2.19333869473 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] stayed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53135116458 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] considered ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=1.39346819465 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] considered it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=3.42199664073 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] stopped ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84182033025 MaxLexEgivenF=1.72749845042 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] [X,2] lasted ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.98227123304 MaxLexEgivenF=2.35303953759 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=1.18324323934 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.290638525 MaxLexEgivenF=2.24010528406 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] was holding ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.40057910214 MaxLexEgivenF=4.22516803636 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3 1-4
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] was considered ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=3.63357347871 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3 1-4
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67962773512 MaxLexEgivenF=3.18949529071 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] held ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=2.32320795162 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] delivered ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52167638592 MaxLexEgivenF=3.26007636499 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] gave ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.35771710095 MaxLexEgivenF=2.94645724202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] , [X,2] felt ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=2.67761192973 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] , made [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67962773512 MaxLexEgivenF=3.18949529071 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] , held [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=2.32320795162 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] so as [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=4.92603107896 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] of 11 held [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=6.55672981967 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] but [X,2] thought ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=4.17075257105 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] has found [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.18021645068 MaxLexEgivenF=4.4640600467 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] hielt [X,2] ||| [X,1] has seen fit [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.75773334491 MaxLexEgivenF=8.52496824401 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] held [X,2] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] kept [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.04262069329 MaxLexEgivenF=1.52195221202 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] did [X,2] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=1.40965495574 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] did not [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=3.97537075779 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] did execute [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=4.41590700711 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] delivered [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52167638592 MaxLexEgivenF=2.07683312566 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] had a [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.42043630508 MaxLexEgivenF=3.4347747366 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] saw [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69749759137 MaxLexEgivenF=2.19333869473 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] career spanning four [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.54777470539 MaxLexEgivenF=9.31978614977 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] gave [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.35771710095 MaxLexEgivenF=1.76321400268 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] stayed [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.53135116458 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] considered [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=1.39346819465 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] regarded [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60552052344 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] thought [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=1.34349421969 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] believed [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=2.05200954193 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] deemed [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96090487567 MaxLexEgivenF=1.94555421102 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] lived a life of [X,2] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=12.0875440842 IsSingletonF=0 IsSingletonFE=1 ||| 1-6
[X] ||| [X,1] hielt [X,2] ||| [X,1] felt [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| [X,1] felt [X,2] was ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=2.55123073511 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] hielt [X,2] ||| [X,1] hielt [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.301029995664 MaxLexEgivenF=3.00625205137 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] hielt [X,2] ||| was [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.290638525 MaxLexEgivenF=1.05686204472 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| held [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| were with [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.59423712139 MaxLexEgivenF=3.82087267423 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| kept [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.04262069329 MaxLexEgivenF=1.52195221202 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| year later , in 1993 [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.6099357351 MaxLexEgivenF=12.7211406489 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| his [X,1] for example [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.56471826834 MaxLexEgivenF=7.25402284868 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| thought [X,1] [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=1.34349421969 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| found [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.18021645068 MaxLexEgivenF=2.02852844608 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| believed we would [X,1] exercise [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=11.3989101568 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] hielt [X,2] ||| stopped [X,2] l 'aquila [X,1] decided ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84182033025 MaxLexEgivenF=14.3651951966 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-5
[X] ||| [X,1] hielt [X,2] ||| felt [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| hielt ||| , ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=1.18324323934 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| , made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67962773512 MaxLexEgivenF=3.18949529071 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt ||| in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=1.54869052793 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| " ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69417587673 MaxLexEgivenF=2.22837858336 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| was ||| EgivenFCoherent=1.43572856956 SampleCountF=2.47856649559 CountEF=1.07918124605 MaxLexFgivenE=3.290638525 MaxLexEgivenF=1.05686204472 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| was kept ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.04262069329 MaxLexEgivenF=2.57881425675 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt ||| was believed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=3.10887158665 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt ||| 's ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.64418640881 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| him ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65847249026 MaxLexEgivenF=2.52913079665 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| didn ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.00785441876 MaxLexEgivenF=2.70522205571 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| when ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=2.95474745709 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| as ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=2.06289667726 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=2.2738731037 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| held ||| EgivenFCoherent=1.19836765377 SampleCountF=2.47856649559 CountEF=1.30102999566 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| held his ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=2.91576784228 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt ||| he ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40563090089 MaxLexEgivenF=1.62604080966 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| were ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.59423712139 MaxLexEgivenF=1.80213206871 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| later ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.6099357351 MaxLexEgivenF=2.6083120427 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| kept ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.04262069329 MaxLexEgivenF=1.52195221202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| said ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| year ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.2287082598 MaxLexEgivenF=2.6083120427 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| continued ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80704277017 MaxLexEgivenF=2.26588936188 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| continued its ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80704277017 MaxLexEgivenF=4.57317140891 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt ||| did ||| EgivenFCoherent=1.30102999566 SampleCountF=2.47856649559 CountEF=1.20411998266 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=1.40965495574 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| did not ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=3.97537075779 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt ||| delivered ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.52167638592 MaxLexEgivenF=2.07683312566 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| fit ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.75773334491 MaxLexEgivenF=2.35303953759 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| had ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.42043630508 MaxLexEgivenF=1.77580312999 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| saw ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.69749759137 MaxLexEgivenF=2.19333869473 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| career spanning four ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.54777470539 MaxLexEgivenF=9.31978614977 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| hielt ||| gave ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.35771710095 MaxLexEgivenF=1.76321400268 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| took ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.46716396597 MaxLexEgivenF=2.52913079665 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| september ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.15048012227 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| holding ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.40057910214 MaxLexEgivenF=1.9850627523 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| stayed ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.53135116458 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| considered ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=1.39346819465 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| considered it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=3.42199664073 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt ||| regarded ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.60552052344 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| his ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=3.56471826834 MaxLexEgivenF=1.77580312999 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| thought ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=1.34349421969 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| found ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.18021645068 MaxLexEgivenF=2.02852844608 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| stood ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68191929291 MaxLexEgivenF=2.70522205571 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| spent ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.08380112454 MaxLexEgivenF=2.52913079665 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| believed ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=2.05200954193 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| deemed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96090487567 MaxLexEgivenF=1.94555421102 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| soviet ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.14291064041 MaxLexEgivenF=2.83016079231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| her ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.84491187391 MaxLexEgivenF=2.52913079665 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| stopped ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84182033025 MaxLexEgivenF=1.72749845042 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| felt ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt ||| although ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.46824391465 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| army ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73838412351 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| retained ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.25224605047 MaxLexEgivenF=2.40419206004 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| stories ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.47596158919 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| persisted ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46538285145 MaxLexEgivenF=2.6083120427 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| lasted ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.98227123304 MaxLexEgivenF=2.35303953759 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| speech ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.6152133348 MaxLexEgivenF=2.00625205137 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| peter ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.22582599146 MaxLexEgivenF=3.00625205137 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| loathing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50514997832 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt ||| hielt ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.301029995664 MaxLexEgivenF=3.00625205137 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| [X,1] , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=1.18324323934 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] was ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.290638525 MaxLexEgivenF=1.05686204472 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] was believed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=3.10887158665 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2
[X] ||| hielt [X,1] ||| [X,1] people 's liberation army ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73838412351 MaxLexEgivenF=13.8017118454 IsSingletonF=0 IsSingletonFE=1 ||| 0-4
[X] ||| hielt [X,1] ||| [X,1] at ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=2.2738731037 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] held ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] delivered ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52167638592 MaxLexEgivenF=2.07683312566 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] saw ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69749759137 MaxLexEgivenF=2.19333869473 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] stayed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53135116458 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] considered ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=1.39346819465 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] considered it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=3.42199664073 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2
[X] ||| hielt [X,1] ||| [X,1] thought ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=1.34349421969 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] stopped ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84182033025 MaxLexEgivenF=1.72749845042 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] felt ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] lasted ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.98227123304 MaxLexEgivenF=2.35303953759 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| hielt [X,1] ||| [X,1] indulgence , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=6.78150379929 IsSingletonF=0 IsSingletonFE=1 ||| 0-2
[X] ||| hielt [X,1] ||| , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=1.18324323934 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| , [X,1] was holding ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.40057910214 MaxLexEgivenF=4.22516803636 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 0-3
[X] ||| hielt [X,1] ||| , [X,1] was considered ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=3.63357347871 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 0-3
[X] ||| hielt [X,1] ||| , [X,1] made ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67962773512 MaxLexEgivenF=3.18949529071 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| hielt [X,1] ||| , [X,1] held ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=2.32320795162 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| hielt [X,1] ||| , [X,1] gave ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.35771710095 MaxLexEgivenF=2.94645724202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-2
[X] ||| hielt [X,1] ||| , made [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.67962773512 MaxLexEgivenF=3.18949529071 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| hielt [X,1] ||| was quoted [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.290638525 MaxLexEgivenF=5.93877850428 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| as [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.69978814815 MaxLexEgivenF=2.06289667726 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| held [X,1] ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=2.08959274714 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| kept [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.04262069329 MaxLexEgivenF=1.52195221202 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| year later , in 1993 [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.6099357351 MaxLexEgivenF=12.7211406489 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| continued [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.80704277017 MaxLexEgivenF=2.26588936188 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| did [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=1.40965495574 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| did not [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=3.97537075779 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| did execute [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.68951117022 MaxLexEgivenF=4.41590700711 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| delivered [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.52167638592 MaxLexEgivenF=2.07683312566 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| fit [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.75773334491 MaxLexEgivenF=2.35303953759 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| had a [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.42043630508 MaxLexEgivenF=3.4347747366 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| saw [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.69749759137 MaxLexEgivenF=2.19333869473 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| career spanning four [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.54777470539 MaxLexEgivenF=9.31978614977 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| hielt [X,1] ||| gave [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.35771710095 MaxLexEgivenF=1.76321400268 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| took the shoot [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.46716396597 MaxLexEgivenF=8.66096289192 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| stayed [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.53135116458 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| considered [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.26530687723 MaxLexEgivenF=1.39346819465 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| regarded [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.60552052344 MaxLexEgivenF=2.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| thought [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.07459386412 MaxLexEgivenF=1.34349421969 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| found [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.18021645068 MaxLexEgivenF=2.02852844608 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| believed [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24865429909 MaxLexEgivenF=2.05200954193 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| deemed [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96090487567 MaxLexEgivenF=1.94555421102 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| felt [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=1.49436869039 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| hielt [X,1] ||| felt [X,1] was ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.92650074606 MaxLexEgivenF=2.55123073511 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-2
[X] ||| hielt [X,1] ||| although [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.46824391465 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| peter [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.22582599146 MaxLexEgivenF=3.00625205137 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| loathing [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50514997832 MaxLexEgivenF=3.30728204703 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| hielt [X,1] ||| hielt [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.301029995664 MaxLexEgivenF=3.00625205137 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] harmonia ||| [X,1] harmony ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=2.26795353686 MaxLexEgivenF=0.893946607552 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] harmonia ||| [X,1] harmonia ||| EgivenFCoherent=0.698970004336 SampleCountF=1.85125834872 CountEF=1.17609125906 MaxLexFgivenE=0.235763264151 MaxLexEgivenF=0.33965939802 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] harmonia ||| harmonia [X,1] ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=0.235763264151 MaxLexEgivenF=0.33965939802 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] harmonia ||| harmonia [X,1] and ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=0.235763264151 MaxLexEgivenF=1.40969726463 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| [X,1] harmonia ||| barocklieder [X,1] harmonia ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=0 MaxLexEgivenF=2.31278725162 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| [X,1] harmonia [X,2] ||| [X,2] [X,1] harmonia ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=0.235763264151 MaxLexEgivenF=0.33965939802 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] harmonia [X,2] ||| [X,1] harmony [X,2] ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=2.26795353686 MaxLexEgivenF=0.893946607552 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] harmonia [X,2] ||| [X,1] harmonia [X,2] ||| EgivenFCoherent=0.845098040014 SampleCountF=1.85125834872 CountEF=1.04139268516 MaxLexFgivenE=0.235763264151 MaxLexEgivenF=0.33965939802 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] harmonia [X,2] ||| barocklieder [X,1] harmonia [X,2] ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=0 MaxLexEgivenF=2.31278725162 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| harmonia ||| harmony ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=2.26795353686 MaxLexEgivenF=0.893946607552 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| harmonia ||| neu ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=2.47275644932 MaxLexEgivenF=1.9731278536 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| harmonia ||| harmonia ||| EgivenFCoherent=0.397940008672 SampleCountF=1.85125834872 CountEF=1.4623979979 MaxLexFgivenE=0.235763264151 MaxLexEgivenF=0.33965939802 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| harmonia ||| weser ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=1.79934054945 MaxLexEgivenF=1.9731278536 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| harmonia ||| 2004- ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=0.301029995664 MaxLexEgivenF=1.9731278536 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| harmonia [X,1] ||| harmony [X,1] ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=2.26795353686 MaxLexEgivenF=0.893946607552 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| harmonia [X,1] ||| harmonia [X,1] ||| EgivenFCoherent=0.614649118636 SampleCountF=1.85125834872 CountEF=1.2552725051 MaxLexFgivenE=0.235763264151 MaxLexEgivenF=0.33965939802 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| harmonia [X,1] ||| weser [X,1] ||| EgivenFCoherent=1.84509804001 SampleCountF=1.85125834872 CountEF=0.301029995664 MaxLexFgivenE=1.79934054945 MaxLexEgivenF=1.9731278536 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] davon ||| [X,1] of ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.89598054351 MaxLexEgivenF=0.922158219448 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] of that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=2.18464578531 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] davon ||| [X,1] of this , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=3.5489166233 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] davon ||| [X,1] of these ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.5052722287 MaxLexEgivenF=2.78513792482 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] davon ||| [X,1] of them ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=2.32721513214 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] davon ||| [X,1] that is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=3.09599269012 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] davon ||| [X,1] from which ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.9271295824 MaxLexEgivenF=4.06896054899 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] davon ||| [X,1] to ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=1.44467588759 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] we ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.34876769624 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] including ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.42934219317 MaxLexEgivenF=2.32171537949 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] as ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.06289667726 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.65360057745 MaxLexEgivenF=1.88546207328 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] been ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.64607126946 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] them ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=1.40505691269 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] think ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.25632149186 MaxLexEgivenF=3.07579377145 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] away ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30665422426 MaxLexEgivenF=2.44590468626 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] believe ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.96251823003 MaxLexEgivenF=1.73745448052 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] davon ||| [X,1] thereof ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.811293860116 MaxLexEgivenF=2.21282100767 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon ||| of the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89598054351 MaxLexEgivenF=2.10992594842 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon ||| the [X,1] will ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.27205525289 MaxLexEgivenF=3.37508466897 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| [X,1] davon ||| that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=1.26248756586 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon ||| trust in [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.97093919819 MaxLexEgivenF=4.19692182411 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon ||| it [X,1] ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.6751450824 MaxLexEgivenF=1.36052797877 IsSingletonF=0 IsSingletonFE=0 ||| 1-0
[X] ||| [X,1] davon ||| are [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13345947008 MaxLexEgivenF=1.83275572277 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon ||| have [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.2846171273 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon ||| some of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61971430142 MaxLexEgivenF=3.06108357753 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] davon ||| discouraged [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16879202031 MaxLexEgivenF=3.30624269283 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon [X,2] ||| [X,2] [X,1] of them ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=2.32721513214 IsSingletonF=0 IsSingletonFE=0 ||| 1-2 1-3
[X] ||| [X,1] davon [X,2] ||| [X,2] [X,1] one ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.65360057745 MaxLexEgivenF=1.88546207328 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] davon [X,2] ||| [X,2] then decided that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=8.53122862677 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] davon [X,2] ||| [X,1] [X,2] of them ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=2.32721513214 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3
[X] ||| [X,1] davon [X,2] ||| [X,1] [X,2] of them are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=4.15997085491 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 1-4
[X] ||| [X,1] davon [X,2] ||| [X,1] [X,2] it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.6751450824 MaxLexEgivenF=1.36052797877 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] davon [X,2] ||| [X,1] of that [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=2.18464578531 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] davon [X,2] ||| [X,1] of this , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=3.5489166233 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3
[X] ||| [X,1] davon [X,2] ||| [X,1] of these instruments [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.5052722287 MaxLexEgivenF=7.04747004806 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] davon [X,2] ||| [X,1] of them [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=2.32721513214 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2
[X] ||| [X,1] davon [X,2] ||| [X,1] that is [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=3.09599269012 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] davon [X,2] ||| [X,1] from which , however , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.9271295824 MaxLexEgivenF=9.51124079912 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] davon [X,2] ||| [X,1] we [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.34876769624 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] including [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.42934219317 MaxLexEgivenF=2.32171537949 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] as sliding [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=7.13916571284 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] been [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.64607126946 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] should like [X,2] believe ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96251823003 MaxLexEgivenF=7.5755148132 IsSingletonF=0 IsSingletonFE=1 ||| 1-4
[X] ||| [X,1] davon [X,2] ||| [X,1] them suited [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=5.98002300958 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] think [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.25632149186 MaxLexEgivenF=3.07579377145 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] away [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30665422426 MaxLexEgivenF=2.44590468626 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] believe [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.96251823003 MaxLexEgivenF=1.73745448052 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| [X,1] thereof , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.811293860116 MaxLexEgivenF=3.39606424701 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] davon [X,2] ||| of the [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89598054351 MaxLexEgivenF=2.10992594842 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon [X,2] ||| the [X,1] will [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.27205525289 MaxLexEgivenF=3.37508466897 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-2
[X] ||| [X,1] davon [X,2] ||| that [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=1.26248756586 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon [X,2] ||| which is [X,1] [X,2] out ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.33332171384 MaxLexEgivenF=6.8780877504 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 1-4
[X] ||| [X,1] davon [X,2] ||| it [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.6751450824 MaxLexEgivenF=1.36052797877 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon [X,2] ||| are [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13345947008 MaxLexEgivenF=1.83275572277 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon [X,2] ||| this is [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=3.27702028877 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] davon [X,2] ||| have [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.2846171273 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| davon ||| of ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=2.89598054351 MaxLexEgivenF=0.922158219448 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| of that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=2.18464578531 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon ||| of this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=2.36567338396 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon ||| of this , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=3.5489166233 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| davon ||| of these ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.5052722287 MaxLexEgivenF=2.78513792482 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon ||| of them ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=2.32721513214 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| davon ||| of them are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=4.15997085491 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| davon ||| the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=1.18776772897 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| that ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=2.889705333 MaxLexEgivenF=1.26248756586 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| that is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=3.09599269012 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon ||| from ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.9271295824 MaxLexEgivenF=1.83275572277 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| from doing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84621812408 MaxLexEgivenF=5.02505506329 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon ||| to ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=1.44467588759 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| which ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.39514266358 MaxLexEgivenF=2.23620482622 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| we ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.34876769624 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| trust ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.97093919819 MaxLexEgivenF=2.64823129617 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| including ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.42934219317 MaxLexEgivenF=2.32171537949 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| it ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.6751450824 MaxLexEgivenF=1.36052797877 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| as ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.06289667726 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13345947008 MaxLexEgivenF=1.83275572277 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| this ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=1.44351516451 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| one ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.65360057745 MaxLexEgivenF=1.88546207328 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.2846171273 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| been ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.64607126946 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| being ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.54983913934 MaxLexEgivenF=2.19063218116 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| some of ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61971430142 MaxLexEgivenF=3.06108357753 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon ||| these ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.5052722287 MaxLexEgivenF=1.86297970537 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| these , ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.5052722287 MaxLexEgivenF=3.04622294471 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon ||| long ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=3.32946297495 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| not ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.52448731818 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| them ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=1.40505691269 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| think ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.25632149186 MaxLexEgivenF=3.07579377145 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| away ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30665422426 MaxLexEgivenF=2.44590468626 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| believed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.70458625474 MaxLexEgivenF=2.80793213904 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| prevent ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.94328461765 MaxLexEgivenF=2.31060749823 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| believe ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.96251823003 MaxLexEgivenF=1.73745448052 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon ||| thereof ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.811293860116 MaxLexEgivenF=2.21282100767 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon ||| discouraged ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.16879202031 MaxLexEgivenF=3.30624269283 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| [X,1] of them ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=2.32721513214 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2
[X] ||| davon [X,1] ||| [X,1] of them are ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=4.15997085491 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2 0-3
[X] ||| davon [X,1] ||| [X,1] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=1.26248756586 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| davon [X,1] ||| [X,1] from doing ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84621812408 MaxLexEgivenF=5.02505506329 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2
[X] ||| davon [X,1] ||| [X,1] it ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.6751450824 MaxLexEgivenF=1.36052797877 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| davon [X,1] ||| [X,1] then decided that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=8.53122862677 IsSingletonF=0 IsSingletonFE=1 ||| 0-3
[X] ||| davon [X,1] ||| [X,1] prevent ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.94328461765 MaxLexEgivenF=2.31060749823 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| davon [X,1] ||| [X,1] believe ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.96251823003 MaxLexEgivenF=1.73745448052 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| davon [X,1] ||| of [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.89598054351 MaxLexEgivenF=0.922158219448 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon [X,1] ||| of that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=2.18464578531 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon [X,1] ||| of which [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89598054351 MaxLexEgivenF=3.15836304567 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| of this , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=3.5489166233 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2
[X] ||| davon [X,1] ||| of these instruments [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.5052722287 MaxLexEgivenF=7.04747004806 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon [X,1] ||| of them [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=2.32721513214 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1
[X] ||| davon [X,1] ||| that [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.889705333 MaxLexEgivenF=1.26248756586 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon [X,1] ||| that is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.889705333 MaxLexEgivenF=3.09599269012 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| davon [X,1] ||| to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=1.44467588759 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| which , however , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.39514266358 MaxLexEgivenF=7.67848507635 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| we [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.34876769624 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| trust your [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.97093919819 MaxLexEgivenF=5.34832657777 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| including [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.42934219317 MaxLexEgivenF=2.32171537949 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon [X,1] ||| as sliding [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=7.13916571284 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| this is [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.77418642954 MaxLexEgivenF=3.27702028877 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| one [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.65360057745 MaxLexEgivenF=1.88546207328 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| been [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.58911876175 MaxLexEgivenF=2.64607126946 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| them suited [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84026129065 MaxLexEgivenF=5.98002300958 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| think [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.25632149186 MaxLexEgivenF=3.07579377145 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| away [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.30665422426 MaxLexEgivenF=2.44590468626 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| davon [X,1] ||| believe [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.96251823003 MaxLexEgivenF=1.73745448052 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| davon [X,1] ||| thereof , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.811293860116 MaxLexEgivenF=3.39606424701 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] fest ||| [X,1] , particulates ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59476075259 MaxLexEgivenF=4.88624785978 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] fest ||| [X,1] in solid ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59629713396 MaxLexEgivenF=3.68742371794 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] fest ||| [X,1] the ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.18776772897 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] the playback ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53466057583 MaxLexEgivenF=5.06686360847 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest ||| [X,1] the 65th venice film festival ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.30813460431 MaxLexEgivenF=17.5349163971 IsSingletonF=0 IsSingletonFE=1 ||| 1-5
[X] ||| [X,1] fest ||| [X,1] that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.19666570505 MaxLexEgivenF=1.14230112458 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] states ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.91112644524 MaxLexEgivenF=1.94712976477 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] can see ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24394572477 MaxLexEgivenF=4.09759335047 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] fest ||| [X,1] is required to have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=9.30495894401 IsSingletonF=0 IsSingletonFE=1 ||| 1-4
[X] ||| [X,1] fest ||| [X,1] stated ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00948020141 MaxLexEgivenF=2.24060662255 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] were divided into ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=10.366678902 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] fest ||| [X,1] notice ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81100956099 MaxLexEgivenF=2.1715257034 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] see ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=2.24394572477 MaxLexEgivenF=1.53964443819 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] gained a firm ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.57636723651 MaxLexEgivenF=7.97676699079 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] fest ||| [X,1] clear ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.20480033488 MaxLexEgivenF=1.71030385919 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] confirm ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.58300974481 MaxLexEgivenF=3.10094462912 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] hold firmly ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=4.00262177837 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest ||| [X,1] firm ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.57636723651 MaxLexEgivenF=1.92970587286 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] notes ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.50991769659 MaxLexEgivenF=1.87692981774 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] firmly ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=1.32764588153 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] found ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35859950651 MaxLexEgivenF=2.07975533005 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] event ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.87566135456 MaxLexEgivenF=2.74876211101 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] noticed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=2.36058193962 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] noticed that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=3.5028830642 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest ||| [X,1] noticed is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=4.19408706388 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest ||| [X,1] finds ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82385159317 MaxLexEgivenF=2.60034227855 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] festival ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=1.30813460431 MaxLexEgivenF=1.59466514566 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] hard ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.50561951411 MaxLexEgivenF=2.46412253153 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] prevent the occurrence ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38321675185 MaxLexEgivenF=9.15106456997 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] fest ||| [X,1] realise ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82453396917 MaxLexEgivenF=2.40927386352 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] solid ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.59629713396 MaxLexEgivenF=2.13873319001 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] celebration ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.1686417714 MaxLexEgivenF=2.18889979947 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] declared ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51760187553 MaxLexEgivenF=3.06618252286 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] permanently ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.93449845124 MaxLexEgivenF=2.85790658043 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] festivities ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.36258527851 MaxLexEgivenF=2.83770319434 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] fest ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.429197702402 MaxLexEgivenF=2.35405107246 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] recognises ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41161970596 MaxLexEgivenF=3.40197462478 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] disappointed to note ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.43108804663 MaxLexEgivenF=7.70437115594 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] fest ||| [X,1] fixation ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84818911699 MaxLexEgivenF=3.8790958795 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| [X,1] asserted that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22184874962 MaxLexEgivenF=4.84530574502 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest ||| [X,1] banqueting ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.9669235412 MaxLexEgivenF=3.70300462044 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest ||| the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.18776772897 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest ||| that down to [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89659809873 MaxLexEgivenF=5.10434505565 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] fest ||| states [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.91112644524 MaxLexEgivenF=1.94712976477 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest ||| we [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=2.34876769624 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest ||| is symbolic of [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=8.17658149127 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest ||| firmly in [X,1] hands ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=6.35749228029 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 1-3
[X] ||| [X,1] fest ||| fixed [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51550294619 MaxLexEgivenF=1.78218586649 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest ||| determine [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.16749108729 MaxLexEgivenF=2.64864695812 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest [X,2] ||| [X,2] [X,1] can see ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24394572477 MaxLexEgivenF=4.09759335047 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] fest [X,2] ||| [X,2] [X,1] notice ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81100956099 MaxLexEgivenF=2.1715257034 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] fest [X,2] ||| [X,2] [X,1] prevent the occurrence ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38321675185 MaxLexEgivenF=9.15106456997 IsSingletonF=0 IsSingletonFE=1 ||| 1-4
[X] ||| [X,1] fest [X,2] ||| [X,2] , [X,1] celebration ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.1686417714 MaxLexEgivenF=3.37214303881 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] fest [X,2] ||| [X,1] [X,2] note ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.43108804663 MaxLexEgivenF=1.26790381863 IsSingletonF=0 IsSingletonFE=0 ||| 1-2
[X] ||| [X,1] fest [X,2] ||| [X,1] in solid [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59629713396 MaxLexEgivenF=3.68742371794 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] fest [X,2] ||| [X,1] the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.18776772897 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] the playback [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53466057583 MaxLexEgivenF=5.06686360847 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest [X,2] ||| [X,1] that [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.19666570505 MaxLexEgivenF=1.14230112458 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] is required to have [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=9.30495894401 IsSingletonF=0 IsSingletonFE=1 ||| 1-4
[X] ||| [X,1] fest [X,2] ||| [X,1] stated [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00948020141 MaxLexEgivenF=2.24060662255 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] see [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.24394572477 MaxLexEgivenF=1.53964443819 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] clear [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.20480033488 MaxLexEgivenF=1.71030385919 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] part [X,2] observes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.11683865958 MaxLexEgivenF=5.9489448129 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3
[X] ||| [X,1] fest [X,2] ||| [X,1] confirm [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.58300974481 MaxLexEgivenF=3.10094462912 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] hold firmly [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=4.00262177837 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest [X,2] ||| [X,1] firm [X,2] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.57636723651 MaxLexEgivenF=1.92970587286 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] notes [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50991769659 MaxLexEgivenF=1.87692981774 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] notes the [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50991769659 MaxLexEgivenF=3.06469754671 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] firmly [X,2] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=1.32764588153 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] found [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35859950651 MaxLexEgivenF=2.07975533005 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] noticed [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=2.36058193962 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] festival [X,2] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.30813460431 MaxLexEgivenF=1.59466514566 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] hard [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.50561951411 MaxLexEgivenF=2.46412253153 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] realise [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82453396917 MaxLexEgivenF=2.40927386352 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] solid [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59629713396 MaxLexEgivenF=2.13873319001 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] celebration [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.1686417714 MaxLexEgivenF=2.18889979947 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] declared [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51760187553 MaxLexEgivenF=3.06618252286 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] permanently [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.93449845124 MaxLexEgivenF=2.85790658043 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] festivities [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.36258527851 MaxLexEgivenF=2.83770319434 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] fest [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.429197702402 MaxLexEgivenF=2.35405107246 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] recognises [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41161970596 MaxLexEgivenF=3.40197462478 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] fixation [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84818911699 MaxLexEgivenF=3.8790958795 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| [X,1] asserted that , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22184874962 MaxLexEgivenF=6.02854898436 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest [X,2] ||| [X,1] banqueting [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.9669235412 MaxLexEgivenF=3.70300462044 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest [X,2] ||| that down to [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89659809873 MaxLexEgivenF=5.10434505565 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] fest [X,2] ||| states [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.91112644524 MaxLexEgivenF=1.94712976477 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest [X,2] ||| we still [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65525145875 MaxLexEgivenF=5.29844465003 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1
[X] ||| [X,1] fest [X,2] ||| firmly in [X,1] hands [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=6.35749228029 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 1-3
[X] ||| [X,1] fest [X,2] ||| fixed [X,1] [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.51550294619 MaxLexEgivenF=1.78218586649 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| fest ||| in ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.54869052793 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| @-@ ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.93230835579 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| the ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.18776772897 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| the playback ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53466057583 MaxLexEgivenF=5.06686360847 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| that ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=3.19666570505 MaxLexEgivenF=1.14230112458 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| that down ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89659809873 MaxLexEgivenF=3.65966916806 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| states ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=2.91112644524 MaxLexEgivenF=1.94712976477 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| we ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=2.34876769624 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| we still ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65525145875 MaxLexEgivenF=5.29844465003 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| and ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.5839749497 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| place on ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=5.0488197795 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| time ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=2.78218586649 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| have ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=2.2846171273 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| into ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=2.97395741201 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| held ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.75176010357 MaxLexEgivenF=2.67497589684 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.83350512425 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| stated ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00948020141 MaxLexEgivenF=2.24060662255 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| notice ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.81100956099 MaxLexEgivenF=2.1715257034 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| see ||| EgivenFCoherent=1.52287874528 SampleCountF=2.47856649559 CountEF=1 MaxLexFgivenE=2.24394572477 MaxLexEgivenF=1.53964443819 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| down ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89659809873 MaxLexEgivenF=2.51736804348 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| find ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.56621078943 MaxLexEgivenF=1.8900912638 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| clear ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.20480033488 MaxLexEgivenF=1.71030385919 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| confirm ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.58300974481 MaxLexEgivenF=3.10094462912 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| hold firmly ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=4.00262177837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| strong ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72299933651 MaxLexEgivenF=2.6238233744 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| firm ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.57636723651 MaxLexEgivenF=1.92970587286 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| notes ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.50991769659 MaxLexEgivenF=1.87692981774 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| firmly ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=1.32764588153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| confirmed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76084116126 MaxLexEgivenF=3.22588336572 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| found ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35859950651 MaxLexEgivenF=2.07975533005 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| event ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.87566135456 MaxLexEgivenF=2.74876211101 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| party ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.45908757892 MaxLexEgivenF=2.20699802156 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| noticed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=2.36058193962 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| noticed that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=3.5028830642 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| noticed is ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=4.19408706388 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| finds ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82385159317 MaxLexEgivenF=2.60034227855 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| festival ||| EgivenFCoherent=1.63202321471 SampleCountF=2.47856649559 CountEF=0.903089986992 MaxLexFgivenE=1.30813460431 MaxLexEgivenF=1.59466514566 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| hard ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.50561951411 MaxLexEgivenF=2.46412253153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| note ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.43108804663 MaxLexEgivenF=1.26790381863 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| observed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20824328748 MaxLexEgivenF=2.90137227421 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| determined ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.61184821295 MaxLexEgivenF=2.04658696679 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| fixed ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.51550294619 MaxLexEgivenF=1.78218586649 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| certain ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.50459078366 MaxLexEgivenF=2.1715257034 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| strongly ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.78696971543 MaxLexEgivenF=2.11194001342 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| 31st ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.36548798489 MaxLexEgivenF=3.70300462044 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| installed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.13811314649 MaxLexEgivenF=3.48115587083 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| occurrence ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.38321675185 MaxLexEgivenF=3.70300462044 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| realise ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82453396917 MaxLexEgivenF=2.40927386352 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| stating ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92298481571 MaxLexEgivenF=2.8790958795 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| solid ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.59629713396 MaxLexEgivenF=2.13873319001 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| celebration ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.1686417714 MaxLexEgivenF=2.18889979947 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| determine ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.16749108729 MaxLexEgivenF=2.64864695812 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| declared ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.51760187553 MaxLexEgivenF=3.06618252286 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| grip ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.89512105732 MaxLexEgivenF=3.13873319001 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| permanently ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.93449845124 MaxLexEgivenF=2.85790658043 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest ||| festivities ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.36258527851 MaxLexEgivenF=2.83770319434 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| fest ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.429197702402 MaxLexEgivenF=2.35405107246 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| recognises ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41161970596 MaxLexEgivenF=3.40197462478 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| festa ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.875061263392 MaxLexEgivenF=3.10094462912 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| fixation ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84818911699 MaxLexEgivenF=3.8790958795 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| asserted that ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22184874962 MaxLexEgivenF=4.84530574502 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest ||| mainlanders ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.698970004336 MaxLexEgivenF=3.8790958795 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| moored ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.32735893439 MaxLexEgivenF=3.57806588384 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| particulates ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.59476075259 MaxLexEgivenF=3.70300462044 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest ||| banqueting ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.9669235412 MaxLexEgivenF=3.70300462044 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| [X,1] see ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24394572477 MaxLexEgivenF=1.53964443819 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| fest [X,1] ||| [X,1] clear ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.20480033488 MaxLexEgivenF=1.71030385919 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| fest [X,1] ||| [X,1] confirmed ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.76084116126 MaxLexEgivenF=3.22588336572 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| fest [X,1] ||| [X,1] note ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.43108804663 MaxLexEgivenF=1.26790381863 IsSingletonF=0 IsSingletonFE=0 ||| 0-1
[X] ||| fest [X,1] ||| [X,1] determined ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.61184821295 MaxLexEgivenF=2.04658696679 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| fest [X,1] ||| [X,1] stating ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.92298481571 MaxLexEgivenF=2.8790958795 IsSingletonF=0 IsSingletonFE=1 ||| 0-1
[X] ||| fest [X,1] ||| @-@ stream [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=6.54224661673 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=1.18776772897 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| the playback [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.53466057583 MaxLexEgivenF=5.06686360847 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest [X,1] ||| that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.19666570505 MaxLexEgivenF=1.14230112458 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| states [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.91112644524 MaxLexEgivenF=1.94712976477 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| we still [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65525145875 MaxLexEgivenF=5.29844465003 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest [X,1] ||| time deposits [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.06145247909 MaxLexEgivenF=6.96231174166 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| have [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.66510511955 MaxLexEgivenF=2.2846171273 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| stated [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.00948020141 MaxLexEgivenF=2.24060662255 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| see [X,1] ||| EgivenFCoherent=1.77815125038 SampleCountF=2.47856649559 CountEF=0.778151250384 MaxLexFgivenE=2.24394572477 MaxLexEgivenF=1.53964443819 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| clear [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.20480033488 MaxLexEgivenF=1.71030385919 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| part [X,1] observes ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.11683865958 MaxLexEgivenF=5.9489448129 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2
[X] ||| fest [X,1] ||| confirm [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.58300974481 MaxLexEgivenF=3.10094462912 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| hold firmly [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=4.00262177837 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest [X,1] ||| firm [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.57636723651 MaxLexEgivenF=1.92970587286 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| notes [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50991769659 MaxLexEgivenF=1.87692981774 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| notes the [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.50991769659 MaxLexEgivenF=3.06469754671 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| firmly [X,1] ||| EgivenFCoherent=1.69897000434 SampleCountF=2.47856649559 CountEF=0.845098040014 MaxLexFgivenE=0.808764615322 MaxLexEgivenF=1.32764588153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| found [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35859950651 MaxLexEgivenF=2.07975533005 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| noticed [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.46848159985 MaxLexEgivenF=2.36058193962 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| festival [X,1] ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.30813460431 MaxLexEgivenF=1.59466514566 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| hard [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.50561951411 MaxLexEgivenF=2.46412253153 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| fixed [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.51550294619 MaxLexEgivenF=1.78218586649 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| realise [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.82453396917 MaxLexEgivenF=2.40927386352 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| solid [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=1.59629713396 MaxLexEgivenF=2.13873319001 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| fest [X,1] ||| celebration [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.1686417714 MaxLexEgivenF=2.18889979947 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| declared [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.51760187553 MaxLexEgivenF=3.06618252286 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| permanently [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.93449845124 MaxLexEgivenF=2.85790658043 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| permanently joint [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.93449845124 MaxLexEgivenF=7.05858180261 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| festivities [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.36258527851 MaxLexEgivenF=2.83770319434 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| fest [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.429197702402 MaxLexEgivenF=2.35405107246 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| recognises [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41161970596 MaxLexEgivenF=3.40197462478 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| fixation [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.84818911699 MaxLexEgivenF=3.8790958795 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest [X,1] ||| asserted that , [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.22184874962 MaxLexEgivenF=6.02854898436 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest [X,1] ||| banqueting [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.9669235412 MaxLexEgivenF=3.70300462044 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] . ||| [X,1] , near the springs and the business centre . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=20.753555374 IsSingletonF=0 IsSingletonFE=1 ||| 1-9
[X] ||| [X,1] . ||| [X,1] . ||| EgivenFCoherent=0.21944267985 SampleCountF=2.47856649559 CountEF=2.26007138799 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] . ||| [X,1] in . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=1.59686611522 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| [X,1] ! ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.667733074847 MaxLexEgivenF=2.26453447249 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] . ||| [X,1] ? ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.15708533282 MaxLexEgivenF=2.63849913805 IsSingletonF=0 IsSingletonFE=0 ||| 1-1
[X] ||| [X,1] . ||| [X,1] cost . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=3.88316099355 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| [X,1] and recruitment . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=6.87138915431 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] . ||| [X,1] this purpose . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=6.19232986107 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] . ||| [X,1] you . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=2.43058285766 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| [X,1] about . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=2.89915120086 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| [X,1] found . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=3.57908437381 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| [X,1] effects . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=4.10669454137 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| [X,1] breast implants . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=10.5833804464 IsSingletonF=0 IsSingletonFE=1 ||| 1-3
[X] ||| [X,1] . ||| [X,1] stadium ! ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.667733074847 MaxLexEgivenF=7.14137140651 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] . ||| [X,1] concerned . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=3.76260095955 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| [X,1] solarium . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=5.1463005291 IsSingletonF=0 IsSingletonFE=1 ||| 1-2
[X] ||| [X,1] . ||| ! qu [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.667733074847 MaxLexEgivenF=7.31999500209 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] . [X,2] ||| [X,1] . [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=0.0481755872897 IsSingletonF=1 IsSingletonFE=1 ||| 1-1
[X] ||| . ||| . ||| EgivenFCoherent=0.0826695738934 SampleCountF=2.47856649559 CountEF=2.3961993471 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| . ||| ! ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=0.667733074847 MaxLexEgivenF=2.26453447249 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| . ||| ? ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.15708533282 MaxLexEgivenF=2.63849913805 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| . ||| day ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68300815529 MaxLexEgivenF=3.28387734608 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| . ||| reimbursement . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=5.36814927872 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| . ||| stadium ! ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.667733074847 MaxLexEgivenF=7.14137140651 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| . [X,1] ||| . [X,1] ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=0 ||| 0-0
[X] ||| . [X,1] ||| day [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.68300815529 MaxLexEgivenF=3.28387734608 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] manches [X,2] davon ||| [X,1] [X,2] of this ||| EgivenFCoherent=0.602059991328 SampleCountF=0.698970004336 CountEF=0.301029995664 MaxLexFgivenE=8.16404218723 MaxLexEgivenF=2.36567338396 IsSingletonF=1 IsSingletonFE=1 ||| 3-2 3-3
[X] ||| manches [X,1] davon ||| some [X,1] , of these ||| EgivenFCoherent=0.602059991328 SampleCountF=0.698970004336 CountEF=0.301029995664 MaxLexFgivenE=5.62485091198 MaxLexEgivenF=4.70404873245 IsSingletonF=1 IsSingletonFE=1 ||| 0-0 2-3 2-4
[X] ||| [X,1] manches [X,2] . ||| [X,2] [X,1] things . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=0.952985554676 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-3
[X] ||| [X,1] manches [X,2] . ||| [X,2] a lot [X,1] things . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=4.16997964245 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-4 3-5
[X] ||| [X,1] manches [X,2] . ||| [X,2] much [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.38868082257 MaxLexEgivenF=1.24717612581 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] manches [X,2] . ||| [X,1] [X,2] . ||| EgivenFCoherent=1.89579074825 SampleCountF=2.37474834601 CountEF=0.602059991328 MaxLexFgivenE=5.45638838122 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=0 ||| 3-2
[X] ||| [X,1] manches [X,2] . ||| [X,1] [X,2] in some areas . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=4.43462420902 IsSingletonF=0 IsSingletonFE=1 ||| 1-3 1-4 3-5
[X] ||| [X,1] manches [X,2] . ||| [X,1] [X,2] one 's pick . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=5.45638838122 MaxLexEgivenF=9.54605165814 IsSingletonF=0 IsSingletonFE=1 ||| 3-5
[X] ||| [X,1] manches [X,2] . ||| [X,1] [X,2] something . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.87849617591 MaxLexEgivenF=2.05335609979 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-3
[X] ||| [X,1] manches [X,2] . ||| [X,1] . and [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=5.45638838122 MaxLexEgivenF=1.68032612428 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] manches [X,2] . ||| [X,1] a certain amount is [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.80157232856 MaxLexEgivenF=9.24255723169 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-6
[X] ||| [X,1] manches [X,2] . ||| [X,1] some [X,2] . ||| EgivenFCoherent=2.07188200731 SampleCountF=2.37474834601 CountEF=0.47712125472 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=0.783843155576 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] manches [X,2] . ||| [X,1] some things [X,2] . ||| EgivenFCoherent=2.07188200731 SampleCountF=2.37474834601 CountEF=0.47712125472 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=1.68865312296 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] manches [X,2] . ||| [X,1] some things went far [X,2] hearing . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=13.8769380165 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-7
[X] ||| [X,1] manches [X,2] . ||| [X,1] some types of [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=6.15782379614 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-5
[X] ||| [X,1] manches [X,2] . ||| [X,1] many [X,2] . ||| EgivenFCoherent=2.07188200731 SampleCountF=2.37474834601 CountEF=0.47712125472 MaxLexFgivenE=3.41274748556 MaxLexEgivenF=1.04475592803 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] manches [X,2] . ||| [X,1] many respects [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.41274748556 MaxLexEgivenF=5.79288309323 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] manches [X,2] . ||| [X,1] number of [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=5.45638838122 MaxLexEgivenF=4.716919779 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] manches [X,2] . ||| [X,1] much [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.38868082257 MaxLexEgivenF=1.24717612581 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] manches [X,2] . ||| [X,1] quite a few [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.76799506805 MaxLexEgivenF=5.55914572681 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3 3-5
[X] ||| [X,1] manches [X,2] . ||| [X,1] quite a lot [X,2] " . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.20118776581 MaxLexEgivenF=7.59563878394 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3 3-6
[X] ||| [X,1] manches [X,2] . ||| [X,1] must make every [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=5.45638838122 MaxLexEgivenF=9.42535689315 IsSingletonF=0 IsSingletonFE=1 ||| 3-5
[X] ||| [X,1] manches [X,2] . ||| [X,1] room for [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=4.46384099845 MaxLexEgivenF=4.11195946559 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] manches [X,2] . ||| [X,1] sometimes he gets [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.96829734954 MaxLexEgivenF=7.27592465218 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-5
[X] ||| [X,1] manches [X,2] . ||| deal [X,1] [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.45731077563 MaxLexEgivenF=1.79808359469 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| [X,1] manches [X,2] . ||| things [X,1] [X,2] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=0.952985554676 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| manches [X,1] . ||| [X,1] in some areas . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=4.43462420902 IsSingletonF=0 IsSingletonFE=1 ||| 0-2 0-3 2-4
[X] ||| manches [X,1] . ||| [X,1] something . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.87849617591 MaxLexEgivenF=2.05335609979 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 2-2
[X] ||| manches [X,1] . ||| of [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=5.45638838122 MaxLexEgivenF=1.39946050458 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| manches [X,1] . ||| and [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=5.45638838122 MaxLexEgivenF=1.63215053699 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| manches [X,1] . ||| a lot [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.20118776581 MaxLexEgivenF=3.26516967506 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| manches [X,1] . ||| some [X,1] . ||| EgivenFCoherent=1.67394199863 SampleCountF=2.37474834601 CountEF=0.778151250384 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=0.783843155576 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| manches [X,1] . ||| some of [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=2.13512807287 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| manches [X,1] . ||| some things [X,1] . ||| EgivenFCoherent=1.77085201164 SampleCountF=2.37474834601 CountEF=0.698970004336 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=1.68865312296 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| manches [X,1] . ||| some things went far [X,1] hearing . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=13.8769380165 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-6
[X] ||| manches [X,1] . ||| some elements [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=4.82041834101 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| manches [X,1] . ||| some types of [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.18611130681 MaxLexEgivenF=6.15782379614 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4
[X] ||| manches [X,1] . ||| there are a lot of things [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=8.65772398688 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 0-3 0-4 0-5 2-7
[X] ||| manches [X,1] . ||| many [X,1] . ||| EgivenFCoherent=1.89579074825 SampleCountF=2.37474834601 CountEF=0.602059991328 MaxLexFgivenE=3.41274748556 MaxLexEgivenF=1.04475592803 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| manches [X,1] . ||| many a [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.41274748556 MaxLexEgivenF=2.70372753464 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| manches [X,1] . ||| many aspects [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.41274748556 MaxLexEgivenF=3.14684645354 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| manches [X,1] . ||| many respects [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.41274748556 MaxLexEgivenF=5.79288309323 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| manches [X,1] . ||| much [X,1] . ||| EgivenFCoherent=2.07188200731 SampleCountF=2.37474834601 CountEF=0.47712125472 MaxLexFgivenE=3.38868082257 MaxLexEgivenF=1.24717612581 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| manches [X,1] . ||| quite a few [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.76799506805 MaxLexEgivenF=5.55914572681 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 2-4
[X] ||| manches [X,1] . ||| quite a lot [X,1] " . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.20118776581 MaxLexEgivenF=7.59563878394 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 2-5
[X] ||| manches [X,1] . ||| things [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.73232200922 MaxLexEgivenF=0.952985554676 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| manches [X,1] . ||| room for [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=4.46384099845 MaxLexEgivenF=4.11195946559 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| manches [X,1] . ||| certain amount is [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=3.80157232856 MaxLexEgivenF=7.58358562508 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4
[X] ||| manches [X,1] . ||| sometimes he gets [X,1] . ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=2.96829734954 MaxLexEgivenF=7.27592465218 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-4
[X] ||| manches [X,1] . [X,2] ||| sometimes he gets [X,1] ; [X,2] ||| EgivenFCoherent=2.37291200297 SampleCountF=2.37474834601 CountEF=0.301029995664 MaxLexFgivenE=4.5847728813 MaxLexEgivenF=9.96256536864 IsSingletonF=1 IsSingletonFE=1 ||| 0-0
[X] ||| [X,1] hielt [X,2] fest ||| [X,2] said [X,1] was ||| EgivenFCoherent=1.80617997398 SampleCountF=1.81291335664 CountEF=0.301029995664 MaxLexFgivenE=6.82699176546 MaxLexEgivenF=4.03286793723 IsSingletonF=0 IsSingletonFE=1 ||| 1-3 3-1
[X] ||| [X,1] hielt [X,2] fest ||| [X,1] was [X,2] maintain that ||| EgivenFCoherent=1.80617997398 SampleCountF=1.81291335664 CountEF=0.301029995664 MaxLexFgivenE=5.89659903944 MaxLexEgivenF=5.01756120845 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3 3-4
[X] ||| [X,1] hielt [X,2] fest ||| [X,1] held [X,2] ||| EgivenFCoherent=1.80617997398 SampleCountF=1.81291335664 CountEF=0.301029995664 MaxLexFgivenE=4.84135285071 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-1
[X] ||| hielt [X,1] fest ||| [X,1] held ||| EgivenFCoherent=1.50514997832 SampleCountF=1.81291335664 CountEF=0.47712125472 MaxLexFgivenE=4.84135285071 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 0-1 2-1
[X] ||| hielt [X,1] fest ||| was [X,1] maintain that ||| EgivenFCoherent=1.80617997398 SampleCountF=1.81291335664 CountEF=0.301029995664 MaxLexFgivenE=5.89659903944 MaxLexEgivenF=5.01756120845 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| hielt [X,1] fest ||| held [X,1] ||| EgivenFCoherent=1.80617997398 SampleCountF=1.81291335664 CountEF=0.301029995664 MaxLexFgivenE=4.84135285071 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| hielt [X,1] fest [X,2] ||| [X,2] [X,1] held ||| EgivenFCoherent=1.50514997832 SampleCountF=1.81291335664 CountEF=0.47712125472 MaxLexFgivenE=4.84135285071 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=0 ||| 0-2 2-2
[X] ||| hielt [X,1] fest [X,2] ||| was [X,1] maintain that [X,2] ||| EgivenFCoherent=1.80617997398 SampleCountF=1.81291335664 CountEF=0.301029995664 MaxLexFgivenE=5.89659903944 MaxLexEgivenF=5.01756120845 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2 2-3
[X] ||| hielt [X,1] fest [X,2] ||| held [X,1] [X,2] ||| EgivenFCoherent=1.80617997398 SampleCountF=1.81291335664 CountEF=0.301029995664 MaxLexFgivenE=4.84135285071 MaxLexEgivenF=1.13996471229 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-0
[X] ||| [X,1] hielt [X,2] . ||| [X,2] [X,1] kept . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.10915331682 MaxLexEgivenF=1.57012779931 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] [X,2] . ||| EgivenFCoherent=1.57403126773 SampleCountF=2.47856649559 CountEF=0.954242509439 MaxLexFgivenE=4.76632077168 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=0 ||| 3-2
[X] ||| [X,1] hielt [X,2] . ||| [X,1] was [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.35717114853 MaxLexEgivenF=1.10503763201 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] but did [X,2] either . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.75604379375 MaxLexEgivenF=7.86131686476 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4 3-5
[X] ||| [X,1] hielt [X,2] . ||| [X,1] made [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.74616035865 MaxLexEgivenF=2.05442763866 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] up [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.76632077168 MaxLexEgivenF=2.77543540478 IsSingletonF=0 IsSingletonFE=1 ||| 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] held [X,2] . ||| EgivenFCoherent=1.36317790241 SampleCountF=2.47856649559 CountEF=1.14612803568 MaxLexFgivenE=2.15612537067 MaxLexEgivenF=1.18814029957 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] i found [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.2467490742 MaxLexEgivenF=4.67827426533 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-4
[X] ||| [X,1] hielt [X,2] . ||| [X,1] kept [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.10915331682 MaxLexEgivenF=1.57012779931 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] did [X,2] . ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.75604379375 MaxLexEgivenF=1.45783054303 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] did execute [X,2] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.75604379375 MaxLexEgivenF=4.4640825944 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] hielt [X,2] . ||| [X,1] could keep pace [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.43339121329 MaxLexEgivenF=10.3268659016 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-5
[X] ||| [X,1] hielt [X,2] . ||| [X,1] career spanning four [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61430732892 MaxLexEgivenF=9.36796173706 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 3-5
[X] ||| [X,1] hielt [X,2] . ||| [X,1] gave [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.42424972448 MaxLexEgivenF=1.81138958997 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] followed [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.50586531736 MaxLexEgivenF=2.8783363796 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] holding [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46711172567 MaxLexEgivenF=2.03323833959 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] considered [X,2] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.33183950075 MaxLexEgivenF=1.44164378194 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] his [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.63125089187 MaxLexEgivenF=1.82397871728 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] hielt [X,2] . ||| [X,1] felt that [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.99303336958 MaxLexEgivenF=3.56857830719 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] hielt [X,2] . ||| [X,1] tied [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.76632077168 MaxLexEgivenF=4.8668102113 IsSingletonF=0 IsSingletonFE=1 ||| 3-3
[X] ||| [X,1] hielt [X,2] . ||| regarded as [X,1] [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.67205314697 MaxLexEgivenF=4.41835431158 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-4
[X] ||| [X,1] hielt [X,2] . ||| thought [X,1] [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14112648765 MaxLexEgivenF=1.39166980698 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 3-3
[X] ||| [X,1] hielt [X,2] . ||| thought was [X,1] [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.14112648765 MaxLexEgivenF=2.4485318517 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 1-1 3-4
[X] ||| hielt [X,1] . ||| was [X,1] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.35717114853 MaxLexEgivenF=1.10503763201 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| but did [X,1] either . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.75604379375 MaxLexEgivenF=7.86131686476 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3 2-4
[X] ||| hielt [X,1] . ||| made [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.74616035865 MaxLexEgivenF=2.05442763866 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| held [X,1] . ||| EgivenFCoherent=1.33099321904 SampleCountF=2.47856649559 CountEF=1.17609125906 MaxLexFgivenE=2.15612537067 MaxLexEgivenF=1.18814029957 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| kept [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.10915331682 MaxLexEgivenF=1.57012779931 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| did [X,1] . ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.75604379375 MaxLexEgivenF=1.45783054303 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| did execute [X,1] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.75604379375 MaxLexEgivenF=4.4640825944 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| hielt [X,1] . ||| career spanning four [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.61430732892 MaxLexEgivenF=9.36796173706 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-4
[X] ||| hielt [X,1] . ||| gave [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.42424972448 MaxLexEgivenF=1.81138958997 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| keep pace [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.43339121329 MaxLexEgivenF=7.02785907933 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| hielt [X,1] . ||| followed [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.50586531736 MaxLexEgivenF=2.8783363796 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| holding [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.46711172567 MaxLexEgivenF=2.03323833959 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| stayed [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.59788378811 MaxLexEgivenF=2.35545763432 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| considered [X,1] . ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=2.33183950075 MaxLexEgivenF=1.44164378194 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| his [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.63125089187 MaxLexEgivenF=1.82397871728 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| his own while [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.63125089187 MaxLexEgivenF=7.92694305104 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 2-4
[X] ||| hielt [X,1] . ||| found [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.2467490742 MaxLexEgivenF=2.07670403337 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| stopped [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.90835295378 MaxLexEgivenF=1.77567403771 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| hielt [X,1] . ||| felt that [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.99303336958 MaxLexEgivenF=3.56857830719 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| [X,1] harmonia [X,2] . ||| [X,2] [X,1] harmonia . ||| EgivenFCoherent=1.61278385672 SampleCountF=1.6232492904 CountEF=0.301029995664 MaxLexFgivenE=0.30229588768 MaxLexEgivenF=0.38783498531 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 3-3
[X] ||| [X,1] harmonia [X,2] . ||| [X,1] harmonia [X,2] . ||| EgivenFCoherent=0.913813852384 SampleCountF=1.6232492904 CountEF=0.778151250384 MaxLexFgivenE=0.30229588768 MaxLexEgivenF=0.38783498531 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 3-3
[X] ||| harmonia [X,1] . ||| harmonia [X,1] . ||| EgivenFCoherent=0.913813852384 SampleCountF=1.6232492904 CountEF=0.778151250384 MaxLexFgivenE=0.30229588768 MaxLexEgivenF=0.38783498531 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 2-2
[X] ||| [X,1] davon [X,2] . ||| [X,2] [X,1] of them . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.90679391418 MaxLexEgivenF=2.37539071943 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] [X,2] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.65565138528 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=0 ||| 3-2
[X] ||| [X,1] davon [X,2] . ||| [X,1] [X,2] of it . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=2.33086178551 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] [X,2] about it . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=3.61285573338 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] of the network [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.96251316704 MaxLexEgivenF=5.93161217038 IsSingletonF=0 IsSingletonFE=1 ||| 3-5
[X] ||| [X,1] davon [X,2] . ||| [X,1] of that [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.95623795653 MaxLexEgivenF=2.2328213726 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] of which [X,2] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.96251316704 MaxLexEgivenF=3.20653863296 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 1-2 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] of it [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=2.33086178551 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] of these [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57180485223 MaxLexEgivenF=2.83331351211 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] of these have [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57180485223 MaxLexEgivenF=5.11793063941 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 1-3 3-5
[X] ||| [X,1] davon [X,2] . ||| [X,1] of them [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.90679391418 MaxLexEgivenF=2.37539071943 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] including [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.49587481669 MaxLexEgivenF=2.36989096678 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] davon [X,2] . ||| [X,1] it [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=1.40870356606 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] davon [X,2] . ||| [X,1] it will [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=3.59602050607 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] this [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84071905307 MaxLexEgivenF=1.4916907518 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] davon [X,2] . ||| [X,1] this forms [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84071905307 MaxLexEgivenF=5.42854431937 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-4
[X] ||| [X,1] davon [X,2] . ||| [X,1] these [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57180485223 MaxLexEgivenF=1.91115529266 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] davon [X,2] . ||| [X,1] those [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89972778097 MaxLexEgivenF=2.49109542 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 3-3
[X] ||| [X,1] davon [X,2] . ||| [X,1] derives [X,2] it . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15995430869 MaxLexEgivenF=5.31700625022 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-3 3-4
[X] ||| davon [X,1] . ||| [X,1] of it . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=2.33086178551 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2 2-3
[X] ||| davon [X,1] . ||| [X,1] of one of those . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72013320098 MaxLexEgivenF=6.22087393218 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2 0-3 0-4 2-5
[X] ||| davon [X,1] . ||| [X,1] about it . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=3.61285573338 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2 2-3
[X] ||| davon [X,1] . ||| of that [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.95623795653 MaxLexEgivenF=2.2328213726 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| davon [X,1] . ||| of which [X,1] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.96251316704 MaxLexEgivenF=3.20653863296 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 0-1 2-3
[X] ||| davon [X,1] . ||| of it [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=2.33086178551 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| davon [X,1] . ||| of these [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57180485223 MaxLexEgivenF=2.83331351211 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| davon [X,1] . ||| of these have [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57180485223 MaxLexEgivenF=5.11793063941 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 0-2 2-4
[X] ||| davon [X,1] . ||| of them [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.90679391418 MaxLexEgivenF=2.37539071943 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 2-3
[X] ||| davon [X,1] . ||| including [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.49587481669 MaxLexEgivenF=2.36989096678 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| davon [X,1] . ||| it [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=1.40870356606 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| davon [X,1] . ||| it will [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.74167770593 MaxLexEgivenF=3.59602050607 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| davon [X,1] . ||| be [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.65565138528 MaxLexEgivenF=2.16712825346 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| davon [X,1] . ||| this [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84071905307 MaxLexEgivenF=1.4916907518 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| davon [X,1] . ||| this forms [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84071905307 MaxLexEgivenF=5.42854431937 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| davon [X,1] . ||| this sum [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.84071905307 MaxLexEgivenF=6.02123549939 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| davon [X,1] . ||| these [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.57180485223 MaxLexEgivenF=1.91115529266 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| davon [X,1] . ||| there [X,1] one . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.72013320098 MaxLexEgivenF=4.41057658057 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-3
[X] ||| davon [X,1] . ||| those [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.89972778097 MaxLexEgivenF=2.49109542 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| davon [X,1] . ||| derives [X,1] it . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.15995430869 MaxLexEgivenF=5.31700625022 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-2 2-3
[X] ||| davon [X,1] . ||| believing [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.91834669143 MaxLexEgivenF=3.61405559063 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 2-2
[X] ||| [X,1] fest . ||| [X,1] . ||| EgivenFCoherent=0.447737477034 SampleCountF=2.47856649559 CountEF=2.03342375549 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=0 ||| 2-1
[X] ||| [X,1] fest . ||| [X,1] . we are full of excitement . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.56482019817 MaxLexEgivenF=14.0693491821 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 1-4 1-5 2-1 2-7
[X] ||| [X,1] fest . ||| [X,1] der hamburger messehallen . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765502627864 MaxLexEgivenF=14.0233158231 IsSingletonF=0 IsSingletonFE=1 ||| 1-3 2-4
[X] ||| [X,1] fest . ||| [X,1] in . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=1.59686611522 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] fest . ||| [X,1] in this chamber . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=8.24061779338 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3 2-4
[X] ||| [X,1] fest . ||| [X,1] @-@ evidently . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=7.37684598037 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-3
[X] ||| [X,1] fest . ||| [X,1] an observation . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35329990799 MaxLexEgivenF=5.56514425819 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3
[X] ||| [X,1] fest . ||| [X,1] by that . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.26319832858 MaxLexEgivenF=3.38507409035 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 2-3
[X] ||| [X,1] fest . ||| [X,1] to . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=1.49285147488 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] to former detainees . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=11.4439277625 IsSingletonF=0 IsSingletonFE=1 ||| 2-4
[X] ||| [X,1] fest . ||| [X,1] states . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.97765906877 MaxLexEgivenF=1.99530535206 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] and our aspirations . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=9.45664887167 IsSingletonF=0 IsSingletonFE=1 ||| 2-4
[X] ||| [X,1] fest . ||| [X,1] all . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=2.50636442634 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] fest . ||| [X,1] may occur . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=7.54386567161 IsSingletonF=0 IsSingletonFE=1 ||| 2-3
[X] ||| [X,1] fest . ||| [X,1] it . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=2.2041836159 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] says . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41770290698 MaxLexEgivenF=2.60505217206 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] be . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=2.16712825346 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] fest . ||| [X,1] has been taken . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=8.4599579718 IsSingletonF=0 IsSingletonFE=1 ||| 1-2 1-3 2-4
[X] ||| [X,1] fest . ||| [X,1] into mudpools . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=7.20225887447 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2 2-3
[X] ||| [X,1] fest . ||| [X,1] other things . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=6.53833874567 IsSingletonF=0 IsSingletonFE=1 ||| 2-3
[X] ||| [X,1] fest . ||| [X,1] features . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=3.85951097255 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] fest . ||| [X,1] now . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=3.14322932421 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] fact . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40253254317 MaxLexEgivenF=2.79693769829 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] find ... ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.69012113429 MaxLexEgivenF=4.64766047953 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] once more dried up . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=14.2783898013 IsSingletonF=0 IsSingletonFE=1 ||| 1-4 2-5
[X] ||| [X,1] fest . ||| [X,1] clear . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.27133295841 MaxLexEgivenF=1.75847944648 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] amount . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.27858698833 MaxLexEgivenF=3.22830146245 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] event . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94219397809 MaxLexEgivenF=2.79693769829 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] again . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=3.62423509587 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] fest . ||| [X,1] festival . ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.37466722784 MaxLexEgivenF=1.64284073295 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] euros ) . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=6.9254937379 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 2-2 2-3
[X] ||| [X,1] fest . ||| [X,1] solid . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.66282975749 MaxLexEgivenF=2.1869087773 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] shops . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=4.27405024305 IsSingletonF=0 IsSingletonFE=1 ||| 2-1 2-2
[X] ||| [X,1] fest . ||| [X,1] celebration . ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.23517439493 MaxLexEgivenF=2.23707538676 IsSingletonF=0 IsSingletonFE=0 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] festivities . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42911790204 MaxLexEgivenF=2.88587878163 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| [X,1] instructs napo directly . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=16.5916572297 IsSingletonF=0 IsSingletonFE=1 ||| 2-4
[X] ||| [X,1] fest . ||| [X,1] soundly . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.45034798951 MaxLexEgivenF=3.52933145812 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 2-2
[X] ||| [X,1] fest . ||| the [X,1] . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=1.23594331626 IsSingletonF=0 IsSingletonFE=0 ||| 1-0 2-2
[X] ||| [X,1] fest . ||| june [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=3.75118020773 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] fest . ||| set [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.93401647978 MaxLexEgivenF=2.37096896602 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] fest . ||| firm [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.64289986004 MaxLexEgivenF=1.97788146014 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] fest . ||| established [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.24999837481 MaxLexEgivenF=2.19087496451 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] fest . ||| his [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=3.03878420973 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] fest . ||| event of [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94219397809 MaxLexEgivenF=4.14822261559 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-3
[X] ||| [X,1] fest . ||| still do [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.72178408228 MaxLexEgivenF=5.91262496806 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-3
[X] ||| [X,1] fest . ||| defined , [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.48037295836 MaxLexEgivenF=3.92018300796 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-3
[X] ||| [X,1] fest . ||| determines [X,1] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.35096335737 MaxLexEgivenF=2.45015021207 IsSingletonF=0 IsSingletonFE=1 ||| 1-0 2-2
[X] ||| [X,1] fest . [X,2] ||| [X,1] [X,2] . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=0.0481755872897 IsSingletonF=0 IsSingletonFE=1 ||| 2-2
[X] ||| [X,1] fest . [X,2] ||| [X,1] that [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.87967386033 MaxLexEgivenF=1.14230112458 IsSingletonF=0 IsSingletonFE=1 ||| 1-1
[X] ||| [X,1] fest . [X,2] ||| [X,1] stuck fast [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.12014188502 MaxLexEgivenF=5.35679121822 IsSingletonF=0 IsSingletonFE=1 ||| 1-1 1-2
[X] ||| [X,1] fest . [X,2] ||| see [X,1] , [X,2] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.92695388005 MaxLexEgivenF=2.72288767753 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| [X,1] fest . [X,2] ||| commission ahead [X,2] [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.34811327483 MaxLexEgivenF=7.76974586657 IsSingletonF=0 IsSingletonFE=1 ||| 1-0
[X] ||| fest . ||| . we are full of excitement . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.56482019817 MaxLexEgivenF=14.0693491821 IsSingletonF=0 IsSingletonFE=1 ||| 0-1 0-2 0-3 0-4 1-0 1-6
[X] ||| fest . ||| in this chamber . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=8.24061779338 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2 1-3
[X] ||| fest . ||| @-@ stream . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=6.59042220402 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| fest . ||| @-@ evidently . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=7.37684598037 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-2
[X] ||| fest . ||| an observation . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.35329990799 MaxLexEgivenF=5.56514425819 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| fest . ||| that . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.26319832858 MaxLexEgivenF=1.19047671187 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| that is wilfully and intentionally . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.26319832858 MaxLexEgivenF=16.4982337965 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-5
[X] ||| fest . ||| will delight you . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=9.65462780231 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-3
[X] ||| fest . ||| to . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=1.49285147488 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| states . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.97765906877 MaxLexEgivenF=1.99530535206 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| it . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=2.2041836159 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| fest . ||| says . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.41770290698 MaxLexEgivenF=2.60505217206 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| time . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=2.83036145378 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| been taken . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=6.02442637118 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| fest . ||| up . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=2.77543540478 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| into mudpools . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.0665326235283 MaxLexEgivenF=7.20225887447 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| fest . ||| now . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=3.14322932421 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| now known . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.21006264747 MaxLexEgivenF=6.02232520371 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1 1-2
[X] ||| fest . ||| fact . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.40253254317 MaxLexEgivenF=2.79693769829 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| year . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.73163774307 MaxLexEgivenF=3.14912021641 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| find ... ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.69012113429 MaxLexEgivenF=4.64766047953 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| clear . ||| EgivenFCoherent=2.17609125906 SampleCountF=2.47856649559 CountEF=0.47712125472 MaxLexFgivenE=2.27133295841 MaxLexEgivenF=1.75847944648 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| fest . ||| amount . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.27858698833 MaxLexEgivenF=3.22830146245 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| event . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.94219397809 MaxLexEgivenF=2.79693769829 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| party . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=2.52562020245 MaxLexEgivenF=2.25517360885 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| january 2010 . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.41174293189 MaxLexEgivenF=7.50408956854 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1 1-2
[X] ||| fest . ||| festival . ||| EgivenFCoherent=2 SampleCountF=2.47856649559 CountEF=0.602059991328 MaxLexFgivenE=1.37466722784 MaxLexEgivenF=1.64284073295 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| fest . ||| solid . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.66282975749 MaxLexEgivenF=2.1869087773 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| memory and to worship him . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.63730899232 MaxLexEgivenF=15.7084545876 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-5
[X] ||| fest . ||| celebration . ||| EgivenFCoherent=1.87506126339 SampleCountF=2.47856649559 CountEF=0.698970004336 MaxLexFgivenE=1.23517439493 MaxLexEgivenF=2.23707538676 IsSingletonF=0 IsSingletonFE=0 ||| 0-0 1-1
[X] ||| fest . ||| festivities . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.42911790204 MaxLexEgivenF=2.88587878163 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| messehallen . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=0.765502627864 MaxLexEgivenF=4.22830146245 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . ||| soundly . ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=1.45034798951 MaxLexEgivenF=3.52933145812 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 1-1
[X] ||| fest . [X,1] ||| that [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.87967386033 MaxLexEgivenF=1.14230112458 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest . [X,1] ||| setting out [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=4.54241667627 MaxLexEgivenF=5.10018036234 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1
[X] ||| fest . [X,1] ||| commission ahead [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=5.34811327483 MaxLexEgivenF=7.76974586657 IsSingletonF=0 IsSingletonFE=1 ||| 0-0
[X] ||| fest . [X,1] ||| stuck fast [X,1] ||| EgivenFCoherent=2.47712125472 SampleCountF=2.47856649559 CountEF=0.301029995664 MaxLexFgivenE=3.12014188502 MaxLexEgivenF=5.35679121822 IsSingletonF=0 IsSingletonFE=1 ||| 0-0 0-1