-
Notifications
You must be signed in to change notification settings - Fork 0
/
DocumentWeighter.txt
5058 lines (5058 loc) · 981 KB
/
DocumentWeighter.txt
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
0,44:0.08839,59:0.09806,104:0.13081,131:0.08807,157:0.10193,174:0.09426,193:0.08158,206:0.09299,225:0.10461,282:0.12842,289:0.10132,304:0.08968,314:0.11247,325:0.09576,423:0.08580,452:0.08306,459:0.09047,474:0.12350,478:0.20122,479:0.15920,521:0.12628,522:0.07845,548:0.11681,564:0.12150,566:0.11333,605:0.11942,634:0.17153,673:0.08161,685:0.09452,696:0.09229,699:0.13836,700:0.14296,709:0.10611,734:0.10471,738:0.12246,748:0.19845,766:0.09733,793:0.15232,794:0.12809,797:0.10868,812:0.10912,857:0.10313,858:0.11307,946:0.08873,948:0.11450,992:0.08849,999:0.10681,1003:0.12183,1028:0.10832,1062:0.15462,1195:0.09306,1250:0.09056,1251:0.14002,1285:0.17915,1289:0.09470,1292:0.09525,1307:0.09474,1337:0.11785,1339:0.09946,1349:0.11203,1351:0.09171
0.000,1257:0.12209
0.0001,117:0.12636,302:0.12319
0.001,972:0.10737,1128:0.12861
0.002,1324:0.11699
0.004,1324:0.11699
0.00675,1127:0.10432
0.01,300:0.09625,778:0.18087
0.010,1069:0.16959
0.012,662:0.10777
0.014,996:0.09279
0.02,548:0.08978,597:0.15577,748:0.14520
0.02025,1127:0.10432
0.025,614:0.10246
0.03,946:0.08873
0.04,748:0.14520
0.05,189:0.08417,197:0.09592,662:0.08283,748:0.11160,972:0.10737
0.06,1136:0.10042
0.066,1127:0.10432
0.08,1136:0.10042
0.1,240:0.09687,315:0.07389,478:0.20122,606:0.11252,679:0.11300,776:0.17613,1356:0.08600
0.10,189:0.08417,662:0.08283,748:0.11160,1136:0.10042
0.11,165:0.08139
0.117,800:0.11613
0.12,690:0.13238,1136:0.10042
0.120,800:0.11613
0.13,996:0.09279
0.14,1136:0.10042
0.1428,1307:0.09474
0.14x10,689:0.09642
0.15,572:0.07667,928:0.07558
0.15x106,993:0.11022
0.16,1136:0.10042
0.18,996:0.09279
0.182er,742:0.13792
0.1875,176:0.14135
0.19,674:0.12874
0.195etr,741:0.14760
0.2,144:0.12257,158:0.12926,173:0.08822,185:0.08663,189:0.10951,218:0.09638,234:0.11776,413:0.11970,615:0.19111,687:0.15718,748:0.17879,755:0.13385,861:0.17809,1004:0.13172,1188:0.11125
0.21,857:0.10313
0.211,800:0.11613
0.25,1226:0.09185
0.254,325:0.09576
0.262,529:0.08546
0.3,89:0.07629,125:0.10244,129:0.09440,432:0.10529,522:0.07845,959:0.10732,1218:0.08746,1354:0.11952
0.30,759:0.10249
0.32,165:0.08139
0.33,685:0.09452
0.35,53:0.10432,812:0.10912,1115:0.16287
0.36,434:0.10073
0.367,325:0.09576
0.368,1204:0.08106
0.38,571:0.09754
0.4,40:0.11082,187:0.08674,234:0.09051,421:0.11148,423:0.08580,1004:0.13172,1039:0.09194,1336:0.10477,1381:0.09217
0.40,9:0.08253,674:0.12874,711:0.12884
0.42,685:0.09452
0.43,662:0.08283
0.44,857:0.10313
0.45,109:0.11297,791:0.15830
0.46,9:0.08253
0.5,57:0.11341,63:0.12723,98:0.16707,247:0.11566,274:0.09270,478:0.15466,702:0.19075,748:0.14520,857:0.10313,972:0.10737,1344:0.10934
0.50,74:0.14936,205:0.09652,748:0.11160
0.53,205:0.09652
0.55,1223:0.15342
0.57,1349:0.11203
0.5772...euler,787:0.11419
0.6,173:0.08822,199:0.08528,204:0.11284,702:0.19075,748:0.14520,759:0.10249,780:0.13989,793:0.11708,794:0.08672,838:0.16532,928:0.07558,999:0.10681,1114:0.10654,1136:0.10042,1290:0.10960,1338:0.10950
0.60,197:0.09592,277:0.09891,709:0.10611,711:0.12884
0.62,1065:0.12328
0.635,82:0.08452
0.65,212:0.07787,662:0.08283,1001:0.12710
0.69,857:0.10313
0.6x10,662:0.08283
0.7,125:0.10244,206:0.12098,218:0.09638,312:0.15830,565:0.10160,661:0.13467,685:0.12298,691:0.12997,701:0.09885,702:0.15491,748:0.17879,800:0.11613,962:0.07437,1115:0.16287,1136:0.10042,1259:0.11510
0.70,1066:0.08669,1212:0.09950
0.715,23:0.12983
0.72,328:0.08422
0.725,611:0.11193
0.73,962:0.07437,1341:0.10849
0.737,986:0.08898
0.741,1127:0.10432
0.75,50:0.11449,177:0.10564,1114:0.10654,1226:0.09185
0.8,173:0.08822,185:0.08663,206:0.09299,423:0.08580,439:0.11296,536:0.08849,651:0.11493,691:0.12997,700:0.14296,709:0.10611,1136:0.10042,1338:0.14246
0.80,796:0.11024
0.800,986:0.08898
0.805,986:0.08898
0.823,662:0.08283
0.825,986:0.08898
0.84,431:0.12337
0.840,662:0.08283
0.85,205:0.12557,466:0.09707,1337:0.11785
0.854,986:0.08898
0.8a,749:0.13205
0.9,232:0.10181,691:0.12997,1066:0.08669,1136:0.10042,1154:0.09320,1226:0.09185
0.90,198:0.09389
0.92,212:0.07787,516:0.14957,801:0.10970,1204:0.08106
0.95,205:0.09652,1066:0.08669
0.952,212:0.07787
0.96,766:0.09733
0.98,213:0.08923
0degre,688:0.09582,713:0.11615,782:0.10329,972:0.10737,1075:0.10744,1077:0.18802,1341:0.10849
1,7:0.09509,18:0.13824,21:0.18304,28:0.12569,40:0.11082,42:0.09303,49:0.07699,59:0.12758,64:0.12596,72:0.09476,73:0.08255,77:0.10871,80:0.09228,85:0.08872,94:0.07568,95:0.20657,100:0.09592,110:0.10130,129:0.09440,131:0.08807,138:0.09917,139:0.16209,162:0.10310,163:0.07347,165:0.10589,171:0.10942,178:0.16933,190:0.11493,193:0.10613,198:0.09389,202:0.11280,213:0.13180,218:0.09638,225:0.10461,234:0.09051,239:0.12101,247:0.15048,252:0.11927,270:0.10209,271:0.22712,272:0.07723,282:0.09871,294:0.09073,295:0.14064,300:0.09625,315:0.07389,325:0.09576,334:0.09876,338:0.11189,341:0.09930,344:0.07231,345:0.12169,354:0.13262,362:0.18027,373:0.11350,376:0.16264,381:0.12372,386:0.15322,401:0.08311,414:0.10561,417:0.07187,422:0.12874,450:0.15340,452:0.08306,458:0.09715,467:0.13610,474:0.12350,480:0.14445,486:0.12321,523:0.16288,527:0.14775,528:0.18711,539:0.16684,555:0.11838,569:0.08767,572:0.07667,583:0.12328,587:0.13772,602:0.12595,604:0.12308,611:0.14562,615:0.19111,620:0.12701,634:0.13184,654:0.21005,660:0.08970,661:0.10351,668:0.13524,674:0.12874,695:0.08715,696:0.09229,704:0.10380,705:0.10172,710:0.09904,721:0.07158,744:0.13002,749:0.13205,759:0.10249,771:0.14019,780:0.13989,785:0.12531,793:0.11708,794:0.12809,797:0.10868,801:0.10970,805:0.10345,812:0.10912,826:0.08713,828:0.10506,856:0.09835,857:0.10313,889:0.08970,891:0.11078,903:0.15118,904:0.11532,916:0.11641,917:0.13314,933:0.08899,934:0.10176,946:0.08873,952:0.12951,964:0.11934,1004:0.13172,1028:0.10832,1031:0.13399,1032:0.17845,1038:0.14486,1039:0.09194,1047:0.07605,1059:0.10028,1064:0.11380,1065:0.12328,1066:0.08669,1072:0.07740,1074:0.12279,1075:0.10744,1088:0.13817,1090:0.18718,1131:0.17268,1136:0.10042,1142:0.18402,1153:0.15546,1166:0.14165,1174:0.15406,1201:0.09729,1258:0.10259,1299:0.21967,1301:0.12027,1312:0.14542,1313:0.06389,1320:0.14721,1333:0.09450,1335:0.11071,1352:0.09770,1354:0.11952,1356:0.11189,1362:0.11830,1363:0.14758,1372:0.10745,1375:0.08583,1378:0.18873,1382:0.09301
1.0,53:0.10432,62:0.08745,129:0.09440,189:0.08417,204:0.11284,206:0.09299,282:0.09871,300:0.09625,354:0.13262,555:0.11838,565:0.10160,686:0.13414,691:0.12997,700:0.14296,710:0.09904,861:0.13689,1136:0.10042,1289:0.09470,1338:0.16174,1381:0.09217
1.00,1066:0.08669,1114:0.10654
1.008,127:0.12592,1091:0.13391
1.03,434:0.10073,709:0.10611
1.05,197:0.09592,1179:0.09982
1.064,423:0.08580
1.07,991:0.10541
1.08,646:0.09096
1.09,197:0.09592
1.1,200:0.12563,800:0.11613,1179:0.09982,1229:0.08798
1.10,765:0.11801,852:0.11221,1077:0.12729
1.11,282:0.09871
1.12,780:0.13989,946:0.08873
1.13,805:0.10345,1336:0.10477
1.15,200:0.12563,796:0.11024
1.17,411:0.15779
1.2,161:0.16978,200:0.12563,232:0.10181,261:0.11561,442:0.10193,689:0.09642,700:0.14296,857:0.10313,1066:0.08669,1114:0.10654,1179:0.09982,1336:0.10477
1.20,709:0.10611,1066:0.08669
1.24,807:0.15096
1.25,189:0.08417,611:0.11193
1.27,695:0.08715
1.3,52:0.11382,197:0.09592,200:0.12563,513:0.13316,856:0.09835,1229:0.08798,1258:0.10259
1.30,101:0.08279,765:0.11801
1.33,638:0.10517,712:0.09331
1.35,516:0.14957,1338:0.14246
1.39,636:0.13538,693:0.15030,694:0.11423
1.3x10,675:0.08900
1.4,200:0.12563,414:0.10561,431:0.12337,489:0.11741,572:0.07667,748:0.11160,805:0.10345,806:0.09572,928:0.07558,1179:0.12987,1204:0.08106,1336:0.10477
1.40,177:0.13744,695:0.08715
1.400,529:0.11118
1.43,1341:0.10849
1.45,259:0.10856
1.450,692:0.10841
1.46,1303:0.10821
1.479,127:0.12592
1.48,431:0.12337
1.5,9:0.08253,56:0.10681,64:0.12596,161:0.16978,189:0.10951,200:0.12563,225:0.08041,294:0.09073,478:0.15466,690:0.13238,780:0.13989,991:0.10541,996:0.09279,1166:0.10888
1.50,765:0.11801
1.52,807:0.15096
1.55,646:0.09096
1.58,1257:0.12209
1.6,175:0.18610,200:0.12563,256:0.13744,522:0.07845,608:0.13184,748:0.11160,759:0.10249,793:0.11708,794:0.08672,1173:0.11580,1239:0.07776
1.60,994:0.11627
1.61,80:0.09228
1.62,174:0.09426,708:0.16702,992:0.08849
1.66,695:0.08715,1307:0.09474
1.67,1077:0.12729
1.6x10,671:0.13149
1.7,780:0.13989,1004:0.13172,1263:0.08885
1.71,696:0.09229
1.72,171:0.10942
1.74,815:0.09867
1.747,693:0.11552
1.75,597:0.20266,1339:0.09946
1.76,41:0.17090,970:0.11400,1066:0.08669
1.77,74:0.14936
1.78,171:0.10942
1.8,200:0.12563,216:0.09356,529:0.08546,805:0.10345,1151:0.11886,1381:0.09217
1.80,277:0.09891,694:0.14862,695:0.08715
1.81,411:0.15779
1.82,171:0.10942
1.85,1179:0.09982
1.8x10,261:0.11561
1.9,464:0.10896,511:0.12052,901:0.12582,1173:0.11580
1.90,7:0.09509,212:0.07787
1.91,282:0.09871
1.92,1352:0.09770
1.94,174:0.09426
1.944,200:0.12563
1.96,434:0.10073
1.97,40:0.11082,225:0.08041,662:0.12235
1.98,1212:0.09950
10,9:0.14675,63:0.12723,82:0.08452,98:0.16707,125:0.10244,161:0.16978,174:0.09426,182:0.13355,189:0.10951,193:0.08158,197:0.16297,219:0.10048,234:0.09051,239:0.12101,240:0.09687,256:0.13744,259:0.10856,262:0.07460,309:0.11207,312:0.20596,315:0.07389,343:0.13952,346:0.10772,371:0.11741,406:0.10162,423:0.12674,426:0.11837,497:0.11348,505:0.15199,517:0.15248,519:0.15591,522:0.11588,536:0.11513,546:0.11991,555:0.17486,558:0.13039,564:0.12150,571:0.09754,572:0.07667,576:0.07308,593:0.11276,604:0.12308,631:0.16589,635:0.12014,636:0.13538,646:0.11835,652:0.15805,671:0.13149,673:0.08161,679:0.11300,690:0.17224,691:0.16909,694:0.11423,696:0.09229,697:0.11935,709:0.13806,713:0.11615,759:0.13334,773:0.11039,776:0.22916,793:0.11708,794:0.08672,796:0.11024,808:0.11211,812:0.14197,814:0.10509,815:0.12837,816:0.11998,858:0.11307,859:0.13231,861:0.17809,912:0.11776,923:0.12538,924:0.10392,929:0.11638,947:0.11614,959:0.13962,964:0.11934,970:0.11400,972:0.10737,975:0.13599,976:0.07447,992:0.11512,999:0.13896,1000:0.10235,1011:0.22559,1019:0.10242,1062:0.15462,1080:0.12629,1095:0.16402,1143:0.13204,1152:0.22667,1156:0.11095,1159:0.13493,1164:0.10168,1167:0.13779,1188:0.11125,1191:0.11573,1195:0.09306,1212:0.12945,1231:0.10706,1239:0.07776,1247:0.11638,1263:0.08885,1270:0.16088,1278:0.10764,1303:0.10821,1310:0.08798,1313:0.08312,1335:0.11071,1344:0.10934,1349:0.11203,1378:0.14506,1391:0.10060
10.3,946:0.08873
10.5,1127:0.10432
100,82:0.08452,161:0.16978,302:0.12319,463:0.14329,497:0.11348,564:0.09339,603:0.09837,646:0.09096,721:0.07158,773:0.08485,881:0.11690,923:0.12538,1102:0.19897,1156:0.11095,1159:0.13493,1173:0.15066,1230:0.11231,1341:0.10849
1000,139:0.12459,721:0.07158,949:0.12786,1009:0.12205,1166:0.10888,1230:0.11231
10000,76:0.11308,129:0.09440,328:0.08422,536:0.08849,949:0.12786,1010:0.12108
100000,85:0.08872,976:0.07447
100degre,711:0.12884
100x10,413:0.11970
101,671:0.13149,675:0.11579
101957,20:0.11783
1081,479:0.12236
109,529:0.08546
109placement,931:0.18310
10degre,351:0.12519,713:0.15111,717:0.08450,1001:0.16536,1075:0.10744
10g,1344:0.10934
11,83:0.08488,118:0.11729,198:0.09389,239:0.12101,274:0.09270,282:0.09871,356:0.15053,546:0.11991,572:0.07667,636:0.13538,685:0.09452,727:0.10717,816:0.11998,904:0.11532,1127:0.10432,1159:0.13493,1213:0.10264
11.2,1395:0.16124
11.60,1289:0.09470
11.7,1218:0.08746
11.78,1385:0.10995
110,970:0.11400
1100,1025:0.11431
11000,1096:0.14678
1103,738:0.12246
1103a,738:0.12246
111,1020:0.12601
1135,1007:0.11643
1150,1351:0.09171
117,1039:0.09194
11in,1353:0.13337,1354:0.11952
12,56:0.10681,199:0.08528,282:0.09871,342:0.09409,572:0.07667,685:0.09452,696:0.09229,785:0.12531,788:0.10025,793:0.11708,794:0.08672,812:0.10912,929:0.11638,1007:0.11643,1009:0.12205,1218:0.08746,1231:0.10706,1312:0.14542,1339:0.09946
12.0,861:0.13689
12.4,1218:0.08746
120,162:0.10310,1156:0.11095,1250:0.09056
1200,1098:0.11954
12000,280:0.12304
120000,807:0.15096,1040:0.06780
1211,439:0.11296
124.9,82:0.08452
125,1147:0.07531
1250,79:0.11381,1098:0.11954
12degre,717:0.08450
13,694:0.11423,727:0.10717,755:0.13385,1003:0.12183,1040:0.06780,1065:0.12328,1213:0.10264,1218:0.08746,1252:0.10896,1325:0.08639,1351:0.09171,1399:0.14772
13.1,1065:0.12328
13.5,293:0.13012
13.8,1381:0.09217
130,696:0.09229
1300,976:0.07447,986:0.11577,1040:0.06780,1292:0.09525
14,58:0.10712,165:0.08139,442:0.10193,622:0.10019,794:0.08672,797:0.08353,1002:0.14904,1052:0.13633,1104:0.11360,1231:0.10706,1296:0.10156
14.4,696:0.09229,970:0.11400
140,212:0.07787,361:0.16720,511:0.12052
1400,1230:0.11231
1400degreek,1318:0.15637
1460,1349:0.11203
14in,795:0.18770
15,58:0.10712,69:0.12625,83:0.08488,125:0.10244,139:0.12459,304:0.08968,354:0.13262,371:0.11741,373:0.08724,518:0.10205,520:0.10151,546:0.11991,564:0.09339,595:0.10122,601:0.09651,620:0.09762,631:0.16589,638:0.10517,657:0.13935,812:0.10912,876:0.11694,900:0.15835,942:0.12104,947:0.13186,985:0.11488,1092:0.09411,1174:0.15406,1195:0.09306,1229:0.08798,1284:0.11875,1306:0.19327,1307:0.12326,1326:0.12091
15.4,634:0.13184
150,162:0.10310,640:0.08356,976:0.09689,1147:0.07531
1500,347:0.12494,766:0.09733,858:0.11307,948:0.11450,986:0.08898
15000,85:0.08872,401:0.08311,576:0.07308,884:0.16857,1011:0.17340
15000degre,302:0.12319
151962,388:0.11233
153,328:0.08422
15degre,688:0.09582,708:0.16702,1104:0.11360
15x10,79:0.11381
16,225:0.08041,312:0.15830,328:0.08422,645:0.10949,694:0.11423,1007:0.11643,1095:0.11104
16.6,213:0.08923
1600,84:0.10846
16000,1157:0.10300
165000,1292:0.09525
17,443:0.10104,1080:0.12629,1150:0.14582,1218:0.08746
17.5,1218:0.08746
170,616:0.12696
1700,25:0.07821
17000,536:0.08849
1700f,1268:0.08247
1730,1191:0.11573
17500,1282:0.11902
18,277:0.09891,642:0.16182,797:0.10868,1150:0.14582,1162:0.14393,1174:0.15406,1204:0.08106,1344:0.10934,1378:0.14506
180,244:0.07071,564:0.09339,617:0.15281,620:0.09762,947:0.11614,993:0.11022,999:0.13896,1143:0.13204,1250:0.09056,1325:0.08639
180000,976:0.07447
18000k,1314:0.16849
1856,623:0.10683
1869,427:0.10649
1873,623:0.10683
18degre,1001:0.12710
18in,795:0.18770
19,213:0.08923,222:0.10417,1334:0.11723
19.6,1157:0.10300,1274:0.09769,1319:0.09580
190,621:0.18071
1909,210:0.08718
1910,1088:0.10620
1912,828:0.10506
1914,740:0.10465
1916,771:0.14019,1137:0.09224
1917,210:0.08718
1921,459:0.09047
1925,1330:0.10011
1932,479:0.12236
1933,361:0.16720,740:0.10465,1123:0.14467
1934,740:0.10465
1936,328:0.08422,1330:0.13025
1938,154:0.15039,1036:0.13630
1939,398:0.18124
1941,262:0.07460,732:0.11611,740:0.10465
1943,907:0.10081,1333:0.09450
1945,417:0.07187,1333:0.09450
1947,202:0.08670
1948,732:0.11611
1950,57:0.11341,118:0.11729,773:0.08485,923:0.12538
1951,904:0.11532
1953,654:0.14220
1956,110:0.07786,168:0.09687,255:0.10802,344:0.07231,1077:0.12729,1174:0.15406
1957,83:0.08488,622:0.10019
1958,83:0.08488,356:0.15053,622:0.10019
1959,83:0.08488,620:0.09762,1052:0.13633,1236:0.15031
1960,83:0.08488,413:0.11970,792:0.06879
1961,622:0.10019,1150:0.18971
1962,488:0.11604
1degre,688:0.09582
1fa,749:0.17180
1x10,564:0.09339
2,6:0.14460,7:0.09509,9:0.12191,40:0.14418,42:0.09303,49:0.07699,58:0.10712,62:0.08745,73:0.08255,80:0.09228,85:0.08872,89:0.07629,94:0.07568,100:0.09592,110:0.10130,116:0.11376,126:0.12712,138:0.09917,161:0.16978,171:0.14235,190:0.11493,202:0.08670,205:0.09652,213:0.08923,218:0.09638,234:0.09051,247:0.11566,253:0.14849,270:0.10209,294:0.09073,295:0.14064,296:0.09754,300:0.09625,325:0.09576,334:0.09876,338:0.11189,339:0.18545,345:0.12169,373:0.08724,376:0.16264,381:0.14047,386:0.15322,391:0.12684,417:0.09351,422:0.12874,434:0.10073,469:0.14002,474:0.12350,480:0.14445,486:0.09471,489:0.15275,519:0.15591,555:0.11838,569:0.08767,583:0.12328,607:0.20092,620:0.09762,632:0.16410,661:0.10351,674:0.12874,686:0.10311,688:0.09582,694:0.11423,696:0.09229,697:0.15527,699:0.10634,704:0.11785,710:0.09904,744:0.13002,754:0.11366,756:0.12079,777:0.11694,780:0.13989,785:0.12531,787:0.11419,791:0.15830,792:0.06879,793:0.15232,794:0.11282,806:0.09572,812:0.10912,816:0.11998,822:0.10114,826:0.08713,857:0.10313,860:0.13316,866:0.13389,876:0.11694,889:0.08970,891:0.11078,902:0.10636,933:0.08899,934:0.10176,962:0.07437,1031:0.13399,1038:0.18847,1039:0.09194,1040:0.06780,1047:0.07605,1059:0.10028,1072:0.07740,1083:0.16286,1104:0.08731,1131:0.13272,1174:0.15406,1191:0.11573,1258:0.10259,1299:0.16884,1300:0.08889,1301:0.12027,1320:0.09966,1325:0.08639,1327:0.11646,1330:0.10011,1333:0.13959,1335:0.11071,1341:0.10849,1343:0.09503,1351:0.09171,1362:0.11830,1363:0.11343,1375:0.08583
2.0,173:0.11478,189:0.08417,256:0.13744,466:0.09707,674:0.12874,696:0.09229,805:0.10345,806:0.14139,970:0.11400,1098:0.11954,1225:0.09335,1229:0.08798
2.00,994:0.11627
2.01,80:0.09228,808:0.11211
2.02,692:0.10841,694:0.11423
2.05,345:0.12169
2.06,53:0.10432
2.1,759:0.10249
2.13,992:0.08849
2.15,812:0.10912
2.18,504:0.10365
2.2,780:0.13989,1229:0.08798,1263:0.08885
2.20,1001:0.12710
2.24,1239:0.07776
2.25x10,947:0.08927
2.3,63:0.12723,294:0.09073,354:0.13262,697:0.11935
2.35,571:0.09754,709:0.10611
2.38,423:0.08580
2.3x10,662:0.08283
2.4,312:0.15830
2.41,174:0.09426
2.425,1091:0.13391
2.45,371:0.11741
2.47,597:0.15577
2.49,1104:0.08731
2.5,213:0.08923,346:0.10772,511:0.12052,808:0.11211,852:0.11221,946:0.08873,1263:0.11560
2.6,755:0.13385
2.67,282:0.09871
2.7,373:0.08724,796:0.11024
2.71,7:0.09509,1211:0.12757
2.78,815:0.09867
2.8,62:0.08745,312:0.15830,513:0.13316,791:0.15830
2.80,1218:0.08746
2.85,759:0.10249,994:0.11627
2.86,692:0.10841
2.87,1066:0.08669
2.91,708:0.16702,993:0.11022
2.92,504:0.10365,971:0.12714
2.96,1382:0.09301
2.99,709:0.10611
20,25:0.07821,63:0.12723,83:0.08488,189:0.08417,212:0.07787,249:0.12647,262:0.07460,282:0.09871,294:0.09073,338:0.11189,354:0.13262,423:0.08580,522:0.07845,524:0.16749,536:0.08849,560:0.10062,564:0.12150,574:0.10401,621:0.13890,643:0.12596,673:0.08161,759:0.10249,773:0.08485,788:0.10025,797:0.08353,814:0.10509,970:0.11400,975:0.10452,999:0.13896,1007:0.11643,1040:0.06780,1064:0.11380,1080:0.12629,1104:0.08731,1173:0.11580,1188:0.14474,1300:0.11564,1355:0.10405,1380:0.09257
200,620:0.12701,622:0.10019,861:0.13689,976:0.09689,1380:0.09257
2000,259:0.10856,346:0.10772,1096:0.14678
20000,76:0.11308
200000,976:0.09689
2000degreek,572:0.07667
200degre,691:0.12997
20degre,443:0.10104,713:0.11615
20degreec,1316:0.09957
20in,1212:0.09950
21,185:0.08663
210,620:0.12701,1088:0.10620,1258:0.10259
21153,259:0.10856
21350,1263:0.08885
215000,1292:0.09525
21700,717:0.08450
219,1103:0.15313
22,83:0.08488,976:0.07447,1315:0.12052,1344:0.10934
220,617:0.15281,621:0.13890
220000,915:0.15031,1000:0.10235
225,272:0.07723
2250,57:0.11341
23,529:0.08546,759:0.10249,1399:0.14772
23000,401:0.08311
234,828:0.10506
238000,423:0.08580
24,303:0.14739,1007:0.11643,1278:0.10764,1344:0.10934,1399:0.14772
2400degre,1101:0.15096
24500,1010:0.12108
25,22:0.13782,193:0.08158,283:0.10563,511:0.12052,569:0.08767,575:0.09243,621:0.13890,711:0.12884,773:0.08485,786:0.10768,1102:0.19897,1285:0.17915
25.1,571:0.09754
250,622:0.10019
25000,493:0.12450,524:0.16749,576:0.07308,805:0.13459,1229:0.08798
250000,85:0.08872,401:0.08311,554:0.11399
2520,1092:0.09411
2550,571:0.09754
25degre,708:0.16702,717:0.08450
26,9:0.08253,204:0.11284,473:0.18311,1204:0.08106,1236:0.15031
26.6,1004:0.13172
26000,554:0.11399,1161:0.13389
2601,20:0.11783
275,118:0.11729,622:0.10019
28,1039:0.11961,1201:0.07478
280,621:0.18071,1292:0.09525
29,189:0.08417,529:0.08546
29.5,272:0.10048
29.70,1091:0.13391
2bi,1350:0.13160
2n,249:0.12647
2p,659:0.12736
2x10,413:0.11970
3,7:0.09509,28:0.12569,40:0.11082,42:0.12104,45:0.11966,63:0.12723,69:0.12625,89:0.07629,110:0.10130,116:0.11376,126:0.12712,157:0.10193,161:0.16978,165:0.10589,190:0.11493,202:0.11280,206:0.12098,218:0.09638,234:0.09051,247:0.11566,249:0.12647,252:0.11927,270:0.10209,272:0.07723,282:0.09871,293:0.13012,345:0.12169,359:0.14026,373:0.08724,381:0.09509,417:0.07187,430:0.17899,466:0.09707,474:0.12350,486:0.09471,489:0.11741,510:0.17319,522:0.07845,536:0.11513,548:0.08978,569:0.08767,583:0.12328,605:0.11942,620:0.09762,634:0.13184,685:0.09452,695:0.08715,696:0.09229,697:0.11935,699:0.10634,704:0.07978,710:0.09904,717:0.08450,739:0.08722,744:0.13002,756:0.12079,766:0.09733,777:0.11694,780:0.13989,785:0.16303,793:0.11708,794:0.08672,816:0.11998,856:0.12796,857:0.10313,858:0.11307,879:0.20520,934:0.10176,948:0.11450,962:0.07437,985:0.11488,1038:0.18847,1040:0.06780,1059:0.10028,1062:0.15462,1074:0.12279,1075:0.10744,1077:0.12729,1088:0.10620,1166:0.10888,1174:0.15406,1201:0.07478,1212:0.09950,1213:0.10264,1313:0.06389,1325:0.08639,1328:0.10197,1333:0.09450,1335:0.11071,1343:0.09503,1350:0.13160,1354:0.11952,1356:0.08600,1362:0.11830,1375:0.08583
3.0,52:0.11382,189:0.08417,343:0.13952,713:0.11615,766:0.09733,857:0.10313,858:0.11307,859:0.10170,948:0.11450,1300:0.08889
3.00,234:0.09051
3.04,662:0.08283
3.07,986:0.08898
3.1,189:0.10951,505:0.15199,1300:0.08889
3.11,816:0.11998
3.12,79:0.11381,282:0.09871,1284:0.11875
3.13,986:0.08898
3.15,986:0.08898
3.2,282:0.09871
3.25,1143:0.13204
3.2x10,671:0.13149
3.3,522:0.07845
3.392,692:0.10841
3.4,709:0.10611
3.44,970:0.11400
3.5,63:0.12723,82:0.08452,125:0.10244,189:0.08417,674:0.12874,687:0.15718,915:0.15031,976:0.07447,1000:0.10235,1225:0.09335
3.50,704:0.07978
3.53,628:0.10149
3.55,1258:0.10259
3.6,187:0.08674
3.67,7:0.09509,225:0.08041
3.7,63:0.12723,337:0.14974
3.72,1351:0.11932
3.74,1292:0.12392
3.75,354:0.13262,1156:0.11095
3.8,662:0.08283
3.81,1284:0.11875
3.85,1216:0.10432,1350:0.13160
3.86,58:0.10712
3.899,675:0.08900
3.8x10,1107:0.10303
3.9,566:0.11333,632:0.16410
3.98,685:0.09452,1385:0.10995
3.9x10,675:0.08900
30,57:0.11341,83:0.08488,123:0.09706,129:0.09440,165:0.10589,195:0.11124,204:0.11284,212:0.07787,272:0.07723,282:0.09871,443:0.10104,497:0.11348,520:0.10151,524:0.16749,536:0.08849,557:0.11788,558:0.13039,614:0.10246,673:0.08161,773:0.08485,872:0.10665,976:0.07447,1077:0.12729,1104:0.08731,1166:0.10888,1241:0.11361,1263:0.08885,1300:0.08889,1303:0.10821,1320:0.12966
300,266:0.09702,766:0.09733,858:0.11307,948:0.11450,976:0.07447,1021:0.17981,1095:0.11104,1102:0.19897,1258:0.10259
3000,1229:0.08798
30000,807:0.19640,1134:0.09114,1324:0.11699
3000000,443:0.10104
3000degreek,1318:0.15637
3014,1334:0.11723
304,620:0.09762
30degre,443:0.10104,1077:0.12729
30th,488:0.11604
31.75,464:0.10896
317000,1351:0.09171
32,771:0.14019,1201:0.07478
32000,438:0.15612
325,272:0.07723,599:0.09466
3300degreer,695:0.08715
333,793:0.11708,794:0.08672
3344,689:0.09642
3399,986:0.08898
34,566:0.11333,674:0.12874,815:0.09867,1338:0.10950
34.5,162:0.10310
3400,1167:0.10591
3430,464:0.10896
35,303:0.14739,422:0.12874,599:0.09466,622:0.10019,632:0.16410,812:0.10912,946:0.08873,959:0.10732,1201:0.07478,1218:0.08746
350,622:0.10019,721:0.07158,1278:0.10764,1324:0.11699
3500,347:0.12494
35000,85:0.08872
350000,272:0.07723
352kmno,621:0.13890
36,82:0.08452,1069:0.16959
36000,280:0.12304,1147:0.07531
3600degreek,1316:0.09957
3660,1159:0.13493
37,440:0.14698,1258:0.10259
370,1150:0.14582
3792,959:0.13962
38,344:0.07231,780:0.13989,1191:0.11573
3800degre,1101:0.15096
381,773:0.08485
39,197:0.12479,1201:0.07478
39000,438:0.15612
3ft,430:0.17899,466:0.09707
4,7:0.09509,42:0.09303,77:0.10871,79:0.11381,80:0.09228,89:0.07629,110:0.07786,161:0.16978,165:0.08139,186:0.10729,190:0.11493,199:0.08528,218:0.12540,247:0.11566,270:0.10209,293:0.16928,314:0.11247,338:0.11189,343:0.13952,381:0.09509,421:0.11148,430:0.26439,442:0.10193,489:0.11741,564:0.09339,567:0.11157,569:0.08767,695:0.08715,696:0.09229,699:0.10634,704:0.07978,777:0.11694,780:0.13989,805:0.10345,876:0.11694,879:0.20520,934:0.10176,959:0.10732,975:0.10452,996:0.09279,1059:0.10028,1074:0.12279,1075:0.10744,1101:0.15096,1127:0.10432,1137:0.09224,1163:0.11963,1214:0.11522,1263:0.08885,1278:0.10764,1313:0.06389,1333:0.12295,1341:0.10849,1351:0.09171
4.0,514:0.14776,857:0.10313,959:0.10732,1290:0.10960,1336:0.10477,1338:0.10950
4.00,1159:0.13493,1226:0.09185
4.2,1278:0.10764
4.24,53:0.10432
4.36,1353:0.13337
4.5,82:0.08452,272:0.07723,346:0.10772,1381:0.09217
4.53,197:0.09592,1351:0.11932
4.54,1212:0.09950
4.60,1292:0.12392
4.65,1351:0.11932
4.7,697:0.11935,1107:0.10303
4.76,1224:0.09147
4.981,693:0.11552
40,207:0.10707,222:0.10417,289:0.10132,421:0.11148,423:0.11163,564:0.13794,646:0.09096,668:0.13524,1078:0.18962,1080:0.12629,1081:0.20577,1159:0.13493,1192:0.12764,1355:0.10405
400,272:0.07723,976:0.07447,993:0.11022,1150:0.14582
4000,187:0.08674,976:0.07447,1003:0.12183,1028:0.10832
40000,524:0.16749,806:0.09572,811:0.08698
400000,53:0.10432,493:0.09570
4000degreek,572:0.07667
4047,77:0.08356
40degre,717:0.08450
41,529:0.08546
4100,1258:0.10259
42,721:0.07158,962:0.07437
44,566:0.11333,622:0.10019,1078:0.20566,1239:0.07776
440,1134:0.09114
4412,443:0.14925
45,52:0.14808,165:0.13039,205:0.14257,262:0.07460,289:0.14966,561:0.10511,679:0.11300,689:0.09642,872:0.10665,1167:0.13779,1201:0.07478,1205:0.09967,1285:0.17915,1290:0.14259
4500,1143:0.13204,1230:0.11231
45000,805:0.10345
45degre,713:0.15111,782:0.13438,1338:0.14246,1341:0.10849
46,1201:0.07478,1338:0.10950
460,972:0.10737
479,843:0.11272,889:0.08970
48,636:0.10405,1378:0.14506
4950,1009:0.12205
49degre,709:0.10611
4degre,711:0.12884
4ft,430:0.17899
4th,1159:0.13493
4x10,564:0.09339
5,7:0.09509,9:0.14675,27:0.12623,49:0.10016,58:0.10712,63:0.12723,110:0.07786,113:0.13529,190:0.11493,197:0.09592,218:0.09638,225:0.08041,234:0.09051,292:0.09622,314:0.11247,325:0.09576,338:0.11189,340:0.16749,347:0.12494,354:0.13262,372:0.13832,373:0.08724,377:0.13334,406:0.10162,421:0.11148,423:0.08580,443:0.10104,464:0.10896,474:0.12350,493:0.09570,569:0.08767,675:0.11579,679:0.11300,739:0.08722,777:0.15215,792:0.06879,793:0.11708,794:0.08672,796:0.11024,852:0.11221,904:0.11532,912:0.11776,928:0.07558,934:0.10176,976:0.07447,985:0.11488,996:0.09279,1040:0.06780,1080:0.12629,1106:0.12034,1156:0.14435,1188:0.16433,1212:0.09950,1216:0.10432,1218:0.08746,1310:0.08798,1313:0.06389,1333:0.09450,1354:0.11952,1356:0.12703,1399:0.14772
5.0,608:0.13184,661:0.10351,748:0.11160,996:0.09279,1151:0.11886
5.04,704:0.07978
5.5,205:0.09652,776:0.17613,947:0.08927,999:0.10681
5.7,1258:0.10259
5.73,1258:0.10259
5.8,9:0.10737,63:0.12723,372:0.13832,423:0.08580,569:0.11407,1231:0.10706,1390:0.10814
50,139:0.12459,544:0.13812,717:0.08450,721:0.07158,773:0.08485,797:0.08353,829:0.11478,915:0.15031,947:0.08927,959:0.10732,999:0.15777,1000:0.10235,1104:0.11360,1166:0.10888,1201:0.07478,1277:0.09382,1344:0.10934
500,83:0.08488,274:0.09270,1021:0.17981,1022:0.18179,1230:0.11231
5000,193:0.08158,858:0.11307,948:0.11450,983:0.14834
50000,436:0.17828,807:0.15096,1274:0.09769,1319:0.09580
500000,1292:0.09525
5000000,187:0.08674
500degre,302:0.12319
50degre,709:0.10611,797:0.08353,1274:0.09769,1319:0.09580
51,163:0.07347
52,163:0.09559,432:0.10529
525,1102:0.19897
53,793:0.11708,794:0.08672
533,548:0.08978
54,443:0.10104,1040:0.06780
55,631:0.16589,632:0.16410,674:0.12874
55.6,946:0.08873
55000,1157:0.10300
55degre,792:0.06879
562,620:0.09762
58,59:0.09806,1338:0.10950
58.1,245:0.12420
582000,1351:0.09171
5d,478:0.15466
5th,1036:0.13630,1378:0.14506
6,9:0.08253,19:0.16382,22:0.13782,161:0.16978,196:0.11614,218:0.09638,225:0.08041,247:0.11566,354:0.13262,426:0.11837,442:0.10193,546:0.11991,567:0.11157,605:0.11942,634:0.13184,635:0.12014,636:0.13538,677:0.09086,685:0.12298,690:0.13238,699:0.10634,757:0.09001,777:0.15215,793:0.15232,794:0.12809,811:0.08698,816:0.11998,946:0.11544,972:0.13969,975:0.10452,1062:0.15462,1064:0.11380,1191:0.11573,1218:0.08746,1223:0.15342,1270:0.12365,1292:0.09525,1296:0.10156,1307:0.12326,1313:0.06389,1315:0.15680,1341:0.10849,1355:0.13537
6.0,84:0.10846,861:0.13689
6.00,1289:0.09470
6.2,713:0.11615
6.25,996:0.12072
6.28,234:0.09051
6.3,373:0.08724
6.4,971:0.12714
6.5,721:0.07158,996:0.09279,1353:0.13337
6.8,546:0.11991,605:0.17640,689:0.14243,690:0.13238,708:0.16702,1355:0.13537
6.85,371:0.11741,604:0.12308
6.86,685:0.09452,1076:0.14923,1349:0.11203,1354:0.11952
6.9,686:0.10311
6.98,1353:0.17352
60,52:0.11382,204:0.11284,564:0.12150,566:0.11333,621:0.13890,622:0.10019,636:0.10405,797:0.08353,829:0.11478,859:0.10170,917:0.08311,1201:0.07478,1218:0.11379,1250:0.09056,1289:0.09470,1307:0.09474,1337:0.11785,1344:0.10934,1354:0.11952
600,84:0.10846,1003:0.12183,1020:0.12601,1025:0.11431
6000,554:0.11399,569:0.08767,1003:0.12183,1230:0.11231
60000,53:0.10432,806:0.14139
600000,1292:0.09525
6000degreek,1274:0.09769,1319:0.09580
60degre,675:0.11579,709:0.10611,792:0.06879,1341:0.10849
61,1334:0.11723
62,432:0.10529,1277:0.09382
625,272:0.07723
629,1330:0.10011
63,185:0.08663
63a2xx,780:0.13989
63a4xx,780:0.13989
64,808:0.11211
64a010,205:0.09652
65,900:0.20601,1052:0.13633,1172:0.11633,1292:0.09525
650,438:0.15612,506:0.13901
6500,571:0.09754
655,858:0.11307
65a004,1338:0.10950
65degre,1077:0.12729
66,1201:0.07478
660,620:0.09762,948:0.11450
662,654:0.14220
68,673:0.08161
680,603:0.09837
6in,1315:0.12052
7,110:0.07786,118:0.11729,234:0.09051,304:0.08968,427:0.10649,602:0.16386,603:0.12798,604:0.19718,677:0.09086,686:0.10311,773:0.08485,1229:0.08798,1313:0.06389,1351:0.09171
7.08,1354:0.11952
7.2,529:0.08546,686:0.10311
7.30,1172:0.11633
7.35,1062:0.15462
7.4,62:0.08745,1381:0.09217
7.41,1091:0.13391
7.5,713:0.11615,1378:0.14506
7.66,992:0.08849
7.7,274:0.09270
7.8,709:0.10611
7.95,571:0.09754
70,426:0.11837,632:0.16410,674:0.12874,999:0.13896,1201:0.07478,1229:0.11446
700,616:0.12696,721:0.07158
7000,1098:0.11954,1100:0.12600
7000effici,1204:0.08106
704,266:0.09702,422:0.12874,704:0.07978,1217:0.12838
707a,792:0.06879
7090,1006:0.15530
7157,388:0.11233
7225226,417:0.07187
74,511:0.12052
75,673:0.08161,829:0.11478,1289:0.09470
750000,272:0.07723
75degre,1077:0.12729
76,1168:0.13090,1342:0.09028
78000,1065:0.12328
78847,259:0.10856
79.5degre,713:0.15111
7a,1040:0.06780
7c,1040:0.06780
8,58:0.10712,197:0.09592,199:0.08528,210:0.08718,218:0.09638,219:0.10048,239:0.12101,252:0.09168,338:0.11189,342:0.09409,349:0.09649,372:0.13832,423:0.11163,442:0.10193,522:0.10207,529:0.08546,546:0.11991,628:0.10149,654:0.14220,677:0.09086,690:0.13238,691:0.12997,695:0.08715,696:0.09229,755:0.17415,791:0.15830,808:0.11211,866:0.13389,972:0.10737,1040:0.06780,1061:0.08454,1106:0.12034,1212:0.09950,1214:0.11522,1224:0.09147,1270:0.12365,1313:0.06389,1355:0.10405,1378:0.14506
8.238,127:0.16382
8.6,1218:0.08746
8.60,1285:0.17915
80,216:0.09356,426:0.11837,673:0.08161,768:0.16458,1003:0.12183,1107:0.10303,1201:0.07478
800,867:0.11916,1025:0.11431,1100:0.12600
8000,1161:0.13389,1196:0.14287
81,529:0.08546
81944,931:0.18310
826,571:0.09754
828,793:0.11708,794:0.08672
83000,807:0.15096
84,1342:0.09028
85,1350:0.13160
85.5,571:0.09754
850,867:0.11916
8500,558:0.13039
85degre,688:0.09582
86,567:0.11157,1163:0.11963
8640,274:0.09270
88.8,673:0.08161
897,1047:0.07605
8n,1061:0.10998
8x10,225:0.08041
9,9:0.08253,40:0.11082,197:0.14169,198:0.09389,213:0.08923,252:0.09168,278:0.11986,427:0.10649,675:0.11579,685:0.12298,695:0.08715,755:0.13385,802:0.13170,972:0.10737,985:0.11488,1292:0.09525,1355:0.10405
9.0,1336:0.10477
9.17,1239:0.07776
9.2,1395:0.16124
9.5,272:0.10048
9.6,708:0.16702,1355:0.13537
9.65,1292:0.09525,1351:0.11932
9.758,259:0.10856
9.9,413:0.11970
90,225:0.08041,510:0.17319,567:0.11157,839:0.11755,867:0.15503,993:0.11022,1005:0.12565,1051:0.10107,1095:0.11104,1127:0.10432,1162:0.14393,1164:0.10168,1167:0.10591,1258:0.10259,1307:0.12326
900,438:0.15612,867:0.11916,986:0.08898
90000,915:0.15031,1000:0.10235
90degre,711:0.12884
91,282:0.09871
92,1352:0.09770
94,432:0.10529
954,154:0.15039
962,225:0.08041
97,423:0.08580
97000,423:0.08580
979,705:0.10172
99degre,709:0.15674
=pressur,811:0.08698
a50f06,923:0.12538
a51j04,924:0.10392
a52b06,924:0.10392
a=01,1327:0.11646
a=012,1327:0.11646
a=2,1327:0.11646
ab,744:0.13002
abbrevi,122:0.10148
abil,51:0.11331,77:0.08356,738:0.12246
abl,99:0.08974,132:0.08551,581:0.16049,695:0.08715,763:0.15257,908:0.10837,914:0.11391,986:0.08898,1114:0.10654
ablat,82:0.10996,274:0.12061,536:0.08849,553:0.20697,587:0.13772,1065:0.16039,1096:0.19096,1097:0.18248,1098:0.17657,1099:0.26437,1100:0.20186,1101:0.19640,1226:0.13567,1241:0.16781,1279:0.10955
ablatedlength,1065:0.12328
abovement,46:0.16636
abrupt,439:0.11296,662:0.08283,992:0.08849,1039:0.09194
absenc,152:0.10954,499:0.10438,757:0.09001,966:0.09565,1147:0.07531,1237:0.13364,1281:0.10060,1321:0.09673,1323:0.14156
absent,628:0.10149
absolut,62:0.11378,414:0.10561,460:0.14002,474:0.12350,562:0.09807,987:0.09606,1003:0.15850,1010:0.12108,1035:0.09974,1261:0.09077,1395:0.16124
absorb,163:0.07347,164:0.08352,353:0.12206,373:0.08724,881:0.11690,1147:0.07531,1200:0.11456,1244:0.07543,1279:0.10955
absorpt,166:0.10890,357:0.15118,620:0.12701,1316:0.09957,1346:0.12513
abstract,154:0.15039,479:0.12236
abund,718:0.12029
academ,344:0.07231
acceler,29:0.09611,33:0.09250,34:0.16581,51:0.14743,83:0.08488,164:0.12337,208:0.13030,290:0.16504,292:0.09622,330:0.14182,339:0.18545,459:0.09047,562:0.09807,595:0.10122,620:0.09762,662:0.08283,698:0.12245,768:0.16458,788:0.10025,813:0.13357,814:0.10509,832:0.29219,896:0.14491,967:0.19614,1201:0.07478,1219:0.19402,1242:0.09885,1346:0.12513
acceleromet,882:0.18560
accentu,1169:0.11591
accept,101:0.08279,253:0.11413,388:0.11233,575:0.09243,656:0.10068,723:0.12516,753:0.10282,819:0.14180,841:0.17299,1002:0.11455,1019:0.10242,1153:0.11949,1242:0.09885,1261:0.09077,1346:0.12513,1347:0.10113,1370:0.10065
access,1105:0.13439
accident,715:0.14382
accommod,168:0.09687,518:0.15074,974:0.10568,1056:0.09378,1147:0.09798,1239:0.07776
accompani,53:0.10432,109:0.11297,152:0.10954,207:0.10707,261:0.11561,296:0.09754,520:0.10151,589:0.10016,638:0.10517,724:0.11983,797:0.08353,1147:0.07531,1277:0.09382
accomplish,47:0.10547,163:0.07347,172:0.09802,192:0.10711,355:0.15006,363:0.09594,579:0.10781,718:0.12029,727:0.10717,968:0.11101,1147:0.09798
accord,110:0.07786,125:0.10244,133:0.10853,134:0.11152,152:0.10954,179:0.09884,184:0.11861,188:0.10384,263:0.15154,297:0.11620,317:0.09864,377:0.13334,403:0.13756,410:0.11796,455:0.10863,458:0.09715,542:0.10466,573:0.11526,585:0.13960,614:0.10246,625:0.08241,667:0.09660,718:0.12029,818:0.13949,827:0.08547,874:0.09619,883:0.13256,899:0.11305,927:0.07472,934:0.10176,1014:0.19335,1035:0.09974,1036:0.13630,1061:0.08454,1072:0.10070,1075:0.10744,1127:0.13573,1136:0.10042,1186:0.16542,1199:0.09504,1244:0.07543,1304:0.15471,1373:0.09202,1375:0.08583
account,22:0.13782,25:0.07821,26:0.19046,42:0.09303,44:0.08839,52:0.11382,63:0.12723,72:0.09476,78:0.10169,87:0.13299,97:0.09785,132:0.11125,134:0.11152,149:0.09511,170:0.10020,171:0.10942,172:0.09802,182:0.13355,202:0.08670,207:0.10707,210:0.08718,246:0.12463,284:0.14585,294:0.09073,305:0.11575,309:0.11207,328:0.08422,352:0.10144,362:0.18027,424:0.15122,429:0.21282,444:0.15248,445:0.15423,458:0.09715,468:0.13829,508:0.14235,528:0.12667,531:0.13022,544:0.13812,572:0.07667,573:0.11526,594:0.18317,596:0.14498,600:0.11629,610:0.12247,616:0.12696,619:0.21781,652:0.15805,667:0.09660,683:0.09382,697:0.11935,714:0.13932,737:0.14823,766:0.09733,786:0.10768,807:0.15096,818:0.13949,820:0.10040,825:0.09707,826:0.08713,903:0.10235,923:0.12538,927:0.07472,957:0.13797,975:0.10452,984:0.13595,1012:0.12865,1027:0.14872,1048:0.19401,1050:0.16882,1178:0.14397,1201:0.07478,1211:0.12757,1221:0.13597,1226:0.09185,1235:0.09252,1248:0.07819,1286:0.14902,1310:0.08798,1339:0.09946,1364:0.10855,1392:0.09082
accru,33:0.09250
accumul,186:0.10729,835:0.24976,837:0.12911
accur,24:0.09382,25:0.07821,32:0.11294,36:0.12117,49:0.07699,50:0.11449,54:0.10171,55:0.12481,72:0.12328,101:0.08279,127:0.12592,165:0.08139,186:0.13959,193:0.08158,232:0.15038,237:0.12704,262:0.07460,294:0.09073,320:0.27333,329:0.06336,362:0.18027,365:0.10857,366:0.14186,370:0.11441,381:0.09509,411:0.15779,423:0.08580,443:0.13146,455:0.10863,459:0.09047,461:0.14606,467:0.10461,476:0.10132,477:0.13050,497:0.11348,567:0.11157,622:0.10019,628:0.10149,634:0.13184,639:0.15111,671:0.13149,685:0.09452,687:0.15718,705:0.10172,734:0.10471,753:0.13377,760:0.11175,873:0.11297,921:0.11143,927:0.07472,936:0.11719,947:0.08927,962:0.09675,980:0.11116,1000:0.10235,1053:0.11116,1066:0.08669,1068:0.11771,1070:0.14036,1134:0.09114,1140:0.20544,1153:0.11949,1179:0.09982,1182:0.13178,1207:0.10980,1215:0.13775,1219:0.13135,1231:0.10706,1246:0.08702,1310:0.08798,1311:0.16450,1330:0.10011,1343:0.12363,1375:0.08583,1386:0.13273
accuraci,54:0.13233,57:0.11341,70:0.11201,92:0.10066,140:0.10775,155:0.09638,160:0.08341,162:0.10310,163:0.09559,193:0.10613,213:0.08923,231:0.14016,232:0.17297,235:0.12563,237:0.12704,261:0.11561,266:0.09702,275:0.12563,292:0.12518,309:0.11207,325:0.12458,391:0.12684,433:0.07804,461:0.19003,470:0.14921,479:0.15920,498:0.12215,515:0.12620,522:0.07845,527:0.14775,530:0.13536,548:0.08978,585:0.13960,622:0.10019,659:0.12736,677:0.09086,750:0.16455,767:0.11764,786:0.10768,788:0.10025,842:0.18430,843:0.11272,851:0.12684,853:0.20599,889:0.08970,896:0.14491,921:0.11143,923:0.12538,927:0.07472,1009:0.12205,1043:0.11193,1047:0.07605,1062:0.15462,1078:0.12837,1092:0.09411,1113:0.12043,1148:0.16689,1182:0.10129,1209:0.09252,1226:0.09185,1241:0.11361,1246:0.12854,1248:0.07819,1250:0.09056,1272:0.14526,1302:0.10888,1312:0.14542,1335:0.11071,1342:0.09028,1355:0.10405,1375:0.08583,1377:0.13323,1384:0.11719,1388:0.19494,1392:0.09082
acet,1127:0.10432
achiev,14:0.07551,163:0.09559,172:0.09802,184:0.11861,252:0.09168,342:0.09409,415:0.12768,416:0.09126,455:0.10863,465:0.13748,486:0.09471,488:0.11604,525:0.13955,552:0.09796,595:0.10122,644:0.10886,677:0.09086,720:0.10756,733:0.10900,792:0.08950,820:0.10040,838:0.16532,869:0.08378,1051:0.10107,1089:0.13903,1095:0.11104,1143:0.17179,1205:0.09967,1207:0.10980,1246:0.08702,1263:0.08885,1264:0.10352,1268:0.08247,1323:0.14156,1347:0.10113
ackeret,14:0.07551,297:0.11620,390:0.12757,1249:0.16450
acoust,65:0.15109,75:0.20308,113:0.13529,151:0.14488,209:0.09228,640:0.08356,720:0.15888,721:0.09313,722:0.11262,724:0.22111,727:0.10717,899:0.11305,1208:0.20341,1244:0.15683,1276:0.20250
acquir,523:0.12520,1255:0.11106
acquisit,701:0.09885
acr,216:0.09356
acrodynam,1207:0.14285
across,15:0.12393,45:0.11966,50:0.11449,62:0.08745,82:0.08452,89:0.07629,101:0.10772,109:0.11297,110:0.07786,128:0.10869,177:0.10564,190:0.11493,212:0.07787,213:0.08923,216:0.09356,230:0.10240,257:0.10846,277:0.09891,349:0.09649,374:0.13301,459:0.09047,565:0.10160,576:0.07308,603:0.09837,606:0.11252,667:0.09660,727:0.10717,737:0.14823,805:0.10345,808:0.11211,949:0.12786,960:0.12493,962:0.07437,966:0.09565,975:0.10452,990:0.11268,1127:0.10432,1198:0.09412,1202:0.08884,1226:0.09185,1239:0.07776,1244:0.09813,1269:0.17142,1277:0.09382,1289:0.09470
acrothermochemistri,1254:0.12376
acrothermoelast,12:0.13071
act,44:0.08839,51:0.14743,52:0.11382,87:0.13299,104:0.13081,174:0.09426,202:0.08670,210:0.08718,267:0.10687,427:0.10649,506:0.13901,509:0.18064,582:0.15933,894:0.12574,895:0.14111,899:0.11305,1005:0.12565,1059:0.10028,1256:0.23411,1304:0.11891,1329:0.12008,1333:0.12295
action,100:0.09592,170:0.10020,211:0.10689,424:0.15122,821:0.17591,860:0.13316,934:0.15031,992:0.08849,1244:0.12815,1255:0.11106
activ,83:0.11044,185:0.08663,518:0.13277,622:0.10019,871:0.18853,908:0.10837,1061:0.08454,1103:0.15313,1131:0.17268,1241:0.11361,1268:0.08247,1284:0.11875
actual,44:0.08839,73:0.08255,80:0.09228,97:0.09785,123:0.09706,198:0.09389,201:0.10285,210:0.08718,211:0.10689,236:0.11738,283:0.10563,292:0.09622,304:0.08968,363:0.09594,435:0.10810,443:0.10104,453:0.10279,459:0.11770,500:0.13575,618:0.11958,671:0.13149,695:0.08715,729:0.10946,739:0.08722,826:0.08713,829:0.11478,847:0.14630,928:0.07558,1016:0.17162,1071:0.14014,1127:0.10432,1133:0.17433,1134:0.09114,1195:0.12107,1198:0.09412,1225:0.09335,1275:0.15339,1342:0.09028,1361:0.11718,1382:0.09301,1394:0.12315
actur,201:0.10285
ad,499:0.08023,548:0.08978,717:0.08450,768:0.16458,875:0.20679,903:0.10235,1095:0.11104,1229:0.08798,1268:0.08247,1328:0.10197,1355:0.10405
adam,916:0.11641,1299:0.16884
adapt,209:0.09228,342:0.09409,760:0.11175,799:0.09430,861:0.13689,901:0.12582,923:0.12538,1077:0.12729,1190:0.13098
add,78:0.10169,497:0.11348,499:0.08023,731:0.09935
addendum,875:0.20679,983:0.14834,1040:0.06780
addit,8:0.12653,32:0.11294,44:0.08839,58:0.10712,60:0.12121,83:0.12538,87:0.13299,94:0.07568,101:0.08279,113:0.17602,124:0.10292,134:0.11152,162:0.10310,191:0.10395,196:0.11614,198:0.09389,199:0.08528,210:0.08718,212:0.07787,219:0.10048,220:0.11928,225:0.08041,237:0.12704,262:0.07460,282:0.09871,285:0.19699,287:0.18126,290:0.12685,295:0.14064,299:0.12476,330:0.14182,352:0.10144,360:0.12005,364:0.07888,386:0.15322,399:0.18650,414:0.10561,452:0.08306,506:0.13901,508:0.14235,558:0.13039,573:0.11526,576:0.07308,588:0.10045,599:0.09466,610:0.12247,623:0.10683,627:0.12092,628:0.10149,645:0.10949,649:0.09888,678:0.14924,695:0.08715,705:0.10172,710:0.09904,721:0.10573,766:0.09733,773:0.08485,785:0.12531,788:0.10025,797:0.08353,812:0.10912,814:0.10509,859:0.10170,921:0.11143,936:0.11719,952:0.12951,954:0.15871,957:0.13797,974:0.10568,989:0.10939,1001:0.12710,1028:0.10832,1037:0.14979,1039:0.09194,1055:0.12768,1095:0.11104,1103:0.15313,1129:0.13273,1164:0.10168,1195:0.09306,1201:0.07478,1203:0.10934,1205:0.09967,1207:0.18655,1218:0.08746,1248:0.07819,1260:0.13607,1262:0.12754,1289:0.09470,1290:0.10960,1325:0.08639,1328:0.17325,1335:0.11071,1351:0.11932,1361:0.11718
adequ,54:0.10171,89:0.07629,92:0.10066,93:0.13992,171:0.10942,179:0.09884,184:0.11861,196:0.11614,210:0.08718,225:0.08041,441:0.09020,557:0.11788,567:0.11157,603:0.12798,618:0.11958,729:0.10946,801:0.10970,927:0.07472,1039:0.09194,1136:0.10042
adequaci,459:0.09047,652:0.15805
adiabat,53:0.10432,54:0.10171,80:0.09228,84:0.10846,90:0.14750,217:0.13580,340:0.16749,413:0.11970,426:0.11837,480:0.14445,505:0.19774,623:0.10683,645:0.10949,646:0.11835,941:0.14946,986:0.08898,1105:0.17485,1180:0.10824,1327:0.11646,1335:0.11071
adjac,100:0.09592,121:0.12219,134:0.11152,168:0.09687,211:0.10689,219:0.10048,282:0.09871,341:0.09930,422:0.12874,434:0.10073,576:0.07308,588:0.10045,589:0.10016,644:0.10886,647:0.21838,695:0.08715,697:0.15527,869:0.08378,971:0.12714,989:0.10939,1144:0.08974,1202:0.11558,1288:0.13742
adjoin,665:0.13135
adjoint,379:0.12202
adjust,178:0.16933,204:0.11284,358:0.16426,366:0.10904,426:0.11837,458:0.09715,576:0.07308,588:0.10045,1195:0.09306,1202:0.11558,1257:0.12209
administr,1065:0.12328
admiss,1128:0.12861,1373:0.09202
admit,62:0.08745,191:0.10395,730:0.09813,1184:0.12912,1372:0.10745
admixtur,481:0.13455
adopt,107:0.15490,149:0.09511,640:0.08356,704:0.07978,733:0.10900,734:0.10471,1108:0.10084
adsorpt,585:0.13960
advanc,71:0.20219,72:0.09476,132:0.08551,187:0.08674,315:0.07389,406:0.10162,486:0.09471,521:0.12628,718:0.12029,739:0.08722,892:0.15800,933:0.08899,1052:0.13633,1160:0.13235,1244:0.07543,1294:0.10715,1295:0.16884,1362:0.11830
advantag,33:0.09250,34:0.11225,77:0.08356,102:0.15725,185:0.11271,206:0.09299,225:0.08041,244:0.07071,253:0.11413,477:0.13050,611:0.11193,747:0.13085,869:0.08378,876:0.11694,889:0.08970,962:0.07437,1044:0.12580,1054:0.13353,1086:0.17083,1137:0.09224,1147:0.07531,1239:0.10117,1289:0.09470,1313:0.06389,1388:0.14984
advent,293:0.13012
advers,40:0.11082,54:0.10171,55:0.12481,62:0.08745,79:0.11381,145:0.12995,466:0.09707,481:0.13455,489:0.11741,511:0.12052,522:0.10207,673:0.08161,792:0.06879,798:0.06476,991:0.10541,1040:0.06780,1075:0.10744,1094:0.12831,1169:0.11591,1225:0.14956,1261:0.11809,1380:0.09257,1386:0.13273
advisori,314:0.11247,1385:0.10995
advoc,390:0.12757,592:0.15049
aec,830:0.10472,1055:0.12768
aeolotrop,1392:0.09082
aerelast,12:0.13071
aerfoil,798:0.06476
aero,22:0.13782
aero2441,229:0.10293
aeroballist,505:0.15199
aerocosmonaut,718:0.12029
aerodynam,1:0.12389,5:0.19637,11:0.13922,13:0.12969,14:0.12097,29:0.12504,32:0.11294,36:0.12117,44:0.13057,51:0.18154,52:0.14808,66:0.19377,73:0.08255,77:0.10871,95:0.13984,120:0.13959,129:0.09440,137:0.27689,141:0.14037,142:0.13038,163:0.11770,164:0.08352,172:0.14479,185:0.08663,202:0.13890,203:0.17065,204:0.14681,205:0.09652,216:0.09356,225:0.10461,237:0.12704,244:0.07071,272:0.07723,277:0.09891,284:0.14585,287:0.18126,289:0.10132,297:0.11620,329:0.09359,337:0.14974,342:0.09409,360:0.12005,379:0.12202,390:0.16597,391:0.18736,406:0.10162,415:0.16612,434:0.10073,441:0.15324,442:0.10193,452:0.08306,453:0.15184,464:0.10896,481:0.13455,486:0.09471,499:0.10438,530:0.13536,536:0.08849,544:0.13812,546:0.11991,567:0.14515,592:0.15049,598:0.19019,599:0.09466,606:0.16621,608:0.13184,625:0.08241,627:0.12092,632:0.16410,634:0.17153,635:0.12014,638:0.15536,650:0.16578,658:0.15526,671:0.13149,685:0.12298,688:0.14154,689:0.12545,698:0.12245,704:0.07978,707:0.10235,708:0.16702,709:0.10611,711:0.16762,712:0.12140,715:0.14382,716:0.15359,717:0.12482,719:0.14086,746:0.12509,748:0.14520,749:0.22434,753:0.18283,759:0.15139,780:0.13989,781:0.12848,783:0.16091,792:0.06879,794:0.08672,798:0.06476,801:0.14273,812:0.14197,813:0.17378,814:0.10509,815:0.14574,859:0.15022,860:0.19670,861:0.13689,877:0.23529,886:0.16893,892:0.15800,894:0.09665,896:0.14491,899:0.14708,902:0.10636,917:0.08311,919:0.11432,925:0.17340,927:0.07472,933:0.08899,939:0.14274,947:0.08927,972:0.10737,978:0.16474,981:0.13473,982:0.11689,999:0.15777,1005:0.12565,1008:0.15198,1064:0.11380,1066:0.16941,1089:0.13903,1104:0.11360,1112:0.16276,1115:0.16287,1147:0.07531,1156:0.11095,1162:0.14393,1163:0.11963,1164:0.13229,1195:0.09306,1197:0.17575,1206:0.13064,1209:0.09252,1244:0.09813,1246:0.08702,1259:0.11510,1271:0.08674,1272:0.18898,1274:0.09769,1289:0.09470,1291:0.13164,1305:0.17454,1314:0.16849,1319:0.09580,1320:0.12966,1328:0.10197,1331:0.15212,1332:0.16199,1333:0.15140,1334:0.15252,1335:0.16354,1336:0.13631,1339:0.12940,1340:0.14446,1342:0.11746,1343:0.09503,1345:0.16929,1347:0.13157,1352:0.12712,1379:0.18216,1380:0.15728,1391:0.10060
aerodynamich,662:0.08283
aerodynamieist,27:0.12623
aeroelast,12:0.17006,14:0.11153,78:0.10169,141:0.14037,202:0.08670,284:0.14585,390:0.12757,486:0.09471,685:0.09452,746:0.18478,781:0.12848,875:0.20679,1066:0.08669,1331:0.15212,1332:0.12451,1334:0.11723,1361:0.11718
aeroelastician,14:0.07551
aerofoil,202:0.08670,203:0.22202,206:0.17157,226:0.16108,245:0.18346,247:0.11566,249:0.20262,264:0.19126,265:0.21012,278:0.15594,316:0.14915,468:0.17992,470:0.14921,544:0.13812,597:0.20266,631:0.21583,652:0.23346,672:0.15222,676:0.20782,746:0.12509,757:0.11710,798:0.08425,799:0.12269,869:0.12376,899:0.16699,1287:0.14444,1323:0.18417,1324:0.11699,1325:0.08639,1333:0.09450
aeronaut,12:0.13071,33:0.09250,134:0.11152,220:0.11928,244:0.07071,314:0.11247,373:0.08724,453:0.10279,532:0.19977,718:0.19271,792:0.06879,804:0.11503,980:0.11116,1065:0.12328,1094:0.12831,1385:0.10995
aeroplan,253:0.11413,368:0.12734,811:0.08698,1113:0.12043
aerotherm,1279:0.10955
aerothermochem,344:0.07231
aerothermodynam,1213:0.10264
aerothermoelast,486:0.18508
affect,42:0.09303,76:0.11308,82:0.08452,135:0.11451,147:0.11026,152:0.10954,173:0.08822,174:0.09426,189:0.12433,197:0.09592,215:0.16898,272:0.07723,308:0.12307,439:0.14696,440:0.14698,459:0.11770,521:0.12628,575:0.09243,618:0.11958,655:0.15013,656:0.10068,666:0.12451,673:0.10617,679:0.11300,695:0.11339,710:0.12885,757:0.09001,798:0.06476,810:0.11189,902:0.10636,925:0.17340,946:0.08873,989:0.10939,999:0.10681,1000:0.10235,1004:0.13172,1035:0.09974,1040:0.06780,1188:0.11125,1205:0.09967,1274:0.09769,1319:0.09580,1338:0.10950,1370:0.10065,1381:0.09217
affin,259:0.10856,541:0.09956
affirm,373:0.08724
afford,204:0.11284,962:0.07437,982:0.11689,1261:0.09077
aforement,456:0.09280,699:0.10634,927:0.07472,1362:0.11830
afresh,499:0.08023
aft,508:0.14235,522:0.10207,673:0.10617,707:0.13316,757:0.09001,758:0.13343,793:0.11708
afterbodi,25:0.07821,172:0.15704,173:0.08822,174:0.09426,233:0.21910,234:0.09051,282:0.09871,370:0.16899,401:0.08311,423:0.08580,433:0.07804,456:0.09280,508:0.22806,572:0.07667,662:0.10777,717:0.08450,759:0.13334,815:0.09867,816:0.15609,915:0.15031,947:0.15167,993:0.16281,1000:0.10235,1001:0.12710,1040:0.13841,1066:0.11278,1114:0.10654,1328:0.13267
afterburn,253:0.11413,374:0.13301,695:0.08715,721:0.11468
afterflow,170:0.13036
age,1279:0.10955
agenc,1367:0.16607
ago,91:0.12229,1299:0.16884
agre,1:0.12389,14:0.07551,72:0.09476,126:0.12712,165:0.10589,177:0.10564,187:0.08674,206:0.09299,233:0.14833,255:0.10802,289:0.10132,318:0.12551,324:0.16741,330:0.14182,338:0.11189,361:0.16720,363:0.09594,383:0.13454,417:0.07187,433:0.07804,443:0.10104,572:0.07667,605:0.11942,635:0.12014,648:0.14974,662:0.08283,666:0.12451,686:0.10311,688:0.09582,728:0.16884,809:0.14573,830:0.10472,869:0.08378,887:0.13864,903:0.10235,923:0.12538,947:0.13186,950:0.14552,959:0.10732,966:0.09565,996:0.09279,1027:0.14872,1107:0.13404,1108:0.10084,1118:0.15625,1157:0.10300,1185:0.11662,1191:0.11573,1195:0.09306,1199:0.09504,1204:0.08106,1215:0.13775,1231:0.10706,1239:0.07776,1268:0.08247,1269:0.17142,1270:0.12365,1303:0.10821,1367:0.16607
agreement,9:0.10737,16:0.12253,29:0.09611,39:0.12706,63:0.12723,69:0.12625,76:0.11308,79:0.11381,109:0.11297,111:0.14722,115:0.10423,121:0.12219,125:0.10244,129:0.09440,139:0.12459,150:0.16632,155:0.09638,160:0.08341,178:0.16933,183:0.11820,191:0.10395,197:0.12479,199:0.08528,203:0.17065,206:0.12098,210:0.08718,225:0.08041,227:0.11745,234:0.11776,276:0.10718,282:0.09871,283:0.10563,287:0.12271,289:0.10132,294:0.13401,295:0.18298,304:0.08968,307:0.12117,315:0.07389,329:0.08244,347:0.12494,369:0.10015,372:0.13832,373:0.08724,381:0.09509,395:0.09430,397:0.13284,409:0.15625,417:0.07187,421:0.11148,431:0.12337,434:0.10073,435:0.14064,454:0.10689,455:0.10863,468:0.13829,474:0.12350,488:0.11604,493:0.09570,494:0.11589,496:0.13001,498:0.12215,503:0.14109,518:0.13277,520:0.10151,522:0.07845,538:0.10905,540:0.10166,557:0.15337,564:0.09339,567:0.11157,569:0.08767,576:0.07308,586:0.13897,588:0.10045,600:0.11629,606:0.11252,628:0.10149,630:0.14774,635:0.19247,668:0.13524,682:0.10818,685:0.09452,688:0.12467,689:0.12545,712:0.09331,729:0.10946,740:0.10465,752:0.15756,764:0.11864,767:0.11764,781:0.12848,782:0.10329,805:0.10345,806:0.14139,811:0.08698,812:0.10912,820:0.14830,823:0.18815,831:0.15189,846:0.10352,850:0.16216,859:0.10170,860:0.13316,863:0.13850,867:0.11916,891:0.14412,912:0.11776,919:0.11432,927:0.11037,928:0.07558,933:0.08899,963:0.18027,964:0.11934,965:0.15637,974:0.10568,976:0.07447,988:0.14881,990:0.11268,999:0.10681,1000:0.10235,1006:0.15530,1012:0.12865,1021:0.17981,1028:0.10832,1040:0.06780,1046:0.16095,1049:0.16421,1065:0.12328,1066:0.12805,1075:0.13979,1078:0.12837,1081:0.13931,1097:0.09890,1100:0.16393,1118:0.20328,1119:0.08651,1121:0.19698,1122:0.10406,1123:0.14467,1126:0.14566,1127:0.10432,1128:0.12861,1132:0.14024,1137:0.09224,1138:0.16338,1151:0.11886,1166:0.10888,1182:0.10129,1187:0.13063,1196:0.14287,1198:0.09412,1213:0.16444,1216:0.10432,1222:0.10699,1225:0.09335,1234:0.14974,1237:0.13364,1246:0.08702,1248:0.07819,1250:0.09056,1257:0.12209,1258:0.10259,1261:0.09077,1262:0.12754,1270:0.12365,1281:0.10060,1290:0.10960,1300:0.08889,1302:0.10888,1313:0.06389,1336:0.10477,1363:0.11343,1374:0.15195,1375:0.08583,1382:0.09301,1384:0.11719,1385:0.10995,1390:0.10814,1396:0.14329,1397:0.15410
ahead,89:0.09926,138:0.12902,239:0.12101,291:0.17551,315:0.07389,423:0.08580,576:0.07308,690:0.13238,757:0.09001,800:0.11613,903:0.10235,972:0.17201,974:0.10568,1151:0.11886,1156:0.11095,1165:0.11875,1167:0.10591,1216:0.13572,1343:0.12363,1351:0.09171,1364:0.10855
aid,27:0.12623,33:0.09250,66:0.12095,97:0.09785,128:0.10869,193:0.10613,351:0.12519,498:0.12215,722:0.11262,808:0.11211,878:0.15409,906:0.17938,926:0.12341,937:0.12928,1005:0.12565,1018:0.13092,1025:0.11431,1057:0.12492,1286:0.14902,1337:0.11785,1376:0.15830
ailcron,199:0.08528
aileron,199:0.15735,496:0.19204,520:0.13207,643:0.20179,701:0.09885,903:0.15118,1163:0.11963,1332:0.12451,1334:0.11723
aim,147:0.11026,191:0.10395,237:0.12704,453:0.10279,457:0.13917,792:0.06879,1305:0.17454,1310:0.08798
air,9:0.12191,14:0.07551,24:0.09382,25:0.07821,27:0.12623,33:0.09250,37:0.11438,49:0.07699,50:0.11449,68:0.20416,100:0.09592,102:0.15725,110:0.07786,125:0.10244,129:0.12282,138:0.09917,139:0.12459,142:0.13038,146:0.12963,171:0.10942,173:0.08822,185:0.15405,188:0.10384,193:0.13069,200:0.12563,209:0.09228,212:0.07787,216:0.13820,240:0.16458,242:0.17481,243:0.15332,259:0.10856,262:0.11020,282:0.09871,283:0.13743,302:0.22729,303:0.14739,304:0.08968,309:0.11207,328:0.10957,330:0.14182,332:0.11164,338:0.14558,343:0.18152,348:0.12196,355:0.25495,360:0.12005,365:0.10857,370:0.11441,380:0.18112,405:0.24198,413:0.17682,414:0.10561,421:0.14503,437:0.15473,442:0.10193,456:0.09280,481:0.17506,483:0.20883,488:0.11604,499:0.10438,502:0.22619,518:0.10205,524:0.16749,529:0.08546,533:0.21822,536:0.13071,541:0.12953,548:0.14384,552:0.14470,553:0.11217,554:0.11399,558:0.13039,572:0.11324,576:0.09507,578:0.18744,588:0.10045,592:0.15049,593:0.11276,595:0.13169,602:0.12595,613:0.16360,614:0.15135,615:0.21698,616:0.20340,617:0.19881,621:0.20517,622:0.13035,624:0.09693,625:0.12173,627:0.12092,628:0.17243,630:0.11356,635:0.20411,637:0.14294,645:0.10949,646:0.09096,651:0.11493,686:0.15230,691:0.16909,695:0.12874,727:0.10717,753:0.10282,776:0.17613,789:0.15061,804:0.18428,874:0.09619,894:0.09665,905:0.15481,914:0.16826,915:0.15031,946:0.08873,947:0.11614,949:0.16635,958:0.18316,970:0.14831,975:0.13599,991:0.13714,992:0.11512,997:0.14214,998:0.19170,1001:0.12710,1004:0.19457,1007:0.15148,1009:0.15879,1010:0.12108,1011:0.22559,1096:0.19096,1098:0.15552,1110:0.15948,1115:0.12518,1143:0.19504,1144:0.08974,1150:0.18971,1151:0.11886,1156:0.14435,1157:0.13401,1159:0.17555,1161:0.19778,1165:0.11875,1166:0.10888,1185:0.15173,1191:0.11573,1199:0.15226,1204:0.08106,1216:0.10432,1224:0.09147,1226:0.09185,1227:0.16048,1230:0.16589,1237:0.13364,1254:0.12376,1263:0.08885,1264:0.10352,1278:0.10764,1279:0.10955,1282:0.11902,1290:0.17559,1292:0.09525,1296:0.10156,1303:0.14078,1313:0.06389,1315:0.15680,1325:0.08639,1335:0.17737,1336:0.17800,1337:0.11785,1351:0.09171,1353:0.13337,1355:0.13537,1374:0.11679,1385:0.14305
airborn,141:0.14037
aircraft,12:0.17006,14:0.07551,29:0.12504,47:0.13722,51:0.22144,75:0.13748,76:0.11308,78:0.10169,100:0.17055,172:0.09802,184:0.11861,195:0.11124,202:0.12807,209:0.09228,220:0.11928,245:0.12420,251:0.15553,253:0.19391,311:0.10801,328:0.08422,345:0.12169,364:0.07888,374:0.13301,415:0.16612,416:0.09126,453:0.13374,497:0.14764,658:0.09691,721:0.07158,724:0.11983,725:0.14167,726:0.13405,729:0.10946,747:0.13085,791:0.15830,792:0.11687,804:0.11503,810:0.11189,811:0.13935,836:0.11993,878:0.15409,882:0.18560,883:0.17247,884:0.24900,908:0.10837,909:0.17557,911:0.14211,914:0.11391,917:0.08311,925:0.17340,948:0.11450,1012:0.12865,1042:0.20142,1051:0.10107,1064:0.11380,1089:0.13903,1144:0.15958,1163:0.11963,1165:0.17541,1166:0.16083,1167:0.15644,1168:0.20971,1169:0.19692,1170:0.14122,1197:0.15480,1246:0.08702,1300:0.08889,1328:0.13267,1380:0.12044
aircrafttyp,725:0.14167
airflow,113:0.13529,244:0.07071,401:0.12276,572:0.07667,576:0.07308,1270:0.12365,1296:0.10156,1297:0.11893
airfoil,14:0.09824,39:0.24182,52:0.11382,70:0.22402,179:0.09884,189:0.12433,193:0.13860,194:0.28148,201:0.13381,204:0.16668,205:0.14257,312:0.23383,352:0.10144,363:0.09594,373:0.08724,380:0.13921,404:0.18766,409:0.15625,427:0.10649,439:0.11296,440:0.23547,441:0.14450,443:0.14925,444:0.15248,445:0.20066,452:0.14770,453:0.10279,464:0.10896,467:0.17773,469:0.14002,484:0.17995,496:0.16914,503:0.20840,521:0.18653,526:0.17816,593:0.14670,624:0.09693,634:0.17153,685:0.17440,686:0.13414,687:0.23217,701:0.12860,702:0.15491,703:0.19482,706:0.18460,903:0.15118,933:0.11578,1115:0.12518,1194:0.14824,1197:0.11898,1207:0.14285,1210:0.20672,1233:0.21867,1248:0.10173,1265:0.11887,1267:0.24100,1277:0.17310,1320:0.12966,1329:0.21353,1330:0.14788,1338:0.10950,1339:0.09946,1380:0.09257,1384:0.11719
airforc,895:0.20844
airfram,1170:0.18373,1177:0.14320
airit,622:0.10019
airlin,725:0.14167
airload,202:0.11280
airplan,42:0.09303,76:0.11308,78:0.10169,141:0.14037,209:0.09228,314:0.14633,599:0.09466,673:0.15057,728:0.16884,758:0.17360,783:0.19814,790:0.13450,805:0.15280,806:0.16263,807:0.22298,810:0.17925,859:0.10170,860:0.13316,880:0.17034,948:0.11450,1093:0.14728,1095:0.11104,1162:0.14393,1169:0.11591,1207:0.10980,1270:0.12365,1331:0.19792,1349:0.14575,1380:0.12044
airscrew,202:0.08670
airspe,78:0.13231,373:0.08724
airstream,96:0.10127,175:0.18610,546:0.11991,711:0.12884,781:0.09875,815:0.09867,894:0.09665,1205:0.09967
akin,718:0.12029
al,597:0.15577,630:0.11356
alfven,296:0.12691,490:0.15969
algebra,34:0.14604,111:0.14722,266:0.09702,349:0.09649,611:0.11193,852:0.11221,1041:0.13316,1061:0.08454,1184:0.09925,1261:0.09077
align,646:0.09096
allen,164:0.08352
allevi,12:0.13071,252:0.09168,416:0.09126,466:0.09707,576:0.07308,588:0.10045,1345:0.13012
allmov,704:0.07978
allow,32:0.14693,60:0.12121,115:0.10423,117:0.12636,132:0.08551,170:0.13036,179:0.09884,188:0.10384,212:0.07787,303:0.14739,309:0.11207,399:0.18650,415:0.12768,472:0.14904,499:0.08023,511:0.12052,516:0.14957,538:0.10905,540:0.10166,546:0.11991,625:0.08241,658:0.09691,762:0.17358,766:0.09733,808:0.11211,839:0.11755,876:0.15214,961:0.11176,966:0.09565,1005:0.12565,1019:0.13326,1101:0.15096,1117:0.11590,1187:0.13063,1261:0.09077,1311:0.16450,1313:0.06389,1345:0.13012,1355:0.10405
alloy,760:0.11175,767:0.09042,858:0.11307,865:0.17497,867:0.11916,881:0.11690,883:0.13256,1015:0.12221,1016:0.17162,1019:0.10242,1025:0.11431
allround,627:0.12092
allud,820:0.10040
almen,1058:0.14601
almost,14:0.07551,24:0.09382,83:0.08488,94:0.07568,100:0.09592,150:0.11260,209:0.09228,212:0.07787,266:0.09702,420:0.12035,575:0.09243,589:0.10016,624:0.09693,656:0.10068,674:0.12874,683:0.09382,1040:0.06780,1140:0.20544,1214:0.11522,1230:0.11231,1261:0.09077,1387:0.10592
alon,101:0.10772,146:0.09963,204:0.11284,225:0.08041,234:0.09051,251:0.15553,433:0.10154,569:0.08767,635:0.12014,679:0.11300,834:0.20826,914:0.11391,1164:0.10168,1195:0.13746,1218:0.08746,1347:0.10113
along,9:0.08253,23:0.12983,34:0.11225,56:0.10681,75:0.13748,77:0.08356,85:0.08872,89:0.07629,104:0.13081,106:0.17065,110:0.07786,112:0.11609,148:0.12515,155:0.09638,157:0.15056,170:0.10020,174:0.09426,190:0.11493,196:0.15110,207:0.10707,219:0.13073,227:0.11745,236:0.11738,246:0.12463,252:0.09168,261:0.15041,272:0.10048,276:0.10718,292:0.09622,296:0.09754,308:0.12307,328:0.08422,341:0.12920,352:0.10144,364:0.07888,375:0.12692,381:0.09509,392:0.19631,393:0.24494,398:0.18124,433:0.10154,454:0.13906,456:0.09280,458:0.09715,459:0.11770,464:0.10896,513:0.13316,529:0.12623,546:0.11991,547:0.16505,552:0.09796,561:0.10511,562:0.09807,574:0.10401,601:0.09651,604:0.12308,608:0.13184,610:0.12247,624:0.09693,635:0.12014,646:0.09096,657:0.13935,661:0.15290,663:0.12728,673:0.08161,683:0.09382,721:0.12161,733:0.10900,734:0.10471,736:0.15370,737:0.14823,750:0.16455,773:0.08485,785:0.12531,788:0.10025,798:0.06476,800:0.11613,825:0.09707,873:0.11297,885:0.15475,890:0.13009,891:0.11078,894:0.12574,900:0.15835,908:0.10837,912:0.17395,913:0.13125,927:0.07472,961:0.11176,962:0.09675,966:0.09565,974:0.10568,977:0.17109,984:0.13595,985:0.11488,986:0.08898,990:0.14660,1022:0.18179,1040:0.06780,1072:0.07740,1106:0.12034,1144:0.14378,1156:0.11095,1165:0.11875,1184:0.09925,1192:0.12764,1194:0.11394,1199:0.12365,1206:0.13064,1213:0.10264,1220:0.10492,1222:0.10699,1224:0.11900,1229:0.08798,1230:0.11231,1240:0.14430,1267:0.16315,1271:0.08674,1280:0.09238,1282:0.11902,1296:0.10156,1301:0.12027,1332:0.12451,1334:0.11723,1353:0.13337,1355:0.10405,1381:0.09217,1382:0.09301,1385:0.10995,1386:0.10202,1387:0.10592,1390:0.10814,1391:0.10060,1396:0.14329,1398:0.11476,1399:0.14772,1400:0.14290
alreadi,140:0.08282,202:0.08670,784:0.10566,902:0.10636,1301:0.12027,1330:0.10011
alter,123:0.09706,152:0.10954,211:0.10689,262:0.07460,296:0.09754,353:0.12206,453:0.10279,500:0.13575,543:0.16654,614:0.10246,679:0.11300,692:0.10841,693:0.11552,694:0.11423,712:0.09331,767:0.09042,946:0.08873,991:0.10541,1147:0.07531,1203:0.10934,1287:0.14444,1303:0.10821,1371:0.10983
altern,148:0.12515,149:0.09511,300:0.09625,313:0.24020,362:0.18027,363:0.09594,368:0.12734,618:0.11958,705:0.10172,706:0.14188,745:0.18914,874:0.09619,893:0.14280,958:0.14078,1313:0.06389,1325:0.08639,1346:0.12513
although,9:0.08253,44:0.08839,49:0.07699,52:0.11382,57:0.11341,80:0.09228,82:0.08452,97:0.09785,100:0.09592,109:0.11297,113:0.13529,152:0.10954,172:0.12753,183:0.11820,186:0.10729,218:0.09638,232:0.10181,283:0.13743,294:0.09073,296:0.09754,317:0.09864,329:0.06336,342:0.09409,344:0.07231,346:0.10772,426:0.11837,428:0.11534,467:0.10461,563:0.09639,597:0.15577,599:0.09466,622:0.10019,640:0.08356,646:0.09096,649:0.09888,688:0.09582,701:0.12860,717:0.08450,722:0.11262,729:0.10946,798:0.08425,805:0.10345,849:0.14690,856:0.09835,876:0.11694,893:0.14280,902:0.10636,992:0.08849,1012:0.12865,1040:0.06780,1057:0.12492,1104:0.08731,1119:0.08651,1122:0.10406,1187:0.13063,1190:0.13098,1214:0.11522,1250:0.09056,1321:0.09673,1339:0.09946,1353:0.13337,1360:0.13578
altitud,76:0.11308,82:0.08452,85:0.08872,162:0.10310,163:0.07347,275:0.16345,329:0.06336,375:0.09755,401:0.10813,547:0.12686,548:0.08978,554:0.14830,606:0.11252,617:0.15281,618:0.11958,620:0.12701,719:0.10827,805:0.16573,806:0.17662,807:0.22298,810:0.11189,811:0.14778,882:0.24147,896:0.14491,969:0.14759,976:0.11931,1000:0.10235,1040:0.06780,1065:0.12328,1102:0.19897,1103:0.15313,1147:0.12794,1150:0.14582,1161:0.13389,1232:0.14038,1247:0.11638,1292:0.09525,1296:0.10156,1297:0.11893,1299:0.16884,1324:0.11699,1351:0.09171,1391:0.13088
altogeth,1322:0.09989
aluminium,727:0.10717,883:0.13256
aluminum,760:0.11175,858:0.11307,859:0.10170,881:0.11690,1015:0.12221,1019:0.10242,1024:0.10693,1025:0.11431,1028:0.10832,1069:0.16959
aluminumalloy,727:0.10717,1122:0.10406
alway,14:0.07551,100:0.14168,110:0.07786,114:0.11717,172:0.09802,272:0.07723,392:0.15089,416:0.09126,417:0.09351,476:0.10132,536:0.08849,595:0.10122,680:0.12429,681:0.13270,829:0.11478,1072:0.07740,1082:0.09644,1127:0.10432,1278:0.10764,1315:0.12052
ambient,50:0.11449,169:0.12217,243:0.15332,401:0.08311,446:0.12744,505:0.15199,529:0.08546,536:0.08849,541:0.12953,576:0.09507,625:0.08241,942:0.12104,1061:0.08454,1183:0.12920
ambigu,786:0.10768,1160:0.13235
ame,373:0.08724,780:0.13989
amen,152:0.10954,227:0.11745,342:0.09409,401:0.08311,1374:0.11679
america,740:0.10465
american,649:0.09888,792:0.06879
ammonium,1096:0.14678,1097:0.09890
among,33:0.09250,401:0.08311,599:0.09466,951:0.14923,1146:0.20379,1201:0.07478,1243:0.14255
amongst,166:0.10890
amount,9:0.08253,14:0.07551,19:0.16382,123:0.09706,124:0.13390,186:0.10729,212:0.07787,239:0.12101,244:0.07071,262:0.11952,272:0.07723,277:0.09891,337:0.14974,338:0.11189,363:0.09594,369:0.10015,414:0.10561,445:0.15423,565:0.10160,566:0.14744,576:0.07308,640:0.08356,646:0.09096,710:0.09904,815:0.09867,825:0.09707,838:0.16532,873:0.11297,908:0.10837,946:0.08873,947:0.08927,1004:0.13172,1056:0.09378,1104:0.08731,1189:0.17741,1207:0.14285,1220:0.10492,1252:0.10896,1290:0.10960,1300:0.08889,1340:0.14446,1346:0.12513,1352:0.09770
ampl,717:0.08450
ampli,220:0.11928
amplif,806:0.09572,942:0.12104,1131:0.13272,1220:0.10492,1278:0.10764
amplifi,403:0.13756,899:0.11305,1144:0.08974,1244:0.07543
amplitud,15:0.12393,132:0.11125,199:0.11095,200:0.12563,220:0.11928,331:0.15515,441:0.09020,515:0.12620,589:0.10016,717:0.08450,739:0.08722,810:0.11189,815:0.09867,827:0.12624,894:0.09665,1000:0.10235,1034:0.10347,1128:0.12861,1242:0.09885,1249:0.16450,1329:0.15623
amr,20:0.11783,356:0.15053,388:0.11233,427:0.10649,478:0.15466
analog,13:0.19157,25:0.07821,32:0.11294,62:0.08745,73:0.08255,91:0.12229,112:0.11609,119:0.16189,120:0.18160,151:0.09043,163:0.07347,168:0.09687,185:0.08663,191:0.10395,210:0.08718,278:0.11986,297:0.11620,309:0.11207,318:0.12551,349:0.09649,370:0.11441,377:0.13334,381:0.09509,398:0.18124,403:0.13756,421:0.11148,425:0.14117,427:0.10649,452:0.08306,456:0.09280,493:0.09570,504:0.10365,508:0.18520,517:0.15248,580:0.11934,591:0.19747,625:0.08241,660:0.11671,706:0.14188,731:0.09935,732:0.11611,757:0.09001,790:0.10338,850:0.16216,861:0.13689,872:0.10665,1126:0.14566,1226:0.09185,1246:0.08702,1254:0.12376,1330:0.10011
analogu,220:0.11928,255:0.10802,606:0.11252,732:0.18601,868:0.24510,869:0.10900
analys,42:0.09303,51:0.11331,92:0.10066,202:0.08670,229:0.13391,269:0.14317,289:0.10132,364:0.07888,388:0.11233,390:0.12757,391:0.12684,396:0.17009,401:0.08311,454:0.10689,479:0.12236,525:0.13955,527:0.14775,675:0.08900,685:0.09452,722:0.11262,769:0.14511,791:0.15830,792:0.06879,866:0.13389,884:0.16857,1013:0.12535,1070:0.14036,1116:0.16070,1272:0.14526,1281:0.10060,1295:0.11430,1310:0.08798,1324:0.11699
analysi,10:0.21109,15:0.12393,16:0.12253,21:0.18304,25:0.07821,29:0.09611,30:0.17041,35:0.11410,36:0.12117,39:0.16532,46:0.16636,47:0.15580,49:0.07699,52:0.11382,56:0.10681,57:0.11341,60:0.12121,64:0.12596,65:0.15109,67:0.15866,73:0.08255,77:0.08356,84:0.10846,90:0.14750,92:0.10066,94:0.07568,99:0.08974,102:0.15725,114:0.11717,123:0.09706,124:0.10292,128:0.10869,130:0.17142,133:0.14120,135:0.14898,145:0.12995,156:0.10518,163:0.10853,170:0.13036,179:0.12860,187:0.08674,188:0.16636,190:0.11493,193:0.08158,201:0.15192,202:0.11280,204:0.11284,210:0.11343,218:0.09638,219:0.10048,220:0.11928,226:0.16108,235:0.12563,240:0.09687,241:0.16338,247:0.11566,252:0.09168,262:0.07460,263:0.15154,267:0.10687,274:0.09270,277:0.12868,288:0.11292,289:0.13182,293:0.13012,312:0.15830,326:0.21099,328:0.08422,329:0.08244,340:0.16749,352:0.10144,354:0.13262,360:0.12005,361:0.16720,365:0.10857,366:0.10904,367:0.13772,368:0.12734,386:0.15322,390:0.12757,395:0.13929,398:0.18124,417:0.07187,419:0.13544,426:0.18963,428:0.11534,432:0.13699,437:0.15473,455:0.10863,467:0.10461,496:0.16914,506:0.13901,516:0.14957,525:0.13955,528:0.16480,530:0.17611,534:0.21744,538:0.10905,550:0.13295,551:0.19677,560:0.13092,576:0.10794,578:0.18744,579:0.10781,580:0.15526,581:0.20880,583:0.16039,585:0.13960,587:0.13772,588:0.16093,589:0.13031,590:0.16707,596:0.14498,599:0.09466,619:0.21781,623:0.10683,624:0.09693,625:0.08241,627:0.15732,634:0.13184,646:0.09096,648:0.22119,650:0.16578,666:0.12451,675:0.08900,680:0.12429,681:0.13270,685:0.16059,700:0.14296,701:0.09885,707:0.10235,715:0.14382,716:0.15359,719:0.10827,723:0.16284,725:0.14167,726:0.13405,733:0.10900,737:0.14823,753:0.10282,756:0.12079,773:0.08485,781:0.15820,794:0.11282,814:0.10509,820:0.10040,828:0.13669,833:0.15084,836:0.15603,840:0.15526,843:0.11272,851:0.12684,852:0.16574,862:0.18520,869:0.08378,870:0.12654,871:0.18853,872:0.10665,873:0.11297,881:0.15209,887:0.13864,889:0.08970,899:0.11305,911:0.14211,914:0.11391,937:0.16819,952:0.12951,954:0.15871,959:0.15852,961:0.11176,968:0.11101,974:0.15610,976:0.07447,980:0.11116,984:0.21780,988:0.14881,989:0.14231,990:0.16644,998:0.12978,1005:0.12565,1007:0.11643,1008:0.15198,1012:0.16737,1013:0.12535,1014:0.25155,1015:0.12221,1016:0.17162,1017:0.17387,1024:0.10693,1025:0.16885,1036:0.13630,1041:0.17325,1042:0.20142,1043:0.14563,1048:0.19401,1049:0.16421,1051:0.17171,1052:0.13633,1054:0.13353,1056:0.09378,1058:0.14601,1059:0.10028,1060:0.17188,1068:0.11771,1070:0.14036,1071:0.14014,1072:0.07740,1074:0.12279,1090:0.18718,1091:0.13391,1099:0.21469,1130:0.12874,1134:0.09114,1135:0.19291,1136:0.10042,1145:0.13913,1154:0.09320,1162:0.14393,1163:0.11963,1180:0.14083,1190:0.17041,1198:0.12245,1199:0.09504,1200:0.11456,1201:0.07478,1204:0.08106,1207:0.10980,1208:0.17916,1216:0.13572,1222:0.10699,1224:0.11900,1226:0.09185,1232:0.14038,1235:0.09252,1237:0.13364,1241:0.14781,1244:0.07543,1248:0.07819,1250:0.13377,1259:0.14975,1261:0.09077,1265:0.11887,1268:0.08247,1271:0.08674,1275:0.15339,1276:0.20250,1281:0.10060,1283:0.16124,1288:0.17879,1291:0.13164,1294:0.17167,1296:0.10156,1313:0.06389,1332:0.12451,1334:0.11723,1337:0.15332,1339:0.12940,1344:0.14226,1347:0.10113,1352:0.09770,1357:0.20218,1358:0.20781,1360:0.17665,1362:0.15392,1363:0.11343,1367:0.16607,1371:0.10983,1372:0.15871,1374:0.11679,1377:0.13323,1382:0.09301,1384:0.15247,1386:0.15070,1390:0.10814,1392:0.09082,1399:0.14772
analyt,5:0.19637,6:0.14460,12:0.13071,16:0.12253,28:0.12569,34:0.11225,49:0.10016,72:0.12328,78:0.13231,93:0.13992,144:0.12257,160:0.10851,164:0.08352,184:0.11861,186:0.13959,221:0.16262,230:0.10240,258:0.19019,260:0.13138,268:0.12844,276:0.15832,289:0.10132,301:0.19327,321:0.18788,339:0.18545,341:0.09930,356:0.15053,371:0.11741,392:0.15089,410:0.11796,421:0.11148,422:0.12874,442:0.13261,467:0.10461,476:0.10132,481:0.13455,483:0.20883,497:0.11348,498:0.12215,500:0.17661,535:0.14166,550:0.13295,563:0.09639,570:0.15410,571:0.09754,589:0.10016,606:0.11252,613:0.12575,639:0.19660,645:0.10949,666:0.12451,667:0.09660,668:0.13524,670:0.22361,682:0.10818,704:0.07978,705:0.10172,719:0.10827,728:0.16884,738:0.12246,760:0.11175,787:0.11419,836:0.17715,837:0.09924,852:0.11221,907:0.10081,940:0.14818,941:0.14946,957:0.13797,965:0.15637,966:0.09565,981:0.13473,1056:0.09378,1065:0.16039,1072:0.10070,1100:0.16393,1136:0.10042,1157:0.10300,1187:0.13063,1194:0.11394,1201:0.07478,1207:0.10980,1214:0.14991,1225:0.09335,1232:0.14038,1241:0.11361,1245:0.11392,1246:0.08702,1248:0.13904,1258:0.10259,1263:0.08885,1274:0.09769,1285:0.17915,1288:0.13742,1291:0.10118,1293:0.18423,1309:0.09672,1319:0.09580,1322:0.09989,1337:0.11785,1346:0.12513,1361:0.11718,1375:0.08583,1389:0.16088,1390:0.10814,1392:0.09082
analytici,193:0.08158
analyz,14:0.07551,31:0.22008,38:0.16074,41:0.17090,66:0.12095,70:0.11201,77:0.08356,88:0.12657,89:0.07629,103:0.16597,124:0.10292,129:0.09440,195:0.11124,208:0.13030,210:0.08718,240:0.09687,298:0.19162,360:0.12005,426:0.11837,440:0.14698,472:0.14904,500:0.13575,503:0.14109,558:0.13039,572:0.07667,576:0.07308,639:0.15111,735:0.19883,753:0.10282,821:0.17591,823:0.14462,837:0.09924,860:0.13316,862:0.18520,870:0.12654,872:0.10665,881:0.11690,885:0.15475,927:0.07472,935:0.17720,974:0.10568,975:0.10452,988:0.14881,989:0.10939,1037:0.14979,1051:0.10107,1117:0.11590,1129:0.13273,1136:0.10042,1141:0.17777,1179:0.09982,1218:0.08746,1226:0.09185,1228:0.13674,1244:0.07543,1249:0.16450,1255:0.14449,1265:0.11887,1279:0.10955,1362:0.11830,1365:0.12086,1386:0.10202
and2how,613:0.12575
andabrespect,684:0.17691
andor,486:0.09471,762:0.15289,935:0.17720
anemomet,41:0.17090,76:0.11308,80:0.09228,218:0.09638,238:0.25244,589:0.10016,1278:0.10764,1385:0.10995
angl,1:0.12389,9:0.08253,25:0.07821,27:0.12623,32:0.18093,48:0.22045,56:0.10681,58:0.13936,64:0.16388,69:0.18649,70:0.11201,82:0.08452,97:0.09785,106:0.22202,122:0.16258,123:0.09706,124:0.10292,125:0.10244,162:0.13414,163:0.07347,164:0.10866,173:0.11478,174:0.16761,189:0.16019,193:0.12050,196:0.17155,197:0.17056,199:0.13662,204:0.11284,212:0.11502,213:0.11609,222:0.10417,225:0.12882,229:0.13391,230:0.10240,231:0.14016,232:0.15038,234:0.11776,248:0.13032,275:0.16345,277:0.12868,282:0.15814,287:0.12271,291:0.17551,293:0.13012,312:0.15830,315:0.07389,338:0.11189,354:0.21247,360:0.12005,363:0.12483,373:0.12886,420:0.12035,423:0.15257,427:0.10649,430:0.17899,433:0.10154,434:0.16138,439:0.11296,440:0.14698,441:0.09020,443:0.16188,464:0.16095,469:0.14002,484:0.09456,492:0.30959,498:0.12215,505:0.15199,511:0.19309,520:0.13207,530:0.13536,541:0.09956,564:0.17231,565:0.15008,567:0.14515,572:0.09974,601:0.09651,610:0.12247,624:0.09693,626:0.11330,632:0.16410,636:0.10405,638:0.13684,650:0.16578,673:0.10617,674:0.12874,688:0.14154,694:0.11423,695:0.08715,698:0.15931,704:0.07978,708:0.21730,709:0.17000,711:0.12884,712:0.14949,713:0.11615,715:0.14382,717:0.16081,736:0.15370,772:0.14044,782:0.10329,786:0.10768,788:0.10025,790:0.10338,792:0.06879,801:0.10970,806:0.09572,814:0.10509,815:0.15807,830:0.10472,872:0.10665,901:0.12582,907:0.14891,915:0.15031,917:0.08311,924:0.10392,927:0.11037,936:0.18774,937:0.12928,943:0.11660,944:0.13711,946:0.11544,947:0.16989,972:0.10737,973:0.14440,979:0.12703,988:0.14881,993:0.14340,997:0.16138,999:0.19707,1000:0.15118,1001:0.16536,1005:0.12565,1006:0.15530,1040:0.10015,1064:0.11380,1066:0.08669,1077:0.21625,1094:0.12831,1095:0.14447,1104:0.11360,1107:0.10303,1110:0.12258,1114:0.15738,1115:0.23098,1117:0.11590,1127:0.10432,1136:0.10042,1147:0.12064,1162:0.14393,1164:0.10168,1167:0.10591,1179:0.14744,1181:0.12116,1184:0.09925,1186:0.20370,1188:0.11125,1192:0.16606,1193:0.15972,1201:0.07478,1204:0.10546,1208:0.13771,1213:0.16444,1217:0.12838,1218:0.14860,1228:0.13674,1229:0.14095,1231:0.18188,1244:0.09813,1250:0.15386,1259:0.11510,1262:0.12754,1265:0.11887,1277:0.15030,1284:0.11875,1285:0.17915,1291:0.13164,1292:0.09525,1303:0.15983,1304:0.15471,1306:0.19327,1307:0.16096,1309:0.12583,1320:0.12966,1324:0.11699,1337:0.11785,1339:0.12940,1341:0.14115,1343:0.09503,1344:0.10934,1345:0.13012,1347:0.20644,1349:0.11203,1350:0.19439,1351:0.11932,1352:0.09770,1354:0.11952,1355:0.10405,1381:0.09217
angular,51:0.18154,210:0.08718,229:0.10293,715:0.18711,755:0.13385,1275:0.15339
anh,188:0.10384
anhedr,600:0.11629
anid,317:0.09864
anisotrop,208:0.13030,297:0.11620
anisotropi,208:0.13030
annex,344:0.07231
announc,488:0.11604
annual,488:0.11604
annul,1224:0.09147
annular,136:0.15326,146:0.09963,173:0.11478,221:0.21235,737:0.14823,1034:0.10347,1059:0.10028,1209:0.09252,1350:0.13160,1352:0.12712
annulus,174:0.12263,387:0.22886,976:0.07447
anomal,296:0.09754,1103:0.15313
anomali,49:0.07699,618:0.11958
answer,262:0.07460,373:0.08724,825:0.09707,1072:0.07740
antielast,644:0.10886
antisymmetr,400:0.17020,682:0.10818
anyway,388:0.11233
aob,523:0.16288
apart,621:0.13890,724:0.11983,852:0.11221
apex,182:0.13355,222:0.10417,601:0.09651,917:0.08311,1044:0.12580,1211:0.12757,1250:0.09056,1343:0.14036
apoge,510:0.17319
app,773:0.08485
appar,16:0.12253,19:0.16382,99:0.08974,129:0.12282,168:0.09687,189:0.08417,216:0.12173,252:0.09168,338:0.11189,348:0.12196,441:0.09020,448:0.11636,499:0.08023,599:0.12315,627:0.12092,645:0.10949,806:0.09572,820:0.13062,856:0.09835,859:0.10170,928:0.07558,1028:0.10832,1055:0.12768,1056:0.12201,1097:0.09890,1104:0.08731,1112:0.16276,1134:0.09114,1177:0.14320,1244:0.09813,1268:0.10730,1322:0.09989
apparatus,76:0.11308,168:0.09687,183:0.11820,199:0.08528,207:0.10707,244:0.11328,312:0.15830,529:0.08546,847:0.14630,1072:0.07740,1113:0.19294,1313:0.06389
apparentmass,701:0.09885
appear,7:0.09509,8:0.12653,34:0.11225,58:0.10712,64:0.12596,67:0.15866,70:0.11201,75:0.13748,80:0.12006,81:0.13147,83:0.08488,129:0.09440,138:0.12902,140:0.08282,151:0.09043,155:0.09638,156:0.10518,163:0.07347,165:0.08139,184:0.15431,193:0.08158,212:0.07787,213:0.08923,234:0.09051,244:0.07071,272:0.07723,275:0.12563,280:0.12304,292:0.09622,301:0.19327,325:0.09576,349:0.09649,433:0.07804,452:0.08306,476:0.10132,503:0.14109,536:0.13071,640:0.08356,649:0.12865,658:0.09691,667:0.09660,674:0.12874,701:0.09885,702:0.11907,731:0.12926,757:0.09001,763:0.15257,794:0.08672,797:0.12339,798:0.06476,810:0.11189,815:0.09867,820:0.10040,855:0.17635,917:0.08311,933:0.08899,973:0.14440,986:0.08898,991:0.10541,992:0.08849,1002:0.14904,1015:0.12221,1017:0.13364,1019:0.10242,1026:0.19090,1033:0.14359,1066:0.08669,1072:0.07740,1089:0.13903,1098:0.11954,1114:0.10654,1119:0.12779,1155:0.13270,1186:0.12715,1195:0.09306,1212:0.09950,1218:0.08746,1220:0.10492,1235:0.09252,1239:0.07776,1252:0.10896,1264:0.10352,1271:0.08674,1278:0.10764,1279:0.10955,1280:0.09238,1295:0.11430,1313:0.06389,1327:0.11646,1342:0.09028,1346:0.12513,1360:0.13578,1380:0.09257,1383:0.10203,1391:0.10060
append,1174:0.15406,1376:0.15830
appendic,237:0.12704,677:0.09086
appendix,159:0.14052,202:0.11280,246:0.12463,249:0.12647,311:0.10801,346:0.10772,579:0.10781,637:0.14294,677:0.09086,691:0.12997,696:0.09229,705:0.16296,796:0.11024,797:0.08353,962:0.07437,1008:0.15198,1020:0.12601,1333:0.12295
appl,118:0.11729,1036:0.13630
appli,17:0.12071,20:0.11783,27:0.12623,33:0.12034,37:0.11438,49:0.07699,56:0.10681,62:0.11378,101:0.08279,110:0.10130,123:0.09706,130:0.17142,131:0.08807,146:0.12963,150:0.14649,155:0.09638,160:0.08341,162:0.13414,163:0.07347,173:0.08822,181:0.18328,183:0.11820,191:0.10395,193:0.10613,195:0.11124,206:0.13736,211:0.10689,221:0.16262,224:0.17508,231:0.14016,232:0.10181,233:0.14833,240:0.09687,241:0.16338,248:0.16955,253:0.11413,257:0.10846,263:0.11648,266:0.09702,274:0.09270,275:0.12563,285:0.19699,299:0.12476,305:0.15059,307:0.12117,311:0.10801,314:0.11247,322:0.20544,329:0.06336,352:0.10144,358:0.16426,363:0.09594,369:0.10015,375:0.12692,376:0.16264,377:0.13334,379:0.12202,390:0.12757,406:0.10162,412:0.18280,425:0.14117,433:0.07804,445:0.20066,446:0.12744,450:0.15340,452:0.08306,453:0.10279,455:0.10863,460:0.14002,462:0.12281,464:0.10896,469:0.18216,473:0.14074,484:0.09456,486:0.09471,487:0.14875,494:0.11589,495:0.14273,503:0.14109,512:0.17626,523:0.12520,525:0.13955,532:0.19977,538:0.10905,542:0.15460,573:0.14996,575:0.09243,580:0.11934,584:0.13016,593:0.11276,596:0.18862,599:0.09466,606:0.11252,616:0.12696,622:0.10019,648:0.14974,656:0.10068,665:0.13135,667:0.09660,668:0.13524,678:0.14924,680:0.12429,700:0.14296,704:0.07978,716:0.15359,731:0.09935,738:0.12246,739:0.08722,742:0.13792,752:0.20499,754:0.11366,762:0.11751,767:0.09042,783:0.12368,792:0.06879,796:0.14343,798:0.06476,799:0.09430,813:0.13357,825:0.09707,826:0.08713,827:0.08547,828:0.10506,832:0.22459,843:0.11272,849:0.14690,850:0.21097,857:0.10313,862:0.18520,881:0.11690,888:0.14182,889:0.08970,891:0.11078,901:0.16370,916:0.15145,917:0.08311,921:0.11143,923:0.12538,929:0.11638,944:0.13711,946:0.08873,953:0.17732,955:0.15189,957:0.13797,984:0.13595,985:0.11488,1003:0.12183,1015:0.12221,1016:0.17162,1018:0.13092,1020:0.12601,1024:0.10693,1025:0.11431,1031:0.13399,1035:0.12976,1041:0.13316,1052:0.13633,1054:0.13353,1058:0.14601,1060:0.22362,1070:0.14036,1072:0.07740,1085:0.17305,1087:0.13212,1110:0.12258,1112:0.12510,1119:0.08651,1125:0.11281,1134:0.09114,1135:0.13060,1137:0.12001,1154:0.09320,1185:0.11662,1192:0.12764,1197:0.11898,1207:0.10980,1208:0.13771,1209:0.09252,1225:0.09335,1231:0.10706,1235:0.09252,1236:0.15031,1241:0.11361,1244:0.07543,1246:0.08702,1250:0.09056,1259:0.11510,1260:0.13607,1262:0.16594,1270:0.12365,1282:0.15485,1294:0.10715,1301:0.12027,1304:0.11891,1307:0.09474,1325:0.11239,1343:0.09503,1363:0.11343,1366:0.10598,1370:0.10065,1376:0.15830,1382:0.09301,1392:0.09082,1393:0.11696,1394:0.12315
applic,13:0.12969,14:0.09824,15:0.12393,16:0.12253,17:0.15705,27:0.12623,28:0.12569,29:0.09611,33:0.09250,39:0.12706,44:0.08839,49:0.11372,56:0.15777,57:0.11341,60:0.12121,65:0.15109,68:0.13822,86:0.17126,91:0.12229,101:0.08279,109:0.11297,122:0.10148,132:0.08551,146:0.09963,149:0.09511,159:0.14052,162:0.10310,163:0.07347,164:0.08352,179:0.09884,185:0.11271,188:0.10384,193:0.08158,204:0.11284,205:0.09652,206:0.09299,212:0.07787,214:0.13736,217:0.13580,219:0.10048,226:0.16108,227:0.11745,230:0.10240,232:0.13246,233:0.14833,234:0.15378,235:0.12563,236:0.15271,240:0.09687,245:0.12420,246:0.12463,248:0.13032,249:0.12647,270:0.10209,271:0.22712,278:0.11986,287:0.12271,292:0.09622,296:0.12691,307:0.12117,321:0.14441,322:0.20544,323:0.16194,332:0.11164,344:0.07231,359:0.14026,367:0.13772,368:0.12734,373:0.08724,381:0.09509,384:0.19600,395:0.13929,401:0.08311,416:0.13481,432:0.10529,433:0.07804,435:0.10810,444:0.15248,445:0.15423,451:0.17020,453:0.10279,454:0.10689,458:0.09715,462:0.12281,463:0.14329,467:0.13610,468:0.13829,473:0.14074,479:0.12236,488:0.11604,491:0.14131,494:0.11589,495:0.18570,502:0.22619,503:0.14109,521:0.12628,538:0.10905,540:0.10166,542:0.10466,554:0.11399,561:0.10511,579:0.10781,580:0.15526,585:0.13960,587:0.17918,614:0.10246,630:0.14774,633:0.15322,637:0.14294,641:0.13248,645:0.10949,658:0.09691,662:0.08283,677:0.09086,680:0.12429,684:0.17691,687:0.15718,698:0.12245,700:0.14296,703:0.14974,704:0.12782,730:0.12767,731:0.12926,738:0.12246,753:0.13377,758:0.13343,760:0.14539,762:0.15289,777:0.11694,781:0.12848,782:0.10329,798:0.09566,801:0.14273,811:0.08698,814:0.15523,827:0.08547,828:0.13669,837:0.12911,839:0.11755,851:0.12684,889:0.08970,906:0.23338,908:0.10837,919:0.11432,928:0.07558,930:0.12834,944:0.13711,951:0.14923,952:0.12951,967:0.15928,968:0.14442,978:0.16474,981:0.13473,987:0.09606,1005:0.12565,1012:0.12865,1019:0.13326,1022:0.18179,1023:0.24020,1027:0.14872,1029:0.17870,1032:0.13716,1037:0.14979,1039:0.09194,1040:0.06780,1046:0.16095,1047:0.09895,1048:0.19401,1049:0.16421,1051:0.10107,1055:0.12768,1059:0.10028,1065:0.12328,1066:0.08669,1068:0.11771,1075:0.10744,1084:0.19630,1109:0.12734,1110:0.15948,1116:0.16070,1120:0.15948,1133:0.17433,1158:0.21125,1176:0.22217,1180:0.10824,1202:0.11558,1204:0.08106,1206:0.13064,1207:0.14285,1209:0.09252,1216:0.10432,1217:0.12838,1219:0.13135,1224:0.09147,1233:0.13649,1240:0.11091,1248:0.10173,1257:0.12209,1261:0.09077,1268:0.12182,1272:0.14526,1294:0.10715,1300:0.08889,1302:0.10888,1303:0.10821,1304:0.11891,1312:0.14542,1329:0.15623,1335:0.11071,1342:0.11746,1356:0.08600,1366:0.10598,1372:0.10745,1374:0.11679,1376:0.23383,1386:0.10202,1387:0.10592,1392:0.09082,1393:0.11696
apprais,124:0.10292,675:0.08900,962:0.07437
appraoch,165:0.08139
appreci,10:0.21109,14:0.07551,94:0.07568,109:0.11297,132:0.08551,156:0.10518,163:0.07347,185:0.08663,189:0.08417,193:0.08158,209:0.09228,232:0.10181,252:0.09168,262:0.07460,292:0.09622,334:0.12849,360:0.12005,412:0.14051,445:0.15423,645:0.10949,646:0.11835,683:0.09382,740:0.10465,797:0.08353,812:0.10912,827:0.08547,919:0.11432,962:0.07437,975:0.10452,1120:0.20749,1136:0.10042,1178:0.14397,1198:0.09412,1207:0.10980,1239:0.07776,1259:0.11510,1274:0.09769,1319:0.09580,1352:0.09770
approach,19:0.16382,35:0.11410,77:0.08356,92:0.10066,110:0.07786,118:0.11729,121:0.15898,125:0.10244,132:0.08551,163:0.09559,172:0.09802,184:0.11861,193:0.08158,214:0.13736,216:0.09356,218:0.09638,244:0.07071,284:0.14585,304:0.08968,328:0.10957,334:0.09876,342:0.09409,349:0.12554,363:0.09594,367:0.13772,373:0.08724,406:0.10162,417:0.07187,423:0.11163,441:0.09020,444:0.15248,447:0.13694,448:0.11636,455:0.10863,472:0.14904,499:0.12853,531:0.13022,540:0.10166,556:0.11529,560:0.10062,569:0.08767,618:0.15558,637:0.14294,640:0.08356,644:0.10886,666:0.12451,683:0.09382,686:0.10311,696:0.09229,733:0.10900,752:0.15756,753:0.16473,758:0.17360,770:0.13799,773:0.08485,821:0.17591,824:0.13947,827:0.08547,828:0.10506,834:0.20826,837:0.09924,844:0.10288,867:0.11916,873:0.14698,903:0.10235,936:0.15246,943:0.11660,955:0.22436,1025:0.11431,1035:0.09974,1037:0.14979,1070:0.14036,1094:0.12831,1117:0.11590,1123:0.14467,1126:0.14566,1130:0.12874,1164:0.10168,1186:0.12715,1197:0.11898,1222:0.10699,1223:0.15342,1224:0.11900,1229:0.08798,1230:0.11231,1235:0.09252,1252:0.17456,1255:0.11106,1273:0.11615,1294:0.10715,1311:0.16450,1320:0.12966,1361:0.11718,1373:0.13592,1392:0.09082,1394:0.12315
appropri,22:0.13782,33:0.09250,153:0.18792,191:0.10395,210:0.08718,255:0.10802,262:0.07460,297:0.11620,329:0.06336,363:0.09594,399:0.18650,452:0.08306,479:0.12236,486:0.09471,666:0.12451,689:0.09642,749:0.13205,758:0.13343,768:0.16458,797:0.08353,845:0.10605,847:0.14630,852:0.11221,876:0.11694,926:0.12341,950:0.14552,982:0.11689,987:0.09606,1015:0.12221,1028:0.10832,1047:0.07605,1135:0.13060,1214:0.11522,1224:0.09147,1239:0.07776,1246:0.08702,1268:0.08247,1271:0.12813,1280:0.09238,1284:0.11875,1296:0.10156,1297:0.11893,1322:0.09989,1370:0.10065
approx,199:0.08528,721:0.07158
approxim,2:0.10718,4:0.17071,9:0.08253,15:0.16124,19:0.16382,27:0.16423,35:0.11410,49:0.10016,52:0.11382,54:0.10171,60:0.12121,68:0.13822,73:0.08255,80:0.09228,84:0.14111,89:0.07629,93:0.13992,94:0.07568,97:0.09785,107:0.15490,110:0.11501,111:0.14722,115:0.15397,116:0.11376,117:0.18664,122:0.14990,124:0.13390,131:0.08807,132:0.11125,133:0.10853,134:0.11152,143:0.18914,145:0.12995,146:0.09963,149:0.09511,151:0.09043,155:0.12539,157:0.10193,160:0.16681,164:0.10866,174:0.09426,179:0.09884,180:0.18318,188:0.10384,191:0.13525,193:0.10613,197:0.09592,198:0.12216,199:0.11095,205:0.09652,206:0.12098,207:0.10707,218:0.12540,229:0.10293,230:0.13322,231:0.14016,232:0.10181,242:0.22744,245:0.12420,248:0.13032,255:0.10802,259:0.10856,263:0.15154,280:0.12304,281:0.20956,289:0.10132,292:0.12518,294:0.11804,301:0.25145,302:0.16027,304:0.11668,305:0.11575,306:0.12569,307:0.15765,309:0.11207,322:0.20544,325:0.09576,328:0.08422,329:0.09359,330:0.14182,334:0.12849,341:0.12920,342:0.09409,343:0.13952,349:0.12554,352:0.10144,354:0.13262,355:0.15006,359:0.14026,360:0.15619,361:0.16720,362:0.18027,365:0.10857,366:0.10904,369:0.17808,370:0.16899,375:0.09755,379:0.12202,391:0.16502,404:0.15240,406:0.10162,412:0.14051,417:0.09351,423:0.08580,424:0.19674,428:0.11534,433:0.07804,437:0.15473,443:0.10104,444:0.15248,448:0.11636,454:0.13906,455:0.10863,456:0.09280,458:0.09715,459:0.09047,460:0.14002,461:0.14606,467:0.16760,470:0.19412,473:0.20789,474:0.12350,475:0.14628,476:0.10132,477:0.13050,479:0.18074,489:0.11741,492:0.25142,493:0.09570,494:0.17118,495:0.14273,496:0.13001,497:0.11348,499:0.10438,507:0.25753,509:0.18064,514:0.14776,515:0.12620,523:0.16288,525:0.13955,527:0.14775,529:0.11118,535:0.14166,537:0.15248,547:0.16505,548:0.08978,556:0.11529,557:0.11788,567:0.11157,568:0.13467,569:0.08767,570:0.15410,571:0.12690,572:0.07667,574:0.10401,575:0.09243,581:0.16049,582:0.15933,586:0.18080,591:0.25691,593:0.11276,595:0.10122,604:0.12308,605:0.11942,606:0.18027,608:0.17153,611:0.19016,612:0.14162,616:0.12696,627:0.12092,628:0.10149,630:0.14774,636:0.10405,639:0.15111,643:0.12596,644:0.10886,645:0.10949,646:0.09096,648:0.19482,654:0.21005,656:0.10068,658:0.09691,659:0.16570,660:0.08970,662:0.08283,666:0.12451,667:0.14269,677:0.09086,679:0.11300,689:0.09642,692:0.10841,694:0.11423,695:0.08715,699:0.10634,701:0.09885,702:0.20229,704:0.07978,706:0.14188,710:0.09904,723:0.12516,727:0.10717,730:0.09813,731:0.12926,734:0.13623,739:0.08722,748:0.11160,752:0.15756,753:0.10282,754:0.11366,758:0.13343,759:0.15139,763:0.15257,765:0.11801,766:0.09733,770:0.17953,771:0.14019,775:0.17391,776:0.17613,777:0.20794,784:0.10566,786:0.17251,788:0.14808,801:0.10970,802:0.17134,812:0.10912,814:0.10509,828:0.10506,829:0.11478,831:0.15189,842:0.18430,845:0.10605,848:0.16450,853:0.20599,857:0.10313,872:0.10665,885:0.15475,890:0.13009,895:0.14111,897:0.13873,901:0.16370,913:0.13125,919:0.11432,920:0.21136,921:0.11143,922:0.13063,926:0.12341,928:0.07558,929:0.11638,934:0.10176,940:0.14818,941:0.14946,944:0.13711,945:0.14145,947:0.08927,962:0.11914,965:0.15637,966:0.12444,972:0.10737,974:0.10568,985:0.18405,987:0.09606,988:0.14881,989:0.10939,990:0.20036,996:0.14865,1000:0.10235,1003:0.12183,1009:0.12205,1016:0.22328,1019:0.13326,1023:0.18462,1040:0.08821,1041:0.13316,1043:0.11193,1047:0.12184,1052:0.13633,1055:0.12768,1058:0.14601,1059:0.14812,1061:0.08454,1065:0.12328,1066:0.08669,1070:0.14036,1072:0.10070,1073:0.19747,1074:0.15976,1076:0.19415,1079:0.15222,1082:0.09644,1087:0.13212,1095:0.11104,1098:0.17657,1100:0.12600,1106:0.12034,1107:0.13404,1108:0.10084,1110:0.15948,1112:0.16276,1129:0.13273,1134:0.09114,1135:0.16991,1136:0.10042,1137:0.09224,1148:0.16689,1152:0.29490,1154:0.09320,1167:0.10591,1168:0.13090,1180:0.14083,1182:0.13178,1183:0.12920,1184:0.12912,1185:0.11662,1186:0.12715,1190:0.13098,1198:0.09412,1199:0.09504,1200:0.11456,1218:0.11379,1221:0.13597,1223:0.15342,1224:0.11900,1231:0.15813,1234:0.14974,1235:0.09252,1238:0.11776,1239:0.07776,1246:0.11322,1248:0.11550,1251:0.15897,1259:0.11510,1263:0.11560,1265:0.11887,1270:0.16088,1271:0.08674,1274:0.12709,1280:0.09238,1281:0.10060,1289:0.09470,1292:0.14070,1297:0.11893,1303:0.10821,1307:0.12326,1309:0.12583,1310:0.08798,1313:0.06389,1319:0.12464,1320:0.09966,1322:0.09989,1324:0.15221,1327:0.17202,1328:0.10197,1330:0.10011,1333:0.09450,1336:0.13631,1337:0.15332,1338:0.10950,1343:0.12363,1347:0.10113,1349:0.11203,1351:0.09171,1352:0.09770,1356:0.08600,1365:0.15724,1366:0.10598,1368:0.15053,1370:0.13095,1374:0.11679,1375:0.13751,1378:0.14506,1383:0.10203,1384:0.11719,1385:0.10995,1392:0.09082,1393:0.11696,1394:0.12315
apropri,1140:0.20544
ar,557:0.11788
ara,252:0.09168
arbitrari,47:0.13722,49:0.11372,50:0.11449,62:0.11378,64:0.12596,65:0.15109,89:0.07629,122:0.10148,147:0.11026,160:0.08341,163:0.07347,164:0.10866,194:0.17570,201:0.13381,226:0.16108,240:0.09687,249:0.12647,278:0.11986,292:0.09622,300:0.09625,369:0.13030,374:0.13301,379:0.12202,397:0.13284,432:0.10529,435:0.10810,458:0.09715,474:0.12350,492:0.19325,498:0.12215,528:0.12667,538:0.10905,572:0.07667,579:0.10781,580:0.11934,581:0.16049,587:0.13772,614:0.10246,625:0.08241,637:0.14294,652:0.15805,653:0.12149,663:0.12728,683:0.09382,717:0.12482,730:0.09813,736:0.15370,738:0.15933,754:0.14788,783:0.12368,787:0.16867,788:0.13043,814:0.10509,851:0.18736,863:0.13850,877:0.18085,913:0.13125,936:0.11719,962:0.10985,978:0.16474,980:0.11116,984:0.17687,987:0.09606,990:0.14660,1005:0.16348,1010:0.15753,1056:0.12201,1109:0.12734,1145:0.13913,1147:0.07531,1182:0.10129,1194:0.11394,1197:0.11898,1201:0.07478,1203:0.10934,1208:0.13771,1221:0.13597,1226:0.11950,1231:0.10706,1239:0.07776,1304:0.11891,1309:0.09672,1320:0.09966,1342:0.09028,1366:0.15655,1375:0.11167
arbitrarili,122:0.10148,321:0.14441,432:0.10529,533:0.21822,661:0.10351,716:0.15359,1043:0.11193,1128:0.12861,1194:0.11394,1386:0.10202
arc,233:0.14833,335:0.14719,341:0.09930,533:0.21822,929:0.11638,987:0.09606,1112:0.12510,1167:0.15644,1201:0.07478,1217:0.12838,1233:0.13649,1248:0.07819,1316:0.09957
ardc,1077:0.12729
area,14:0.07551,25:0.10175,146:0.09963,197:0.09592,210:0.11343,225:0.08041,234:0.09051,235:0.21344,266:0.09702,276:0.13944,344:0.07231,381:0.12372,399:0.18650,451:0.17020,555:0.21049,561:0.15526,575:0.09243,586:0.13897,595:0.10122,656:0.10068,711:0.16762,721:0.07158,753:0.10282,758:0.17360,759:0.13334,786:0.10768,788:0.14808,799:0.13930,801:0.10970,808:0.11211,816:0.11998,872:0.10665,933:0.08899,949:0.12786,1005:0.12565,1089:0.13903,1093:0.19162,1146:0.20379,1167:0.15644,1168:0.13090,1195:0.09306,1201:0.14956,1203:0.19442,1207:0.10980,1209:0.09252,1217:0.12838,1222:0.10699,1230:0.11231,1262:0.12754,1270:0.12365,1297:0.11893,1356:0.08600
argon,185:0.08663,259:0.10856,405:0.24198,529:0.08546,536:0.13071,1199:0.12365,1264:0.10352,1316:0.12955
argu,43:0.12023,103:0.12757,296:0.09754
argument,1041:0.13316,1281:0.10060
aris,2:0.10718,39:0.12706,55:0.12481,149:0.09511,181:0.18328,185:0.11271,199:0.08528,211:0.10689,212:0.07787,244:0.07071,265:0.21012,278:0.11986,315:0.10914,342:0.09409,357:0.11620,374:0.13301,448:0.11636,457:0.13917,518:0.10205,593:0.11276,670:0.22361,683:0.09382,733:0.10900,798:0.06476,827:0.08547,869:0.08378,885:0.15475,886:0.16893,892:0.15800,900:0.15835,954:0.15871,992:0.08849,1039:0.11961,1181:0.12116,1185:0.11662,1199:0.09504,1207:0.10980,1239:0.07776,1364:0.10855,1389:0.12365
arisen,285:0.19699,724:0.11983
arithmet,497:0.11348,1084:0.19630
arm,183:0.11820,210:0.08718
armenaka,953:0.17732,1068:0.11771
around,36:0.12117,121:0.12219,122:0.10148,130:0.17142,136:0.15326,169:0.12217,211:0.13907,283:0.10563,292:0.09622,296:0.09754,318:0.12551,371:0.11741,422:0.12874,449:0.14566,452:0.08306,464:0.10896,465:0.13748,468:0.13829,483:0.20883,496:0.13001,531:0.13022,533:0.21822,541:0.09956,545:0.15114,553:0.16569,554:0.11399,569:0.08767,572:0.07667,574:0.10401,577:0.14966,635:0.12014,819:0.18449,903:0.10235,907:0.13116,916:0.11641,922:0.13063,936:0.11719,989:0.14231,994:0.11627,1002:0.11455,1074:0.15976,1081:0.18124,1105:0.13439,1112:0.12510,1134:0.09114,1144:0.08974,1178:0.14397,1238:0.11776,1247:0.11638,1258:0.13347,1262:0.12754,1268:0.08247,1301:0.12027,1384:0.11719,1394:0.12315
arrang,18:0.13824,60:0.15770,109:0.11297,289:0.13182,432:0.16868,792:0.06879,846:0.10352,1094:0.12831,1188:0.16433,1202:0.08884,1239:0.07776,1325:0.08639
arrest,639:0.15111
arrhenius,1061:0.08454,1072:0.07740,1268:0.08247
arriv,83:0.11044,304:0.08968,753:0.10282,756:0.12079,928:0.07558,1057:0.12492,1209:0.09252,1313:0.11787
art,12:0.13071,499:0.08023
articl,89:0.09926,130:0.17142,132:0.13699,388:0.11233,649:0.09888,1174:0.15406,1389:0.12365
artific,77:0.08356,227:0.11745
artifici,128:0.10869,174:0.09426,315:0.10914,344:0.07231,486:0.09471,618:0.11958,620:0.09762,718:0.12029,792:0.06879,798:0.06476,933:0.11578,1154:0.09320,1184:0.09925
ascend,67:0.20643,94:0.07568,476:0.10132,918:0.13735,1202:0.08884
ascertain,222:0.10417,337:0.14974,914:0.11391,1325:0.08639
ascrib,829:0.11478
asid,939:0.14274
asimplifi,242:0.17481
ask,42:0.09303
asm,964:0.11934,1125:0.11281,1134:0.11858
aspect,68:0.13822,83:0.08488,189:0.08417,200:0.12563,205:0.09652,210:0.08718,225:0.10461,226:0.16108,229:0.15203,230:0.15126,247:0.19650,284:0.14585,287:0.12271,288:0.11292,391:0.12684,403:0.13756,404:0.11714,420:0.12035,433:0.07804,434:0.10073,442:0.10193,453:0.13374,464:0.10896,513:0.17325,573:0.11526,579:0.10781,632:0.16410,638:0.10517,640:0.08356,674:0.12874,675:0.08900,676:0.15974,679:0.14702,686:0.10311,698:0.15931,699:0.17037,703:0.14974,704:0.12782,712:0.14949,729:0.10946,746:0.12509,749:0.22434,779:0.10661,780:0.20664,782:0.15257,792:0.06879,793:0.11708,794:0.08672,808:0.14586,835:0.19197,875:0.20679,895:0.18359,902:0.13838,916:0.18649,918:0.20288,919:0.18315,920:0.21136,921:0.11143,1047:0.07605,1174:0.15406,1186:0.12715,1202:0.08884,1245:0.14821,1289:0.09470,1290:0.10960,1320:0.12966,1329:0.12008,1332:0.12451,1334:0.11723,1336:0.10477,1338:0.10950,1339:0.09946,1341:0.17381,1379:0.14002
assembl,47:0.10547,866:0.13389
assert,152:0.10954
assess,416:0.09126,433:0.07804,484:0.09456,649:0.09888,675:0.08900,768:0.21413,797:0.08353,819:0.14180,876:0.11694,921:0.11143,1209:0.09252,1224:0.09147,1285:0.17915,1379:0.14002
assign,432:0.10529,1233:0.13649
assist,244:0.07071,778:0.18087,798:0.06476,1273:0.11615,1385:0.10995
associ,16:0.12253,29:0.09611,58:0.10712,70:0.11201,100:0.12479,116:0.11376,129:0.09440,160:0.08341,163:0.07347,172:0.09802,187:0.08674,189:0.08417,244:0.07071,288:0.16679,318:0.12551,346:0.10772,359:0.14026,364:0.07888,373:0.11350,441:0.09020,466:0.09707,484:0.09456,536:0.08849,554:0.11399,579:0.17272,594:0.18317,595:0.13169,607:0.20092,625:0.08241,638:0.10517,651:0.11493,674:0.12874,695:0.11339,699:0.10634,701:0.09885,702:0.11907,712:0.14949,731:0.12926,798:0.06476,805:0.10345,810:0.11189,836:0.11993,844:0.13385,846:0.13468,862:0.18520,873:0.11297,902:0.10636,939:0.14274,997:0.10925,1013:0.12535,1089:0.13903,1094:0.12831,1095:0.11104,1097:0.12867,1153:0.11949,1158:0.16237,1187:0.13063,1212:0.09950,1277:0.09382,1283:0.16124,1297:0.11893,1309:0.12583,1326:0.12091,1347:0.10113,1371:0.10983,1375:0.08583,1378:0.14506,1383:0.10203
assort,442:0.10193
assum,14:0.07551,15:0.12393,18:0.13824,22:0.13782,44:0.08839,50:0.11449,52:0.11382,54:0.10171,55:0.16238,72:0.12328,81:0.13147,82:0.10996,85:0.08872,87:0.13299,91:0.12229,95:0.13984,104:0.13081,110:0.10130,114:0.15245,115:0.10423,128:0.10869,131:0.08807,135:0.11451,138:0.12902,140:0.08282,146:0.12963,151:0.11765,157:0.10193,161:0.16978,167:0.12837,172:0.09802,177:0.10564,183:0.15378,184:0.15431,191:0.10395,200:0.12563,209:0.09228,217:0.13580,228:0.21924,276:0.10718,299:0.12476,303:0.14739,307:0.12117,318:0.12551,328:0.08422,363:0.09594,387:0.17591,389:0.18287,390:0.12757,409:0.15625,410:0.11796,414:0.15600,426:0.11837,435:0.10810,447:0.17816,453:0.10279,454:0.10689,455:0.10863,459:0.09047,460:0.14002,474:0.12350,486:0.09471,493:0.09570,518:0.10205,523:0.18493,535:0.14166,538:0.10905,547:0.16505,561:0.10511,562:0.09807,574:0.10401,575:0.09243,583:0.12328,601:0.09651,608:0.13184,614:0.10246,616:0.12696,653:0.12149,656:0.10068,660:0.11671,723:0.12516,726:0.13405,740:0.10465,765:0.11801,769:0.14511,818:0.13949,821:0.17591,822:0.13159,824:0.13947,833:0.15084,877:0.18085,881:0.11690,886:0.16893,890:0.13009,924:0.10392,927:0.07472,928:0.09833,929:0.11638,939:0.14274,944:0.17839,945:0.14145,962:0.07437,967:0.12243,974:0.13749,975:0.10452,977:0.10679,984:0.13595,985:0.11488,988:0.14881,989:0.16158,1010:0.15753,1021:0.17981,1028:0.10832,1033:0.14359,1053:0.11116,1058:0.14601,1061:0.10998,1072:0.07740,1075:0.10744,1076:0.14923,1109:0.12734,1112:0.12510,1128:0.16732,1136:0.10042,1139:0.15010,1154:0.09320,1179:0.09982,1183:0.16810,1190:0.13098,1198:0.09412,1199:0.09504,1203:0.10934,1226:0.09185,1236:0.15031,1238:0.11776,1239:0.07776,1244:0.07543,1246:0.08702,1251:0.10762,1254:0.12376,1255:0.11106,1265:0.11887,1282:0.11902,1286:0.19388,1291:0.10118,1298:0.12906,1300:0.08889,1301:0.12027,1310:0.08798,1315:0.15680,1339:0.09946,1343:0.09503,1366:0.10598,1367:0.16607,1374:0.11679,1389:0.12365,1390:0.10814,1393:0.11696
assumpt,17:0.12071,24:0.09382,42:0.09303,44:0.08839,56:0.10681,72:0.09476,86:0.13164,87:0.13299,89:0.07629,117:0.12636,124:0.10292,131:0.08807,134:0.11152,135:0.11451,138:0.14648,140:0.12233,170:0.10020,184:0.11861,190:0.11493,191:0.10395,193:0.08158,195:0.14473,209:0.09228,217:0.13580,230:0.10240,276:0.10718,283:0.10563,306:0.12569,309:0.11207,317:0.09864,319:0.12881,327:0.15203,328:0.08422,329:0.06336,344:0.07231,349:0.12554,352:0.10144,359:0.14026,380:0.13921,391:0.12684,402:0.13926,426:0.11837,435:0.10810,444:0.15248,449:0.14566,453:0.10279,459:0.09047,489:0.11741,499:0.13630,515:0.12620,521:0.12628,523:0.16288,538:0.10905,539:0.16684,548:0.08978,562:0.09807,572:0.07667,575:0.09243,581:0.16049,583:0.16039,599:0.09466,608:0.13184,611:0.11193,613:0.12575,614:0.10246,623:0.10683,656:0.10068,658:0.12609,703:0.14974,714:0.13932,723:0.12516,818:0.13949,828:0.10506,837:0.12911,851:0.12684,870:0.12654,914:0.11391,917:0.10812,928:0.11164,939:0.14274,960:0.12493,975:0.10452,1031:0.17432,1059:0.14812,1061:0.08454,1121:0.13335,1141:0.17777,1186:0.12715,1192:0.12764,1196:0.14287,1198:0.09412,1201:0.07478,1213:0.10264,1221:0.13597,1226:0.09185,1248:0.07819,1250:0.09056,1254:0.12376,1283:0.20978,1297:0.11893,1312:0.14542,1313:0.06389,1320:0.12966,1337:0.11785,1368:0.15053,1372:0.10745,1374:0.11679,1375:0.08583
assur,724:0.11983
astronaut,220:0.11928
astrophys,778:0.18087
asymmetr,118:0.11729,206:0.09299,545:0.19663,773:0.08485,936:0.11719,1179:0.12987,1224:0.11900
asymmetri,78:0.10169,813:0.13357
asymptot,94:0.11179,105:0.15447,111:0.14722,118:0.11729,128:0.10869,160:0.08341,165:0.08139,264:0.24883,281:0.20956,299:0.12476,310:0.14474,322:0.20544,381:0.09509,417:0.09351,528:0.12667,530:0.13536,540:0.10166,560:0.10062,626:0.11330,663:0.12728,664:0.17530,754:0.11366,784:0.10566,785:0.12531,802:0.13170,811:0.08698,919:0.11432,920:0.21136,961:0.11176,1044:0.12580,1053:0.11116,1071:0.14014,1107:0.10303,1137:0.14778,1138:0.21256,1184:0.09925,1200:0.11456,1273:0.11615,1297:0.11893,1304:0.11891,1373:0.11972
atlarg,788:0.10025
atm,262:0.09706,1009:0.12205
atmospher,32:0.16682,33:0.09250,67:0.20643,69:0.12625,77:0.08356,83:0.11044,85:0.11542,90:0.14750,138:0.09917,162:0.10310,163:0.09559,164:0.12337,177:0.10564,262:0.09706,263:0.11648,302:0.12319,332:0.11164,357:0.11620,436:0.23194,499:0.10438,510:0.17319,518:0.10205,536:0.08849,548:0.11681,552:0.09796,553:0.11217,554:0.11399,583:0.12328,613:0.20145,614:0.16415,616:0.16518,618:0.17663,619:0.28338,620:0.16585,622:0.13035,639:0.19660,691:0.12997,715:0.21244,716:0.19982,717:0.13537,719:0.14086,794:0.08672,805:0.10345,815:0.09867,816:0.11998,876:0.15214,882:0.18560,908:0.10837,944:0.20253,949:0.12786,958:0.14078,962:0.07437,969:0.19202,982:0.17266,983:0.14834,1000:0.10235,1011:0.17340,1077:0.16560,1103:0.22619,1147:0.07531,1150:0.18971,1255:0.11106,1257:0.12209,1274:0.09769,1291:0.14946,1319:0.09580,1335:0.11071,1344:0.16152,1345:0.19220,1347:0.13157,1348:0.20297,1391:0.10060,1393:0.11696,1394:0.12315
atom,24:0.12206,259:0.14124,262:0.09706,303:0.19176,355:0.15006,436:0.17828,437:0.15473,541:0.09956,575:0.09243,576:0.09507,1230:0.11231,1263:0.08885,1297:0.11893
atospher,164:0.08352
attach,53:0.13573,58:0.10712,100:0.09592,142:0.13038,152:0.10954,179:0.12860,188:0.13510,222:0.13553,290:0.12685,315:0.07389,369:0.10015,392:0.15089,439:0.11296,440:0.19123,526:0.20228,603:0.09837,609:0.20957,612:0.14162,633:0.15322,683:0.15030,793:0.11708,797:0.08353,902:0.10636,959:0.10732,996:0.09279,1077:0.16560,1106:0.12034,1189:0.13636,1228:0.13674,1267:0.16315,1271:0.08674,1398:0.11476
attack,1:0.12389,12:0.13071,27:0.12623,32:0.18093,48:0.20325,56:0.10681,58:0.15822,69:0.18649,70:0.11201,122:0.16258,124:0.10292,189:0.14301,193:0.08158,197:0.14169,225:0.11877,231:0.14016,232:0.10181,234:0.11776,248:0.13032,312:0.15830,354:0.21247,360:0.12005,363:0.09594,373:0.12886,420:0.12035,433:0.07804,434:0.10073,439:0.11296,440:0.14698,441:0.09020,443:0.14925,469:0.14002,484:0.09456,492:0.30959,498:0.12215,520:0.10151,530:0.13536,541:0.09956,567:0.14515,572:0.09974,636:0.10405,638:0.13684,673:0.10617,688:0.12467,694:0.11423,695:0.08715,698:0.15931,704:0.07978,708:0.21730,709:0.17000,711:0.12884,712:0.14949,717:0.15591,746:0.12509,785:0.12531,790:0.10338,801:0.10970,815:0.15807,901:0.12582,924:0.10392,927:0.09721,946:0.11544,947:0.15167,972:0.10737,973:0.14440,988:0.14881,993:0.14340,999:0.10681,1000:0.15118,1005:0.12565,1006:0.15530,1064:0.11380,1077:0.18802,1104:0.11360,1108:0.10084,1114:0.13862,1115:0.23098,1147:0.07531,1179:0.12987,1184:0.09925,1186:0.12715,1188:0.11125,1192:0.12764,1193:0.12276,1201:0.07478,1204:0.08106,1217:0.12838,1218:0.12919,1229:0.08798,1231:0.15813,1259:0.11510,1262:0.12754,1277:0.15030,1292:0.09525,1304:0.11891,1307:0.15178,1309:0.09672,1343:0.09503,1347:0.19763,1349:0.11203,1350:0.19439,1351:0.11932,1352:0.09770,1355:0.10405,1381:0.09217
attain,58:0.10712,77:0.08356,277:0.09891,651:0.11493,658:0.09691,758:0.17360,1205:0.09967,1380:0.09257,1388:0.14984
attaindd,1047:0.07605
attempt,96:0.10127,109:0.11297,130:0.17142,179:0.09884,188:0.10384,190:0.11493,199:0.08528,202:0.08670,210:0.08718,244:0.07071,262:0.07460,286:0.21136,301:0.19327,304:0.08968,360:0.12005,441:0.09020,491:0.14131,549:0.17287,600:0.11629,683:0.09382,797:0.08353,810:0.11189,865:0.13449,876:0.11694,892:0.15800,906:0.17938,911:0.14211,929:0.11638,979:0.12703,992:0.08849,997:0.10925,1108:0.10084,1160:0.13235,1299:0.16884,1302:0.10888,1380:0.12044
atten,1052:0.13633
attend,100:0.09592,138:0.12902,165:0.08139,797:0.08353,927:0.07472
attent,46:0.16636,56:0.10681,91:0.12229,163:0.07347,166:0.10890,172:0.12753,193:0.08158,202:0.08670,270:0.10209,283:0.10563,313:0.18462,320:0.27333,394:0.18155,453:0.10279,456:0.09280,494:0.11589,506:0.13901,532:0.19977,649:0.12865,681:0.13270,720:0.10756,792:0.08950,828:0.10506,887:0.13864,892:0.15800,933:0.08899,934:0.10176,1030:0.20992,1160:0.13235,1201:0.07478,1293:0.18423,1295:0.11430,1313:0.06389,1376:0.15830,1377:0.13323,1385:0.10995
attenu,64:0.16388,219:0.10048,660:0.08970,1156:0.16389,1313:0.06389,1317:0.21050
attitud,673:0.10617,711:0.12884,717:0.12482,947:0.11614,1095:0.11104
attract,33:0.12034,270:0.10209,969:0.14759
attribut,49:0.07699,152:0.10954,186:0.10729,276:0.10718,294:0.09073,504:0.10365,576:0.07308,588:0.10045,589:0.13031,628:0.10149,658:0.09691,757:0.09001,858:0.11307,883:0.13256,1039:0.09194,1047:0.07605,1199:0.09504,1239:0.07776,1313:0.06389,1372:0.10745
augment,86:0.13164,210:0.08718,1244:0.11141,1326:0.12091
august,83:0.08488,1052:0.13633
aural,844:0.10288
auspic,905:0.15481
author,15:0.12393,20:0.17404,21:0.18304,46:0.21643,77:0.08356,104:0.13081,132:0.11125,136:0.15326,154:0.15039,157:0.16330,202:0.08670,206:0.09299,292:0.09622,297:0.11620,307:0.12117,313:0.18462,328:0.08422,344:0.12286,351:0.12519,356:0.15053,361:0.21753,388:0.14615,393:0.18827,417:0.12211,424:0.19674,448:0.11636,452:0.08306,469:0.14002,478:0.15466,488:0.11604,489:0.15275,490:0.15969,491:0.14131,499:0.10438,502:0.22619,503:0.14109,533:0.21822,540:0.10166,552:0.09796,558:0.13039,577:0.14966,644:0.10886,649:0.09888,660:0.11671,669:0.15179,677:0.09086,703:0.14974,731:0.16879,733:0.10900,739:0.11348,748:0.11160,756:0.15715,771:0.14019,778:0.18087,804:0.11503,825:0.09707,829:0.11478,839:0.11755,844:0.10288,892:0.15800,919:0.11432,931:0.18310,937:0.12928,957:0.13797,962:0.07437,963:0.18027,966:0.09565,1036:0.13630,1041:0.13316,1054:0.17372,1057:0.16253,1059:0.10028,1060:0.17188,1068:0.11771,1131:0.13272,1137:0.13626,1138:0.16338,1236:0.15031,1276:0.20250,1278:0.10764,1294:0.10715,1321:0.09673,1330:0.10011,1365:0.12086,1370:0.16125,1384:0.11719,1389:0.16088,1398:0.14931
autocorrel,113:0.13529,558:0.13039
automat,111:0.21746,184:0.11861,451:0.17020,529:0.08546,599:0.09466,704:0.07978,745:0.18914,869:0.08378,1087:0.13212,1099:0.16502,1113:0.15669,1388:0.19494
auxiliari,1095:0.14447,1323:0.18417
avail,8:0.12653,12:0.13071,14:0.07551,17:0.12071,19:0.16382,30:0.13098,34:0.11225,69:0.12625,96:0.13175,122:0.10148,124:0.10292,125:0.10244,127:0.12592,164:0.08352,182:0.13355,185:0.08663,195:0.14473,202:0.08670,251:0.15553,254:0.18071,262:0.07460,265:0.16150,277:0.09891,291:0.17551,292:0.09622,317:0.09864,329:0.06336,330:0.14182,403:0.13756,421:0.11148,433:0.07804,441:0.11735,476:0.10132,522:0.07845,541:0.09956,544:0.13812,552:0.09796,609:0.16108,616:0.12696,622:0.10019,640:0.08356,651:0.11493,701:0.09885,710:0.09904,728:0.16884,753:0.13377,792:0.06879,798:0.06476,809:0.14573,810:0.11189,829:0.11478,876:0.11694,878:0.15409,906:0.17938,1015:0.12221,1051:0.13149,1057:0.12492,1061:0.08454,1104:0.11360,1105:0.13439,1117:0.11590,1145:0.13913,1171:0.16670,1174:0.15406,1185:0.11662,1192:0.12764,1205:0.09967,1209:0.09252,1211:0.12757,1214:0.18459,1224:0.11900,1248:0.07819,1294:0.10715,1298:0.12906,1302:0.10888,1310:0.11447,1331:0.15212,1336:0.10477,1359:0.16244,1391:0.10060,1392:0.09082
avalu,200:0.12563
avenu,12:0.13071,618:0.11958
averag,66:0.15736,74:0.14936,97:0.09785,113:0.13529,125:0.13328,165:0.12022,193:0.08158,237:0.12704,303:0.14739,400:0.17020,453:0.10279,493:0.12450,497:0.11348,560:0.10062,564:0.09339,566:0.11333,568:0.13467,569:0.08767,574:0.10401,604:0.16013,620:0.09762,622:0.10019,641:0.13248,662:0.10777,741:0.19203,749:0.13205,759:0.13334,805:0.10345,812:0.10912,822:0.13159,829:0.11478,840:0.15526,959:0.10732,962:0.07437,982:0.11689,1012:0.16737,1103:0.15313,1195:0.09306,1258:0.10259,1354:0.11952
avoid,15:0.12393,162:0.10310,202:0.08670,244:0.07071,275:0.12563,315:0.07389,355:0.15006,410:0.11796,416:0.09126,448:0.11636,679:0.11300,683:0.09382,686:0.10311,792:0.06879,878:0.15409,1013:0.12535,1031:0.13399,1039:0.09194,1043:0.11193,1089:0.13903,1205:0.09967,1219:0.13135,1239:0.07776,1280:0.09238,1321:0.14288
avov,1229:0.08798
avro,792:0.06879
away,85:0.08872,116:0.11376,117:0.12636,479:0.12236,636:0.10405,707:0.10235,808:0.11211,890:0.13009,946:0.08873,986:0.08898
ax,325:0.09576
axe,78:0.10169,225:0.08041,290:0.12685,368:0.12734,498:0.15892,754:0.11366,1092:0.09411,1169:0.11591,1231:0.10706,1385:0.10995
axi,23:0.12983,34:0.11225,42:0.13742,106:0.17065,116:0.18225,157:0.15056,219:0.10048,225:0.10461,279:0.14081,290:0.12685,323:0.16194,381:0.09509,414:0.10561,442:0.10193,544:0.13812,593:0.11276,616:0.12696,617:0.15281,646:0.09096,673:0.08161,721:0.07158,765:0.15353,784:0.10566,802:0.19454,815:0.09867,852:0.11221,897:0.13873,900:0.15835,903:0.10235,929:0.11638,942:0.12104,956:0.12283,1094:0.16694,1095:0.14447,1110:0.15948,1137:0.13626,1167:0.10591,1183:0.12920,1230:0.11231,1231:0.10706,1363:0.11343,1382:0.09301,1385:0.10995,1392:0.09082
axial,11:0.18112,19:0.16382,23:0.12983,40:0.11082,49:0.07699,54:0.13233,62:0.08745,85:0.08872,94:0.12124,97:0.09785,100:0.09592,105:0.15447,118:0.17326,127:0.16382,134:0.11152,136:0.15326,138:0.12902,188:0.13510,191:0.13525,196:0.15110,213:0.11609,216:0.09356,217:0.13580,266:0.12623,277:0.12868,341:0.12920,349:0.09649,353:0.12206,364:0.07888,381:0.09509,382:0.22712,387:0.17591,426:0.17484,428:0.11534,435:0.10810,473:0.14074,543:0.16654,559:0.14750,589:0.10016,590:0.16707,592:0.19579,642:0.21053,739:0.11348,740:0.10465,741:0.21802,742:0.17944,743:0.16519,744:0.13002,750:0.16455,760:0.14539,762:0.18826,764:0.11864,769:0.14511,784:0.10566,812:0.10912,814:0.13673,816:0.11998,821:0.17591,822:0.13159,839:0.11755,845:0.10605,852:0.11221,885:0.20133,887:0.18037,888:0.22721,897:0.13873,928:0.11164,932:0.22061,934:0.13239,935:0.17720,937:0.12928,938:0.17267,940:0.14818,947:0.11614,956:0.12283,957:0.13797,967:0.18084,970:0.14831,984:0.13595,985:0.11488,999:0.10681,1001:0.12710,1002:0.11455,1005:0.12565,1012:0.12865,1024:0.10693,1038:0.14486,1050:0.16882,1051:0.13149,1058:0.14601,1059:0.10028,1067:0.22236,1068:0.11771,1069:0.16959,1070:0.14036,1082:0.09644,1108:0.10084,1116:0.20908,1117:0.15078,1118:0.20328,1119:0.08651,1121:0.13335,1122:0.15370,1123:0.14467,1125:0.11281,1126:0.21515,1130:0.12874,1131:0.19605,1137:0.12001,1138:0.16338,1145:0.13913,1146:0.20379,1171:0.24623,1172:0.15136,1173:0.11580,1178:0.18731,1195:0.09306,1199:0.09504,1222:0.10699,1279:0.10955,1283:0.16124,1293:0.23969,1299:0.16884,1301:0.12027,1304:0.11891,1328:0.13267,1356:0.08600,1361:0.11718,1366:0.13788,1368:0.19584,1371:0.18660,1372:0.10745,1382:0.09301,1386:0.10202,1390:0.10814
axiallysymmetr,179:0.09884,1234:0.14974
axialthrust,1326:0.12091
axisymmetr,17:0.12071,20:0.11783,85:0.08872,160:0.08341,186:0.10729,283:0.10563,323:0.23920,324:0.16741,332:0.11164,365:0.14125,366:0.14186,369:0.13030,381:0.09509,456:0.09280,494:0.15077,498:0.12215,537:0.15248,554:0.11399,555:0.11838,629:0.13542,630:0.11356,662:0.08283,665:0.13135,667:0.09660,789:0.19594,897:0.13873,912:0.17395,936:0.11719,941:0.14946,957:0.17950,997:0.14214,1006:0.15530,1056:0.13852,1122:0.10406,1131:0.13272,1141:0.17777,1145:0.13913,1153:0.11949,1201:0.11980,1204:0.08106,1222:0.13920,1225:0.09335,1236:0.15031,1241:0.11361,1245:0.11392,1253:0.15074,1261:0.09077,1281:0.10060,1302:0.10888,1371:0.10983,1374:0.11679,1375:0.12679
azimuth,106:0.17065,1243:0.14255
b,101:0.08279,159:0.14052,200:0.12563,206:0.09299,377:0.17348,410:0.11796,456:0.09280,536:0.08849,660:0.08970,731:0.12926,744:0.13002,787:0.11419,871:0.18853,1034:0.10347,1111:0.17864,1149:0.11323,1172:0.11633,1224:0.09147,1289:0.09470,1320:0.09966,1351:0.09171
back,718:0.12029,1008:0.15198
background,113:0.13529,280:0.12304,1295:0.11430,1310:0.08798,1316:0.16917,1376:0.15830
backup,78:0.10169
bagley,415:0.12768
bakanov,1190:0.13098
balanc,107:0.15490,165:0.12022,352:0.10144,542:0.10466,707:0.10235,748:0.11160,767:0.09042,794:0.08672,960:0.12493,962:0.09675,1155:0.13270,1200:0.11456,1204:0.08106,1216:0.10432
ballist,77:0.14858,82:0.10996,127:0.12592,164:0.08352,274:0.09270,499:0.10438,505:0.15199,715:0.18711,716:0.15359,915:0.15031,947:0.08927,976:0.07447,1000:0.10235,1097:0.12867,1106:0.12034,1110:0.15948,1157:0.10300,1204:0.08106,1274:0.09769,1319:0.09580,1379:0.14002
balsa,1218:0.08746
ban,914:0.11391
band,129:0.12282,431:0.12337,721:0.09313,794:0.08672,796:0.19603,891:0.14412,1145:0.13913,1172:0.15136,1298:0.12906
bandwidth,220:0.11928,891:0.11078
bang,141:0.14037
bank,225:0.08041,289:0.14966,433:0.07804
bar,533:0.21822,648:0.19482,762:0.11751,1024:0.10693,1037:0.14979
bare,912:0.11776
barrel,595:0.10122
barrier,90:0.14750,521:0.12628
base,8:0.12653,14:0.09824,25:0.07821,43:0.12023,48:0.13760,53:0.10432,54:0.10171,60:0.12121,63:0.12723,69:0.12625,85:0.08872,91:0.12229,97:0.09785,110:0.07786,111:0.14722,121:0.18049,122:0.10148,126:0.18777,132:0.11125,134:0.11152,136:0.15326,139:0.16209,144:0.12257,146:0.12963,154:0.15039,163:0.07347,165:0.08139,170:0.10020,173:0.18010,174:0.17392,176:0.26900,179:0.18810,185:0.08663,186:0.18228,187:0.08674,188:0.19762,189:0.17501,191:0.10395,197:0.09592,198:0.09389,204:0.11284,207:0.10707,212:0.07787,225:0.10461,230:0.10240,234:0.09051,235:0.12563,242:0.22744,246:0.12463,248:0.16955,255:0.10802,258:0.19019,259:0.14124,272:0.10048,282:0.16770,283:0.10563,294:0.11804,295:0.14064,303:0.14739,304:0.08968,311:0.10801,314:0.11247,315:0.07389,321:0.14441,328:0.08422,329:0.06336,347:0.12494,352:0.10144,354:0.13262,365:0.10857,378:0.21350,379:0.12202,381:0.09509,409:0.23080,417:0.07187,426:0.11837,431:0.19765,432:0.10529,434:0.13105,442:0.10193,454:0.10689,455:0.10863,458:0.09715,467:0.10461,470:0.14921,487:0.19353,489:0.11741,497:0.11348,513:0.13316,517:0.15248,519:0.22806,522:0.10207,524:0.21791,528:0.12667,530:0.13536,536:0.08849,541:0.09956,555:0.11838,564:0.09339,567:0.11157,571:0.09754,574:0.10401,580:0.11934,583:0.12328,595:0.10122,600:0.11629,606:0.11252,662:0.10777,667:0.09660,677:0.09086,690:0.13238,698:0.12245,709:0.10611,710:0.12885,713:0.11615,714:0.13932,717:0.10994,724:0.11983,730:0.09813,743:0.12697,748:0.11160,749:0.13205,759:0.10249,776:0.17613,781:0.09875,783:0.12368,784:0.10566,794:0.08672,804:0.11503,814:0.10509,815:0.12837,816:0.15609,820:0.14830,823:0.14462,828:0.10506,830:0.10472,837:0.12911,844:0.10288,851:0.12684,852:0.11221,881:0.11690,887:0.13864,891:0.11078,910:0.19787,917:0.08311,922:0.13063,928:0.09833,943:0.11660,947:0.11614,952:0.12951,960:0.12493,964:0.11934,965:0.15637,969:0.19202,973:0.18787,979:0.21582,981:0.13473,983:0.14834,985:0.11488,992:0.08849,993:0.14340,994:0.11627,996:0.09279,999:0.20873,1001:0.18774,1005:0.12565,1011:0.17340,1012:0.12865,1014:0.19335,1040:0.06780,1059:0.13046,1060:0.17188,1061:0.08454,1066:0.11278,1077:0.12729,1082:0.09644,1085:0.17305,1107:0.10303,1109:0.12734,1112:0.12510,1113:0.12043,1116:0.16070,1121:0.13335,1137:0.09224,1147:0.07531,1188:0.11125,1190:0.13098,1191:0.11573,1198:0.13903,1199:0.09504,1204:0.08106,1213:0.10264,1221:0.13597,1225:0.09335,1229:0.08798,1239:0.07776,1246:0.08702,1255:0.11106,1258:0.10259,1263:0.08885,1264:0.10352,1277:0.09382,1278:0.10764,1284:0.11875,1292:0.12392,1302:0.10888,1305:0.17454,1307:0.15178,1308:0.15740,1309:0.09672,1311:0.16450,1315:0.12052,1320:0.09966,1330:0.10011,1331:0.15212,1339:0.09946,1342:0.09028,1349:0.11203,1351:0.09171,1352:0.12712,1356:0.08600,1365:0.12086,1366:0.10598,1373:0.11972,1375:0.11167,1386:0.13273,1390:0.10814,1391:0.10060
basetyp,487:0.14875
basi,1:0.12389,8:0.12653,26:0.19046,35:0.11410,45:0.11966,49:0.07699,110:0.07786,124:0.15203,125:0.10244,140:0.08282,165:0.08139,169:0.12217,186:0.10729,204:0.14681,209:0.09228,227:0.11745,234:0.09051,266:0.09702,294:0.09073,327:0.15203,332:0.11164,370:0.11441,484:0.09456,491:0.14131,494:0.11589,520:0.10151,538:0.10905,542:0.10466,568:0.13467,572:0.07667,581:0.16049,600:0.11629,640:0.08356,645:0.14245,665:0.17089,677:0.09086,721:0.09313,781:0.09875,819:0.14180,821:0.17591,828:0.10506,843:0.11272,889:0.08970,928:0.09833,958:0.14078,968:0.11101,974:0.10568,976:0.07447,986:0.08898,1008:0.15198,1033:0.14359,1039:0.09194,1109:0.12734,1120:0.15948,1144:0.08974,1192:0.12764,1197:0.15480,1209:0.09252,1216:0.10432,1242:0.09885,1281:0.10060,1289:0.09470,1339:0.09946,1341:0.10849,1360:0.13578,1370:0.10065,1372:0.10745,1379:0.14002
basic,27:0.12623,44:0.08839,97:0.09785,140:0.10775,143:0.18914,164:0.08352,191:0.10395,231:0.14016,289:0.10132,313:0.18462,415:0.12768,440:0.14698,486:0.09471,498:0.12215,520:0.10151,572:0.07667,573:0.11526,577:0.14966,587:0.13772,594:0.18317,660:0.15951,711:0.12884,712:0.09331,713:0.15111,797:0.10868,824:0.10720,827:0.08547,853:0.20599,872:0.10665,880:0.17034,927:0.07472,1028:0.10832,1043:0.11193,1066:0.08669,1235:0.09252,1242:0.15837,1248:0.07819,1260:0.13607,1294:0.10715,1309:0.09672,1339:0.09946
basin,1125:0.11281
batchelor,788:0.10025
batdorf,841:0.17299