-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexing.txt
19539 lines (19536 loc) · 852 KB
/
indexing.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
tool
917,1,41,1,1361,1,272,1,719,1,980,1,14,3,367,1,371,1,12,1,4.941642422609304
724
137,1,389,1,6.551080335043404
rahman
301,1,523,1,6.551080335043404
arrang
18,1,846,1,6.551080335043404
optic
462,1,1257,2,40,1,187,1,364,1,463,2,272,1,466,2,602,1,536,2,4.941642422609304
upperatmosphere
616,2,617,2,6.551080335043404
underexpand
1195,1,7.24422751560335
acrodynamic
1207,2,7.24422751560335
literature
30,1,798,1,522,1,541,1,172,1,76,1,921,1,1174,1,661,1,714,1,658,2,260,1,4.75932086581535
hm
1365,2,7.24422751560335
ignition
1072,5,1268,7,1269,1,6.145615226935241
mitig
962,1,7.24422751560335
120inch
197,1,7.24422751560335
packard
1112,1,7.24422751560335
peripheral
86,3,354,1,650,1,6.145615226935241
mercuri
1156,1,745,1,6.551080335043404
1
744,1,225,2,325,1,615,4,480,1,272,1,826,1,486,2,721,1,381,2,1335,1,171,1,139,2,21,1,362,1,1075,1,7,1,1028,1,376,1,812,1,218,1,131,1,516,2,943,1,452,2,1039,1,1004,1,72,1,1090,1,696,1,190,1,239,1,710,1,247,2,904,1,527,1,295,1,1258,1,695,1,1363,2,661,1,856,2,1301,1,457,1,1047,1,1362,1,1279,1,828,1,417,1,1136,1,1312,1,458,2,1103,1,1038,1,163,1,759,1,1191,1,1195,1,1251,1,1131,2,620,2,294,1,178,1,749,1,1354,1,1066,1,1197,1,555,1,785,1,857,2,315,1,1299,2,282,2,474,1,1142,1,1378,2,801,1,1324,1,100,1,953,1,64,1,42,1,1065,2,271,1,1190,1,1072,1,213,3,344,1,386,1,18,1,916,1,1064,1,1365,1,1375,1,73,1,575,1,252,2,13,1,794,3,85,1,401,1,1201,3,40,1,563,1,198,2,59,2,569,1,1333,1,1189,1,583,1,467,2,1194,1,1032,2,193,2,660,1,450,1,80,1,1088,2,1199,1,1313,1,1193,1,94,1,145,1,933,1,1202,1,634,1,952,1,49,1,162,1,946,1,891,1,28,1,797,2,602,2,345,1,138,1,954,1,523,2,917,4,1174,1,341,1,234,1,934,1,1153,3,1079,1,1166,2,611,2,95,3,202,2,1382,1,373,2,1356,2,165,2,889,1,604,1,705,1,431,2,964,1,354,1,805,2,270,1,334,1,1074,1,757,2,771,1,572,1,780,1,668,1,338,1,236,1,129,1,414,1,704,2,1372,1,1320,3,587,1,1059,1,793,2,654,4,422,2,1212,1,903,3,1031,1,674,2,77,2,300,1,539,1,1352,2,1192,1,528,3,110,3,1196,1,1.9867321435755685
led
1121,1,1317,1,455,1,1268,1,26,1,739,1,640,1,746,1,893,1,5.047002938267131
inviscidflow
124,1,1222,1,366,1,179,1,401,1,123,1,525,1,188,2,63,1,666,1,4.941642422609304
differentiate
1268,1,94,1,6.551080335043404
prevention
746,1,772,1,6.551080335043404
tn.4050
75,1,7.24422751560335
prevalence
729,1,7.24422751560335
stergi
1150,1,7.24422751560335
trick
834,1,7.24422751560335
unfamiliar
36,1,7.24422751560335
ratnerp
1294,1,7.24422751560335
155
927,1,7.24422751560335
twentyone
127,1,7.24422751560335
slottedflap
1095,1,1094,1,6.551080335043404
hemispheroidal
1082,1,7.24422751560335
power
160,1,1248,1,750,1,721,1,1162,1,325,2,185,1,624,3,258,1,1229,3,474,3,182,1,515,1,827,2,1223,1,1327,1,1044,2,1378,1,155,1,867,2,1198,1,651,1,1149,1,729,1,86,2,771,1,1163,1,673,1,157,2,665,2,627,1,458,1,1124,1,1256,1,725,1,636,1,14,1,723,1,1251,1,404,1,795,1,7,1,787,1,1380,1,1201,6,1020,1,1236,1,1211,1,1159,1,219,4,1202,2,151,1,650,1,77,5,592,1,1034,1,830,1,918,2,240,1,633,1,737,1,542,1,1336,1,1267,1,100,5,649,1,1244,2,921,1,792,1,1055,1,300,1,1137,1,770,1,863,1,669,1,476,1,1304,1,94,1,618,1,201,1,584,3,129,1,977,2,1195,7,2.8134107167600364
tn.2479
59,1,7.24422751560335
681
190,1,698,1,1059,1,6.145615226935241
111
1020,1,7.24422751560335
theoreticalbuckl
829,1,7.24422751560335
nonexistence
820,1,7.24422751560335
235
33,1,7.24422751560335
reduction
1344,2,1177,1,991,5,1153,1,733,1,163,1,729,1,1169,1,123,1,705,1,767,1,114,2,566,3,33,1,401,1,688,1,638,2,600,1,1292,1,798,1,813,1,342,1,412,1,628,3,683,1,193,1,576,1,667,1,1291,3,1352,1,125,3,1346,1,1287,1,1282,2,1154,1,712,1,1207,1,1180,1,641,3,1259,1,252,1,44,1,1266,1,874,3,1226,1,1323,1,519,1,1218,1,1349,2,1300,3,948,2,1212,1,1239,1,3.2739356020512282
878
192,1,7.24422751560335
blend
522,1,7.24422751560335
ribskin
640,1,7.24422751560335
ballistictype
32,1,7.24422751560335
notion
577,1,7.24422751560335
properli
131,1,1226,1,1279,1,824,1,1390,1,1242,1,1178,1,97,1,185,2,5.047002938267131
dome
827,7,7.24422751560335
hypersonicslenderbodi
160,2,7.24422751560335
tn.3914
856,1,7.24422751560335
lundquist
928,1,740,1,1194,1,6.145615226935241
kellei
1219,1,7.24422751560335
coworker
271,1,7.24422751560335
propound
732,1,7.24422751560335
521
109,1,7.24422751560335
meyer
118,1,310,1,6.551080335043404
w.p
1272,1,765,1,485,1,892,1,1333,1,879,1,5.452468046375295
edgewise
1127,1,155,1,6.551080335043404
lattice
1079,3,427,19,901,1,6.145615226935241
gortlerh
458,1,7.24422751560335
tn.2601
1050,1,7.24422751560335
downstream
939,1,123,3,697,2,529,2,902,1,1302,1,1244,2,798,1,366,1,317,1,1195,2,933,1,9,1,1254,1,1292,1,219,1,490,1,693,2,943,1,457,1,1326,1,190,1,1239,1,784,3,129,1,96,1,572,1,84,3,976,2,85,1,358,1,420,1,213,2,1225,1,1364,1,218,3,381,1,574,1,277,4,1277,1,175,1,1066,1,25,2,1284,1,150,1,1105,1,26,1,569,1,1252,1,109,1,229,1,1184,1,692,2,789,3,558,1,979,1,1220,2,977,1,1300,4,310,1,1072,1,651,5,636,3,625,1,365,1,364,4,721,4,570,1,1240,1,754,2,2.995732273553991
electricallyh
912,1,7.24422751560335
formula
495,2,754,1,1310,1,1125,5,24,1,210,1,433,1,473,1,1020,1,687,3,1379,1,1255,1,305,1,348,4,217,1,525,1,568,2,224,1,897,1,1074,2,829,1,599,1,1265,1,1049,2,1373,1,248,2,476,1,564,1,980,1,821,1,1057,4,934,2,811,1,698,1,307,1,1343,5,145,1,555,2,962,3,538,1,919,1,929,1,1304,1,1362,1,359,3,1369,1,861,1,700,1,209,1,283,1,1200,1,554,4,600,1,1127,1,151,1,1175,3,1046,1,581,2,855,3,983,1,1033,1,1342,1,467,1,1136,1,412,1,848,1,714,1,831,2,885,1,1254,1,1309,1,1058,2,48,2,1031,1,927,1,14,1,512,1,681,1,928,1,2.8747796631363283
bore
244,1,7.24422751560335
unsatisfactori
1308,1,172,1,6.551080335043404
lowspe
101,1,70,1,719,1,675,1,266,1,578,1,240,1,600,1,712,2,710,2,206,1,632,1,1095,2,287,2,520,1,588,2,9,1,1393,2,177,1,453,2,1169,1,1268,1,576,1,198,1,455,1,961,1,976,2,311,1,3.912023005428146
2497
680,1,7.24422751560335
cx
325,1,7.24422751560335
suggest
1372,2,12,1,752,1,955,1,620,1,748,1,1027,1,792,1,296,1,229,1,1370,2,645,1,499,1,280,1,492,1,1323,1,754,1,640,1,969,1,1119,1,768,1,398,1,563,1,656,2,457,1,140,1,230,1,1391,2,110,1,934,1,1272,1,1082,1,17,1,456,1,253,1,874,1,572,1,344,1,575,1,328,1,595,2,681,1,928,1,1375,1,964,1,660,1,1239,2,201,1,426,1,562,1,99,1,1313,1,30,1,370,2,799,1,1333,1,1324,1,611,2,801,1,39,1,365,1,662,1,1356,1,1088,2,19,1,380,1,3.0545727735769246
1372
980,1,7.24422751560335
squire
514,1,502,4,1393,1,252,1,612,1,5.634789603169249
wallproperti
348,1,7.24422751560335
oguchih
1198,1,304,1,6.551080335043404
instantaneou
1242,1,1026,1,1275,2,1024,1,587,1,263,2,618,1,1023,1,5.1647859739235145
theori
367,2,573,1,894,1,1202,2,211,3,617,1,1303,1,1014,3,819,4,831,1,818,4,527,1,327,2,169,2,26,1,605,1,987,4,252,2,15,1,1355,1,556,5,458,1,207,3,826,9,1121,1,1266,1,176,1,703,3,873,2,1216,1,379,1,473,2,28,2,820,17,223,3,1319,1,14,9,922,1,1384,2,441,1,332,1,866,3,572,5,272,2,1081,1,147,1,433,3,677,5,681,3,1298,2,167,1,614,2,25,1,947,2,532,1,1388,1,720,2,99,7,205,1,674,1,753,3,428,1,460,2,1372,1,663,1,928,7,246,1,641,1,541,1,825,6,455,3,468,3,242,3,227,4,1020,1,370,1,1258,2,1052,1,338,2,49,5,557,5,624,2,282,1,253,1,293,1,131,1,103,2,644,1,1179,2,283,1,1013,2,1147,1,1158,1,918,1,1226,1,403,1,1196,1,1157,1,628,2,1060,1,1074,2,1051,1,229,2,540,2,1289,2,294,6,20,7,58,1,522,1,1259,5,1151,1,668,2,1394,1,861,3,956,1,347,2,1,1,807,1,224,2,1104,2,467,4,892,1,1229,3,562,2,821,2,917,2,1380,1,343,2,740,2,1186,2,888,1,1120,4,926,1,682,1,1331,1,719,1,1271,4,1175,1,219,1,442,1,1356,4,1270,1,1304,1,1045,1,1128,1,520,1,317,2,704,1,761,1,349,1,97,2,764,1,920,1,423,2,810,1,1191,2,212,3,344,1,124,5,259,2,1018,1,936,2,933,1,443,1,829,3,739,2,438,1,160,1,202,2,805,1,234,3,109,1,927,3,898,2,1075,8,1031,3,132,3,250,2,1329,3,964,4,962,3,766,1,1097,1,916,1,1342,1,548,1,1333,2,391,2,599,2,1215,1,213,1,1050,1,134,4,887,1,749,1,1124,1,1209,2,183,3,806,1,919,5,36,2,235,1,179,5,206,1,297,2,135,1,1154,2,634,3,404,1,411,1,1395,1,35,2,801,7,1071,1,1330,2,241,1,851,1,967,1,30,4,1072,1,923,1,496,3,567,3,1352,1,1302,1,758,1,852,1,675,1,1174,4,1112,3,226,3,319,1,999,2,1118,3,1150,1,199,4,593,9,848,1,487,3,568,1,1269,2,1130,2,781,1,808,1,418,1,960,2,1233,1,24,2,10,2,1139,1,665,3,1272,4,1360,1,52,2,1076,2,1309,3,233,4,854,1,204,1,1036,1,566,1,827,3,194,3,660,1,953,1,329,4,79,1,1005,1,417,2,1223,3,1265,1,453,1,814,4,225,4,723,1,107,1,291,1,1137,4,1126,1,451,3,1178,2,514,2,1339,1,122,2,384,3,1313,2,232,11,249,1,200,1,42,3,744,2,1068,2,230,1,1131,1,1257,1,273,1,108,1,822,1,271,1,154,1,1213,3,462,1,300,1,119,1,247,4,667,4,1062,1,931,1,444,2,714,1,811,1,390,5,1274,1,388,1,680,5,1199,2,1197,2,1248,1,1122,2,373,3,627,2,121,4,600,1,912,3,803,1,363,3,899,1,1127,1,191,3,1106,1,1048,4,469,3,569,2,1307,4,1066,5,342,3,743,4,1311,1,1321,5,360,1,1236,1,278,3,1140,1,530,1,1320,1,1328,1,149,1,168,1,110,3,504,2,1039,2,903,3,305,2,798,1,901,1,1028,5,129,1,251,1,547,1,330,2,432,1,170,1,497,1,706,3,1247,1,908,1,73,1,195,7,397,1,847,2,974,3,613,1,197,1,1067,2,1231,2,961,1,729,1,86,5,1015,3,1108,4,309,2,1285,1,37,1,1235,3,1021,1,1359,1,930,3,921,5,27,7,1391,1,51,2,1141,1,752,6,683,4,187,2,635,2,125,1,676,3,924,1,1264,1,357,1,435,1,521,3,951,5,571,1,231,1,1263,2,1383,2,688,4,1210,3,698,1,823,1,1119,10,760,4,765,1,503,1,689,4,1049,1,470,3,459,1,802,3,891,1,13,1,248,2,188,2,849,2,313,2,484,2,985,1,601,1,1000,2,289,2,1012,3,1218,1,1132,3,687,1,1023,1,445,4,434,1,146,2,334,2,788,2,1308,1,1044,2,932,1,137,1,192,1,1310,6,1228,1,840,2,867,1,295,2,1.1305453357711188
2000
1096,1,346,1,259,1,6.145615226935241
inop
1352,2,7.24422751560335
520
1299,1,7.24422751560335
1.20
1066,1,709,1,6.551080335043404
asymptote
1107,1,118,1,6.551080335043404
keenan
276,1,7.24422751560335
swihart
197,1,7.24422751560335
skill
1087,1,7.24422751560335
depend
433,1,458,1,294,1,1291,3,610,1,166,1,869,1,78,1,800,1,297,1,115,1,1220,1,785,1,987,1,1373,1,288,1,1035,1,364,1,822,1,1252,1,1392,1,36,1,459,1,64,1,299,3,1105,1,69,1,723,1,73,2,846,1,383,1,738,1,896,1,1166,1,830,2,420,1,177,1,593,1,536,1,1273,1,623,1,1189,1,266,1,40,1,1238,2,1087,1,25,1,1033,2,477,1,49,1,117,1,1356,1,758,1,146,2,1201,1,1187,1,552,1,710,1,24,1,1278,1,946,1,57,1,651,1,283,1,196,1,414,1,1346,1,131,2,1277,1,1198,1,798,2,475,1,1177,1,1363,1,2.9401624223991805
thermomechan
580,3,1056,1,6.551080335043404
p.b
243,1,439,1,411,1,6.145615226935241
inadvert
1168,1,7.24422751560335
fluttermode
627,1,7.24422751560335
empir
344,1,421,1,556,1,362,1,940,1,109,1,38,3,1291,1,433,1,441,2,1125,1,961,1,1285,1,1075,1,1308,1,562,1,1,1,345,1,419,1,58,1,380,1,563,1,110,1,121,1,187,1,1241,1,3.986130977581868
scala
437,1,1299,1,1279,1,355,1,5.857933154483459
human
716,1,1217,1,164,1,83,1,1219,1,5.634789603169249
downward
683,1,1094,3,651,1,1095,2,5.857933154483459
mag
777,1,778,1,771,1,6.145615226935241
inaccessible
1047,1,7.24422751560335
unbuckl
15,1,1053,2,6.551080335043404
1476
1206,1,7.24422751560335
freeflight
1007,2,1010,2,141,2,1065,2,1004,2,1008,2,1006,2,516,2,1000,2,1003,2,1009,2,1011,2,1106,2,812,1,1005,2,431,3,4.471638793363569
deflect
1094,1,1127,1,162,1,520,1,709,1,531,1,1232,1,642,1,894,1,641,1,277,1,673,1,136,2,1095,2,432,1,631,1,1064,1,1091,1,4.353855757707185
bladesurface
945,1,7.24422751560335
zbrozek
902,1,7.24422751560335
hypergeometric
499,1,157,1,108,4,6.145615226935241
threewave
1035,2,7.24422751560335
erfc
476,6,7.24422751560335
rotation
1053,1,828,2,1044,1,1043,1,1137,1,935,2,5.452468046375295
hammitt
25,1,334,1,6.551080335043404
libbi
134,1,1374,1,365,1,1180,1,17,1,2,1,37,1,295,1,123,1,366,1,4.941642422609304
turbance
822,1,7.24422751560335
646
102,1,7.24422751560335
pressureinteraction
525,2,7.24422751560335
gridwork
644,1,7.24422751560335
seek
453,1,1389,1,1047,1,6.145615226935241
centerbut
671,1,7.24422751560335
500degree
302,1,7.24422751560335
parameter
317,1,200,1,1129,1,1024,1,322,1,601,1,753,1,518,1,89,1,914,2,1238,2,921,1,1395,1,528,3,63,2,1284,1,747,1,385,1,80,1,88,2,618,2,395,1,1350,1,255,1,896,1,82,1,695,3,1304,1,951,1,123,2,625,2,1099,1,1250,1,1056,2,279,1,72,1,1003,3,443,1,1291,2,540,2,1278,2,537,1,1137,1,1173,1,397,3,268,1,571,2,574,1,415,1,856,2,719,3,710,3,827,1,1239,1,859,1,853,1,661,1,66,4,128,2,889,1,272,2,565,1,109,1,766,1,582,1,1193,1,20,1,1340,1,1351,1,1009,4,830,5,150,1,1117,1,24,2,741,1,839,1,857,2,1138,1,1077,1,663,1,1051,2,413,2,1103,1,27,1,983,1,377,1,1364,1,79,1,442,5,364,1,369,1,843,1,421,1,29,1,494,2,257,1,1261,3,199,3,378,1,423,2,459,1,662,6,1335,1,94,2,674,1,1064,1,748,4,488,4,350,1,1226,1,280,1,815,1,650,1,1202,2,42,1,59,2,57,2,986,1,1189,1,880,1,1055,1,926,1,1373,1,334,2,1186,2,863,1,84,2,351,1,62,1,917,1,196,2,163,2,1222,1,118,1,299,1,433,1,427,1,597,1,707,1,577,2,686,1,1192,1,486,4,391,1,184,1,590,1,232,3,939,1,78,1,1366,2,508,3,452,1,2.2203469947570738
timeaverage
441,1,7.24422751560335
squareroot
1202,1,7.24422751560335
'thermal buckling of clamped cylindrical shells'
890,2,7.24422751560335
tangent
821,1,232,2,1206,1,234,1,70,1,1120,2,540,1,1137,2,44,1,309,1,373,1,1294,1,4.75932086581535
compute
382,1,543,1,1088,1,1041,1,493,1,433,1,489,1,410,1,5.1647859739235145
4000
976,1,187,1,1003,1,1028,1,5.857933154483459
postshock
401,1,7.24422751560335
twentyfive
1176,1,7.24422751560335
regirer
408,1,7.24422751560335
meansquare
720,1,151,1,6.551080335043404
embrac
416,1,782,1,6.551080335043404
nickelbase
865,4,7.24422751560335
roughli
1250,1,1184,1,210,1,1042,1,155,1,1040,3,1244,1,191,1,5.1647859739235145
vertex
1186,1,7.24422751560335
constrain
1217,1,1247,1,206,1,6.145615226935241
waveresistance
506,2,7.24422751560335
geometric
782,1,1305,1,561,2,824,1,907,1,1190,1,1292,1,1184,1,992,1,941,1,1172,1,433,1,709,1,4.6792781581418135
0.805
986,1,7.24422751560335
restor
515,1,7.24422751560335
underestimate
522,1,283,1,805,1,6.145615226935241
bridg
784,1,7.24422751560335
integrable
1194,1,7.24422751560335
waist
256,1,7.24422751560335
configur
1209,1,1293,1,1281,1,1170,2,92,1,947,2,944,1,314,2,520,1,1090,1,813,1,1144,1,728,1,1307,1,711,5,605,3,971,2,708,1,797,1,1183,1,925,1,720,2,688,1,136,3,942,1,187,1,1328,1,1218,4,1089,5,1349,3,545,4,923,1,1380,4,587,1,522,1,368,1,1239,3,1064,3,1294,1,53,1,1093,4,1220,1,599,1,781,1,291,1,547,2,1111,1,1097,1,1095,3,753,1,783,1,685,2,1184,3,812,1,1292,2,713,4,926,1,60,2,744,3,1000,2,914,1,433,1,1162,1,511,1,1347,1,1,1,1224,2,811,1,803,1,1066,2,1305,1,1351,3,1243,4,1202,1,456,4,186,1,272,1,1197,3,204,1,400,1,782,1,2.849778360930911
merit
416,1,463,1,605,1,1063,1,609,1,273,1,1306,1,746,1,751,1,121,1,4.941642422609304
falknerskan
292,1,662,1,1235,1,565,1,5.857933154483459
widen
85,1,7.24422751560335
spirit
1224,1,7.24422751560335
0.800/
986,1,7.24422751560335
inevitable
36,1,244,1,6.551080335043404
ffa
1154,1,1075,1,1155,1,1062,1,5.857933154483459
nuttall
405,1,7.24422751560335
detach
1319,1,211,1,93,1,411,3,1157,2,439,1,1258,1,1390,3,1377,1,1389,3,572,1,1151,1,1274,1,1300,2,523,3,161,1,482,3,4.411014171547134
3.8x10
1107,1,7.24422751560335
1077
700,1,7.24422751560335
type1are
613,1,7.24422751560335
tn
985,1,605,1,994,1,702,1,699,1,1000,1,998,1,449,1,77,1,779,1,615,1,622,1,768,1,783,1,467,1,614,1,680,1,701,1,949,1,972,1,988,1,965,1,1001,1,551,1,655,1,1334,1,990,1,606,1,959,2,967,1,613,1,987,1,1076,1,609,1,1340,1,712,1,971,1,643,1,633,1,986,1,464,1,989,1,1310,1,970,1,1101,1,611,1,632,1,696,1,782,1,691,1,895,1,3.312401882879024
r5314
417,1,7.24422751560335
stalker
291,1,7.24422751560335
attack
1108,1,1381,1,572,2,988,1,815,4,1343,1,1217,1,1349,1,234,2,1184,1,1259,1,1,1,972,1,1115,8,1218,3,708,2,70,1,638,2,122,4,999,3,1064,1,1350,3,1193,1,541,1,698,2,197,3,248,3,901,1,1204,1,498,1,790,1,1147,1,440,1,1309,1,709,5,420,1,363,1,688,4,712,4,1104,2,434,1,58,4,27,1,1188,1,1347,9,1304,1,354,5,1355,1,225,3,717,8,189,5,993,4,232,1,924,1,1000,3,441,1,56,3,1179,2,443,3,1351,2,69,4,1229,1,12,1,704,1,492,5,373,3,1262,1,673,2,530,1,785,1,1186,1,695,1,469,2,1114,2,1231,3,231,1,1307,6,1277,4,1077,4,1201,1,1292,1,1005,1,32,4,947,5,48,4,312,1,1192,1,433,1,636,1,567,3,927,2,124,1,711,2,484,1,694,1,193,1,439,1,746,1,713,2,946,2,1352,1,57,2,360,1,1006,1,801,1,973,1,520,1,2.571398681141444
lowest
199,2,182,1,267,1,846,4,1211,1,189,1,1097,1,914,1,1191,1,5.047002938267131
px
521,1,7.24422751560335
interestit
371,1,7.24422751560335
82
367,1,913,1,6.551080335043404
highfrequ
764,1,1260,1,6.551080335043404
come
1316,1,1072,1,6.551080335043404
r129
176,1,7.24422751560335
referenceenthalpi
538,1,294,1,6.551080335043404
catheralld
547,1,7.24422751560335
world
130,1,7.24422751560335
fourwave
1035,1,7.24422751560335
2983
1082,1,7.24422751560335
taylor
1041,3,488,1,321,1,25,1,1327,1,118,1,1303,1,669,1,865,1,331,2,132,2,1116,1,99,2,100,1,884,1,536,1,232,1,263,1,262,1,1133,1,791,1,330,2,4.153185062245034
induce
815,1,1371,1,655,1,1106,1,832,1,5.634789603169249
loitsianskii
1250,1,7.24422751560335
leess
20,2,7.24422751560335
apparent
1268,1,1177,1,806,1,1104,1,599,2,1028,1,1112,2,1097,1,16,1,168,1,19,1,216,1,820,2,1134,1,856,1,99,1,348,1,129,2,645,1,4.2997885364369095
r.415
852,1,7.24422751560335
panelskin
859,1,7.24422751560335
spring
32,2,957,1,528,1,894,1,1057,8,1058,3,1059,4,5.298317366548036
ion
447,4,449,1,1255,1,1297,1,968,1,446,1,552,1,5.298317366548036
81944
931,1,7.24422751560335
worsen
792,1,7.24422751560335
manner
335,1,510,1,77,1,826,1,992,1,831,1,626,1,581,1,1023,1,801,1,73,1,846,1,828,2,124,1,207,1,825,1,106,1,987,1,935,1,122,1,368,1,1262,1,927,1,500,1,316,1,469,1,584,1,810,2,1304,1,174,1,1037,1,937,1,613,1,844,1,851,1,1390,1,463,1,1373,1,1040,1,858,1,32,1,897,1,614,1,585,1,1227,1,1057,1,548,1,560,1,667,1,1264,1,962,1,1268,1,365,1,1047,2,717,1,1340,1,353,1,799,1,3.1837845050569307
lardner
542,1,7.24422751560335
kinetic
849,1,876,1,1391,1,77,1,552,2,1199,1,1297,1,401,2,151,1,1242,2,328,1,108,1,943,1,1296,1,1032,1,103,2,1226,1,746,1,824,1,1072,1,625,1,357,1,102,1,177,1,1147,1,4.02535169073515
demonstr
159,1,599,1,16,1,244,2,1209,1,835,1,641,1,1252,1,1313,1,43,1,35,1,401,1,1004,1,1250,1,1169,1,132,1,413,1,484,1,680,1,1368,1,1277,1,213,1,1310,1,300,1,373,1,1366,1,216,1,792,1,744,1,762,1,3.8430301339411947
745
1140,1,499,1,6.551080335043404
bracket
616,1,7.24422751560335
inc
1173,1,915,1,17,1,333,1,762,1,1378,1,587,1,1158,1,5.1647859739235145
height
1166,3,621,1,96,3,651,1,8,1,827,1,1164,1,974,1,308,2,314,8,996,1,1144,1,799,2,548,8,710,5,933,1,1324,2,828,1,617,1,1278,2,912,2,86,2,1391,1,43,1,1169,1,616,4,192,1,622,9,1040,3,7,2,3.8430301339411947
ser
1088,1,361,1,1364,1,6.145615226935241
derivable
94,1,7.24422751560335
1.15
200,1,7.24422751560335
amplifier
1244,1,7.24422751560335
ludweig
135,1,7.24422751560335
v.d
990,1,7.24422751560335
nationale
344,1,7.24422751560335
yaw
563,1,566,5,755,3,368,1,1192,2,423,3,78,2,1213,10,539,3,499,1,790,5,42,1,205,1,1144,2,792,1,1231,2,564,9,922,1,907,4,333,5,229,4,1159,2,435,3,565,6,336,2,239,2,1307,1,605,1,1110,5,1309,6,1306,2,1310,1,210,7,1005,1,3.7178669909871886
precis
164,1,7.24422751560335
locallinear
521,1,7.24422751560335
pertain
997,1,576,1,456,1,75,1,645,1,260,1,1332,1,1281,1,1334,1,5.047002938267131
breakdown
1310,1,1220,2,108,1,7,2,140,1,5.634789603169249
letter
371,1,7.24422751560335
tanner
220,1,7.24422751560335
veri
608,1,100,1,796,1,417,1,150,1,916,1,947,1,656,2,994,2,111,1,889,1,1082,1,446,1,292,1,962,1,744,1,1019,1,946,1,593,1,1372,1,822,1,562,1,329,1,1223,1,168,2,1313,1,197,1,212,2,846,1,1071,1,677,1,1169,2,1382,2,781,1,86,1,245,1,1135,1,936,1,1381,1,1242,1,1033,1,827,1,1215,1,423,1,25,2,518,1,239,1,73,2,1144,1,1384,1,1062,1,1207,1,739,1,1053,1,828,1,515,1,665,1,210,1,1095,1,1046,1,992,1,1307,1,980,1,24,2,586,1,307,1,1234,1,1157,1,216,1,315,2,124,1,370,1,372,1,1218,1,1328,1,296,1,919,1,1387,1,563,1,301,1,177,2,262,3,532,1,334,1,740,1,101,3,1261,1,419,1,575,2,402,2,536,1,1196,1,522,1,472,1,569,1,974,1,929,1,1047,1,206,1,1124,2,359,1,247,2,1113,1,620,1,870,1,1043,1,850,1,1391,1,996,1,1304,1,843,1,844,2,1239,1,1224,1,653,1,486,1,494,4,464,3,666,1,442,1,323,1,718,1,83,2,132,1,1131,1,2.4159137783010487
math
331,1,732,1,1088,1,922,1,659,1,1138,1,1137,1,452,1,475,1,730,1,684,1,737,1,458,1,773,2,785,1,1152,2,1079,1,744,1,1370,1,118,1,784,1,789,1,577,2,399,1,665,1,477,1,786,1,1110,1,842,1,417,1,1054,1,1060,1,731,1,1087,1,1036,1,828,1,963,1,734,1,476,1,817,1,3.5553480614894135
1460
1349,1,7.24422751560335
schuh
325,2,7.24422751560335
reveal
667,1,883,1,1118,1,300,1,325,1,1071,1,661,1,30,1,1235,1,1322,1,1134,1,520,1,208,1,4.6792781581418135
child
282,1,7.24422751560335
elaborate
1126,1,395,1,127,1,6.145615226935241
transmission
1244,1,707,1,91,1,276,1,1297,1,100,1,5.452468046375295
furthermore
1013,1,576,1,717,1,1169,1,467,1,574,1,588,1,1282,1,1165,1,1134,1,37,1,406,1,739,2,1123,1,610,1,608,1,4.471638793363569
tn.2533
441,1,7.24422751560335
jai
528,1,7.24422751560335
proce
178,1,85,1,1047,1,24,1,1105,1,159,2,36,1,821,1,417,2,5.047002938267131
expenditure
624,2,510,2,6.551080335043404
g.
154,1,7.24422751560335
moore
319,1,327,1,512,1,64,1,1303,1,899,1,1108,1,5.298317366548036
2562
701,1,7.24422751560335
reenter
274,1,983,1,553,1,82,3,1274,1,1319,1,5.452468046375295
societi
244,1,7.24422751560335
invalidate
1206,1,7.24422751560335
lotz
196,1,7.24422751560335
m.t
919,1,916,1,6.551080335043404
prefer
1244,1,416,2,6.551080335043404
inviscidviscou
26,1,7.24422751560335
correct
201,1,107,1,698,1,140,2,714,1,1248,1,81,1,814,1,419,1,760,1,381,1,474,1,663,1,467,1,535,1,470,1,1074,1,667,1,469,1,363,1,198,1,304,1,1250,1,962,1,787,1,874,1,1382,1,185,1,283,1,522,1,3.8430301339411947
computingmachine
493,2,7.24422751560335
fail
1022,1,459,1,1134,2,881,1,1176,1,874,1,928,1,1385,1,292,1,1128,1,860,1,1026,1,1137,2,999,1,1017,2,760,1,4.471638793363569
fllayer
620,3,7.24422751560335
penetrate
1232,1,563,1,6.551080335043404
aid
1376,1,926,1,193,2,937,1,33,1,1286,1,878,1,498,1,1005,1,128,1,1337,1,808,1,1018,1,906,1,722,1,1057,1,66,1,351,1,1025,1,27,1,1087,1,97,1,4.153185062245034
fact
1017,1,122,1,1052,1,138,2,34,1,950,1,626,1,78,1,278,1,816,1,819,1,917,1,1336,1,504,1,739,1,73,1,149,1,587,1,315,1,360,1,80,1,827,1,227,1,581,1,172,1,13,1,1303,2,46,1,1265,1,472,1,101,1,3.810240311118204
replace
201,1,579,1,6.551080335043404
14.4
696,1,970,1,6.551080335043404
l52119a
992,1,7.24422751560335
mere
826,1,874,1,1165,1,6.145615226935241
invert
1204,1,612,3,157,1,756,1,5.857933154483459
39
197,2,1201,1,6.551080335043404
predomin
1147,1,7.24422751560335
236
744,1,7.24422751560335
445
753,1,7.24422751560335
subroutine
92,1,7.24422751560335
orthotropic
743,2,1067,3,1048,1,1126,1,1116,1,1117,3,1050,1,1070,4,1129,2,1118,5,1359,1,1008,1,4.75932086581535
lansingw
1294,1,7.24422751560335
570
1393,1,139,1,6.551080335043404
synthesi
937,1,7.24422751560335
twothird
1209,1,171,1,6.551080335043404
prospect
33,2,7.24422751560335
constantpressure
321,1,409,1,121,1,1143,1,5.857933154483459
wingnacellepropeller
1092,2,7.24422751560335
climb
374,3,806,1,871,3,253,1,1163,1,810,2,5.452468046375295
sakao
450,1,7.24422751560335
treatise
1160,1,1047,1,1174,1,156,1,5.857933154483459
onto
787,1,7.24422751560335
flowsthat
318,1,7.24422751560335
slew
792,1,7.24422751560335
280
621,3,1292,1,6.551080335043404
rabotnov
950,1,7.24422751560335
334
1273,1,942,1,6.551080335043404
traversal
448,1,7.24422751560335
inaccurate
344,1,1182,1,6.551080335043404
jeffreyhamel
351,2,7.24422751560335
obtainec
165,1,7.24422751560335
unfavorable
790,1,1223,1,6.551080335043404
stack
543,3,7.24422751560335
exotic
1380,1,7.24422751560335
bend
735,3,781,1,1117,1,928,5,1178,3,641,1,1120,3,1046,2,14,1,902,1,1138,1,720,1,733,5,454,2,736,3,1047,2,1130,2,894,1,763,4,1066,2,392,1,734,2,827,2,1055,2,841,6,936,5,762,5,1020,1,592,1,929,1,1398,5,1126,1,1022,1,15,1,1054,3,955,3,1340,1,953,2,1289,1,1177,2,856,1,422,3,1363,4,1175,3,831,1,647,3,839,6,1360,3,1045,2,1059,3,380,1,826,3,284,4,1176,3,838,4,261,1,821,1,644,1,730,3,1068,2,1012,2,29,1,89,1,1024,4,1115,3,896,2,1400,1,3.039534896212384
7.66
992,1,7.24422751560335
termin
1151,1,496,1,439,1,903,1,522,1,5.634789603169249
tn.2558
442,1,7.24422751560335
noninjection
773,1,7.24422751560335
317000
1351,1,7.24422751560335
dudx
459,1,7.24422751560335
rotationallysymmetr
292,1,7.24422751560335
0.5
748,2,1344,1,478,1,63,1,274,1,57,2,857,1,972,1,247,1,98,1,702,5,4.846332242804979
2141952119
151,1,7.24422751560335
q.app.math
105,1,7.24422751560335
64
368,1,811,1,808,1,6.145615226935241
pyrex
272,1,7.24422751560335
newtoniantheori
122,1,7.24422751560335
grand
1380,1,7.24422751560335
laplace
128,1,918,1,1208,1,452,1,5.857933154483459
description
795,1,1160,1,1228,1,425,1,704,1,1072,1,128,1,500,1,438,1,207,1,243,1,1020,1,868,1,1310,2,1360,1,220,1,1150,1,171,1,1055,1,539,1,867,1,649,1,316,1,1255,1,1047,1,895,1,448,1,321,1,760,1,830,1,429,2,1309,1,462,1,3.7477199541368695
told
262,1,7.24422751560335
propos
801,1,940,1,1246,4,871,1,1059,1,363,1,337,1,89,1,216,1,1088,1,439,1,609,1,1084,1,336,2,499,2,827,1,173,1,958,1,563,1,1224,1,538,1,165,2,1028,1,1195,1,469,1,1263,1,902,2,444,1,120,1,1365,1,376,1,468,1,1305,2,1242,1,14,1,810,1,93,1,520,1,811,1,3.5806658694737035
368
510,1,7.24422751560335
spauld
905,1,7.24422751560335
fourthdegree
1222,1,54,1,6.551080335043404
gundersen
490,1,1203,1,6.551080335043404
force
593,1,1238,2,244,1,835,2,210,9,380,2,146,1,70,1,688,1,1288,2,384,1,921,1,637,1,1304,3,934,1,996,2,975,1,947,6,1218,1,683,1,658,2,601,1,985,1,360,2,916,1,422,1,801,1,894,3,1337,1,104,1,1289,7,47,2,1204,1,1310,2,1209,2,1349,1,599,5,290,2,44,1,296,2,1175,3,917,1,259,1,164,3,851,1,289,1,211,1,788,4,116,1,268,2,531,1,1094,2,1138,1,856,1,427,1,673,2,567,1,1041,1,252,2,452,2,693,1,697,1,781,2,1115,3,1032,3,520,1,1398,7,434,4,694,1,52,2,13,1,984,2,1399,1,391,1,60,3,794,1,709,1,514,1,1294,3,448,1,776,3,1328,4,1145,1,1135,1,999,2,919,2,1068,1,1326,2,262,1,759,1,1150,4,152,1,902,2,753,2,973,3,972,1,719,1,966,4,413,1,804,2,1333,6,515,2,1276,2,1092,4,704,4,1091,1,100,5,1197,4,812,1,14,1,225,3,395,1,222,2,952,3,901,1,204,1,1035,1,854,1,927,8,967,4,499,1,816,2,357,2,1112,3,33,1,814,2,1001,2,87,1,1005,1,1255,5,1090,3,390,1,229,1,942,3,1320,1,797,1,88,1,1362,3,203,2,202,3,974,5,786,5,756,1,596,2,1350,1,1361,1,484,1,1259,1,677,3,696,1,969,1,1208,2,1292,1,1047,1,2.207274913189721
possio
703,1,705,1,6.551080335043404
tendenc
138,1,709,1,805,1,1264,1,109,1,5.634789603169249
messiter
1186,1,7.24422751560335
1437
238,1,7.24422751560335
staticthrust
1094,2,1064,1,6.551080335043404
consistent
756,1,129,1,645,1,1289,1,1248,1,168,1,1320,1,160,2,608,1,1103,1,275,1,810,1,62,1,304,2,667,1,663,1,622,1,1309,1,4.353855757707185
openarea
252,1,7.24422751560335
cloud
403,1,1369,1,6.551080335043404
circumlunar
718,1,7.24422751560335
concur
1092,1,412,1,6.551080335043404
d855
967,1,7.24422751560335
potentiometer
529,1,7.24422751560335
r1109
189,1,7.24422751560335
cresci
123,1,294,1,84,1,6.145615226935241
langlei
638,1,80,1,859,1,197,1,1095,1,948,1,1290,3,689,3,312,1,1349,1,1351,2,567,1,1336,1,1146,1,174,1,1354,3,1094,1,711,1,1004,1,809,1,708,1,808,1,1341,1,1353,3,198,1,1338,1,1380,1,3.948390649599021
ensu
7,1,7.24422751560335
utilise
140,1,7.24422751560335
yangkt
1109,1,7.24422751560335
donnell
1175,1,822,1,841,1,1116,1,1123,4,1171,1,850,3,887,1,740,1,760,1,853,3,854,1,1070,1,739,1,889,3,842,4,763,1,928,1,843,2,1119,1,936,1,4.199705077879927
stationari
72,3,386,1,662,1,321,1,150,1,1058,1,407,3,1203,1,595,1,367,1,511,1,170,1,408,1,580,1,491,1,228,1,721,1,1389,1,472,1,64,3,1244,1,214,1,217,1,926,1,71,3,151,1,3.986130977581868
771
561,1,7.24422751560335
curlingup
284,1,7.24422751560335
fulli
294,2,88,2,933,1,886,1,208,1,315,1,219,1,709,2,961,1,966,3,270,2,30,1,302,1,1040,1,1181,1,125,1,550,1,329,2,522,1,511,1,1221,1,288,1,967,1,560,2,9,1,576,1,500,2,630,1,1297,1,3.876931685616876
herrnstein
1092,1,7.24422751560335
seal
896,1,199,1,624,2,6.145615226935241
reaffirm
441,1,7.24422751560335
400401
22,1,7.24422751560335
shocksepar
358,2,7.24422751560335
conecylinderfrustum
384,1,7.24422751560335
r.aero.2429
678,1,7.24422751560335
beam
910,3,644,3,1177,4,1029,1,462,2,29,3,42,3,1024,3,826,1,913,5,835,1,790,1,75,1,1126,1,1257,1,1316,5,762,1,4.411014171547134
bluntleadingedge
1198,2,7.24422751560335
cleveland
87,1,21,1,135,1,6.145615226935241
masi
405,1,7.24422751560335
incompressible
87,1,133,1,527,1,107,1,1214,1,538,2,699,2,962,1,105,3,1141,1,653,1,754,1,404,2,1078,1,287,1,563,1,148,1,427,1,990,1,664,1,2,3,553,1,940,1,389,1,1112,1,659,1,299,1,44,2,784,3,1180,1,255,2,380,3,199,1,1182,1,442,1,1301,1,779,3,1251,1,323,3,1149,2,941,3,397,2,535,1,261,2,1242,1,945,1,278,1,298,2,309,1,705,1,110,1,81,2,775,1,1341,1,135,1,1371,2,128,1,17,2,1302,2,377,2,989,2,1256,1,292,1,1221,1,277,1,637,1,111,1,966,1,652,1,331,1,562,2,1212,3,243,1,458,1,382,2,1338,1,241,1,308,1,1281,1,1374,1,988,1,23,3,180,1,257,1,242,1,94,1,325,1,300,1,1394,2,507,1,1322,1,16,2,610,1,701,4,3,1,927,2,304,1,9,1,376,4,764,1,475,1,662,1,748,2,1333,1,324,2,106,1,1241,2,787,1,153,3,375,2,152,2,165,3,191,1,632,2,477,1,351,1,117,1,73,3,461,1,1370,1,460,4,4,3,228,1,208,1,933,2,494,1,1393,1,387,1,2.392197251683733
apropriate
1140,1,7.24422751560335
b.sc
169,1,7.24422751560335
protuberance
1324,1,7.24422751560335
templetonh
875,1,7.24422751560335
galcit
455,1,9,1,1231,1,25,1,569,1,372,2,5.452468046375295
powerlaw
495,1,665,1,625,1,300,1,160,2,5.634789603169249
think
138,1,7.24422751560335
velocityenthalpi
1250,1,7.24422751560335
bank
433,1,289,3,225,1,6.145615226935241
card
1178,1,7.24422751560335
life
640,4,100,1,724,1,727,2,881,1,75,1,768,4,882,1,865,1,658,1,723,1,909,1,615,1,4.6792781581418135
stepdown
1040,3,7.24422751560335
aural
844,1,7.24422751560335
861
1233,1,7.24422751560335
igc
83,1,7.24422751560335
questionable
448,1,7.24422751560335
karmanpohlhausen
1386,1,292,1,318,1,789,1,308,1,352,1,72,1,309,1,4,1,54,2,4.941642422609304
procedure
1192,1,14,1,977,1,453,1,149,1,150,1,1071,1,1135,1,1086,1,1018,1,1183,1,1224,3,629,1,433,1,472,1,574,1,986,1,194,1,128,2,832,1,704,4,1056,2,246,1,836,2,873,1,36,1,297,1,85,1,1124,1,870,1,523,1,395,2,454,2,891,1,676,1,321,1,221,4,580,1,945,1,869,1,1261,1,556,1,830,1,1370,1,363,1,318,1,586,1,559,1,231,1,734,1,849,1,579,2,1242,2,1100,2,1375,1,292,3,378,2,1005,1,198,3,833,1,1039,2,696,1,738,1,772,1,248,1,30,1,1294,1,878,1,52,2,1225,3,1246,1,837,2,1362,1,357,1,280,1,839,2,762,2,1293,1,539,1,932,1,329,1,691,4,1053,1,1051,2,1289,1,1361,1,127,1,1054,1,2.7668907011251433
jefferyhamel
351,1,7.24422751560335
multilayer
935,3,1043,1,181,1,6,2,5.857933154483459
flash
1318,1,7.24422751560335
redirect
1094,3,7.24422751560335
ed
132,1,136,1,6.551080335043404
shockdisplacement
946,1,7.24422751560335
geometr
1277,1,1310,2,1361,1,147,1,917,1,1305,2,823,1,1229,1,92,1,1067,3,427,1,140,1,1244,2,907,1,890,1,4.53617731450114
co
1061,2,749,1,488,1,627,1,259,1,5.634789603169249
heumanc
684,1,7.24422751560335
centreline
604,1,7.24422751560335
nonheatconduct
166,1,7.24422751560335
sharpnos
541,2,797,1,505,1,1393,1,5.857933154483459
paper
1117,1,1169,1,890,1,649,2,555,1,1379,2,470,1,15,1,586,2,527,1,1330,1,1183,1,733,1,928,3,176,1,792,2,779,1,983,2,572,2,728,1,276,1,328,1,684,1,439,1,1088,3,781,1,697,1,594,1,360,1,1015,1,1303,2,896,1,1125,2,262,2,756,1,1122,1,1284,1,131,3,1056,3,1111,1,1295,1,170,1,630,2,839,2,644,1,489,1,730,2,650,1,329,1,401,1,128,1,1133,1,1089,1,1245,1,422,1,419,1,245,1,549,1,933,2,579,1,467,1,96,1,1198,1,1375,1,119,1,417,1,1334,1,1234,1,159,1,209,1,1097,1,874,1,829,1,1184,1,852,1,101,1,367,1,406,1,364,1,83,1,660,1,740,1,811,2,454,1,828,2,427,1,488,1,228,1,462,1,925,2,112,1,1047,4,105,1,897,1,515,1,97,1,1225,1,1246,1,1380,1,368,1,1126,1,45,1,1041,1,735,1,1026,1,575,1,1058,1,577,1,142,1,1279,1,1119,1,798,4,1063,2,736,1,290,1,782,1,207,1,1265,1,99,1,1051,1,743,1,1287,1,35,1,100,1,556,1,822,2,523,2,221,1,149,1,902,1,1200,1,398,1,1084,1,1321,2,273,1,1329,2,2,1,784,1,1136,1,827,1,144,1,388,2,607,1,190,1,1181,1,46,2,1314,1,825,1,1268,1,889,1,186,1,1396,1,1313,1,1197,1,1044,1,1383,2,1227,1,875,2,181,1,557,1,1327,1,1273,1,720,1,385,1,1021,1,550,1,817,1,844,1,891,1,1134,2,707,1,78,1,1154,1,754,1,1110,1,115,1,538,1,1078,1,270,2,1399,1,1182,1,425,1,1057,2,739,3,1301,1,416,1,906,1,42,2,1235,1,281,1,732,1,89,1,706,1,1079,1,541,1,195,1,895,3,223,1,935,1,461,1,1083,1,94,1,206,2,197,1,725,1,304,1,1.916351346813769
fn
478,1,7.24422751560335
perhap
185,1,1277,1,561,1,908,1,946,1,1313,1,36,1,5.298317366548036
m.g
574,1,191,1,6.551080335043404
best
950,1,121,1,731,1,1066,1,1380,1,548,1,1333,1,493,1,991,1,1175,1,986,1,427,1,1121,1,206,1,4.605170185988092
advent
293,1,7.24422751560335
leave
1013,1,416,1,1104,1,6.145615226935241
pressurecorrection
467,1,7.24422751560335
distance
1040,1,1257,1,1035,1,148,2,789,3,631,1,548,3,8,1,1175,2,128,1,228,3,1319,3,1107,1,1327,1,25,3,1157,1,660,1,1383,2,1284,2,484,1,288,1,37,1,1390,1,569,1,803,1,1248,1,800,2,1140,3,151,1,1179,1,300,1,1165,2,1092,1,323,1,1183,1,459,2,219,2,617,2,1239,1,1204,1,784,3,340,1,175,1,1190,1,656,1,615,1,667,1,1278,1,977,3,489,1,1072,1,715,3,35,2,483,4,182,1,966,1,614,1,123,1,329,1,1216,2,1394,1,754,2,1229,1,692,1,1151,1,940,1,613,1,943,2,788,1,1198,2,364,1,967,1,369,2,1145,1,328,2,304,1,272,1,501,1,1258,1,155,2,776,1,1156,1,1274,3,152,1,552,1,267,1,673,1,218,7,381,2,616,1,499,1,162,4,178,1,523,1,116,2,72,2,1211,1,1238,1,802,3,160,1,560,1,696,1,721,5,289,4,1268,2,104,1,652,1,1044,1,785,1,308,1,533,2,1264,1,1065,1,263,1,109,2,2.4992953872401
pegg
1168,1,7.24422751560335
proceed
115,1,7.24422751560335
wah
951,1,7.24422751560335
4x10
564,1,7.24422751560335
stabilize
1069,1,7.24422751560335
keith
198,1,7.24422751560335
bevel
686,1,7.24422751560335
bethpage
1182,1,7.24422751560335
1.03
434,1,709,1,6.551080335043404
u2u1
476,1,7.24422751560335
overlook
344,1,7.24422751560335
deg
867,3,794,2,793,2,245,1,199,2,797,1,212,1,5.298317366548036
investigate
627,1,432,1,1387,1,7,1,1305,2,261,1,689,1,1211,1,552,1,233,1,1039,1,129,1,1243,1,1290,1,893,1,1319,1,1274,1,1313,1,529,1,1253,1,104,1,42,1,182,1,1326,1,464,1,4.02535169073515
handl
924,1,1089,1,707,1,92,2,792,2,159,1,704,1,1280,1,5.1647859739235145
unretard
659,1,7.24422751560335
rapidh
1027,1,7.24422751560335
mar
163,2,717,1,164,1,6.145615226935241
observable
85,2,976,1,1252,1,317,1,5.857933154483459
cuss
478,1,7.24422751560335
weberj
465,1,679,1,247,1,6.145615226935241
1950
411,1,360,1,822,1,243,1,923,1,818,1,773,2,56,1,714,1,748,1,1353,1,179,1,802,1,1354,1,734,1,402,1,57,1,1323,1,399,1,277,1,42,1,287,1,216,1,1087,1,920,1,262,1,910,1,975,1,118,2,1324,1,677,1,584,1,732,1,1137,1,3.7178669909871886
proportionate
874,1,7.24422751560335
appar
448,1,1056,2,441,1,252,1,1322,1,1244,2,928,1,216,1,859,1,627,1,338,1,189,1,1055,1,1268,1,499,1,4.53617731450114
examine
172,1,1321,1,1380,1,152,1,78,1,44,1,436,1,5.298317366548036
p.j
708,1,448,1,60,1,6.145615226935241
dorodnitsyn
352,1,7.24422751560335
uniformli
1399,1,1175,3,733,1,1178,1,1398,1,647,3,934,1,1212,3,386,2,460,1,802,1,894,1,648,1,500,1,128,1,641,3,913,1,777,3,730,2,392,1,735,4,734,3,1059,1,660,1,1014,1,529,1,850,1,888,1,1202,5,3.876931685616876
decomposition
1072,1,7.24422751560335
ovalu
789,1,7.24422751560335
3.11
816,1,7.24422751560335
tailplane
722,4,230,4,747,2,6.145615226935241
3270
797,1,7.24422751560335
struct.311
895,1,7.24422751560335
1.05
1179,1,197,1,6.551080335043404
intrinsic
961,2,414,1,6.551080335043404
densiti
874,2,259,1,1150,4,1082,1,619,2,618,2,1371,1,1238,2,1335,1,1204,2,171,2,1157,1,244,3,1257,3,446,1,414,1,10,1,552,2,614,2,1395,2,558,1,304,1,236,1,401,1,645,1,616,5,139,1,490,1,1154,2,1252,4,1319,1,166,1,263,1,1139,1,73,2,548,3,110,2,466,1,657,1,541,2,622,1,477,1,962,1,1010,1,442,5,80,2,243,1,1212,1,495,1,183,1,621,5,296,1,499,2,74,1,262,1,1303,1,781,3,475,2,209,1,975,1,615,1,1394,2,131,1,617,2,695,3,976,1,329,3,912,1,1114,2,85,1,944,1,101,2,1103,3,449,1,481,1,1391,2,654,1,1250,1,1274,1,620,6,949,2,2.849778360930911
owere
238,1,7.24422751560335
flowfield
1006,1,7.24422751560335
mechanic
357,1,778,1,132,2,1047,1,1157,1,177,1,1288,2,1052,2,1277,1,134,1,507,2,1072,1,1123,1,4.6792781581418135
lunar
275,2,7.24422751560335
attract
270,1,7.24422751560335
inclin
920,2,386,1,234,3,1194,1,1147,3,561,2,20,2,1108,2,574,1,533,1,175,1,814,1,360,3,1232,1,927,2,4.53617731450114
tn.3212
827,1,7.24422751560335
vol.x
785,1,7.24422751560335
hysteretic
114,1,7.24422751560335
displacement
891,1,931,2,307,1,433,1,1047,2,788,3,1076,2,346,1,1278,2,1126,1,611,1,843,1,1310,1,655,3,765,3,840,1,547,2,851,3,117,1,889,1,1043,1,96,2,1320,1,1302,2,569,1,1355,4,1175,9,134,1,381,1,140,1,629,1,844,1,818,1,8,1,1054,1,755,1,732,2,854,1,756,1,573,1,610,1,842,1,1119,1,363,1,1129,1,828,2,946,5,827,2,417,1,660,2,1325,1,1392,5,114,2,382,1,852,3,59,1,1041,1,894,3,659,1,116,2,1365,1,572,4,863,1,148,3,1292,1,936,1,926,1,1213,2,1036,2,666,1,1188,1,2.9815476385620343
altitude
1065,1,617,1,548,3,810,1,1102,1,1299,1,1000,1,275,2,76,1,719,1,162,1,554,2,618,1,1150,1,1296,1,969,1,805,5,1161,1,806,8,375,1,85,1,1147,5,1297,1,1040,1,811,5,82,1,401,2,1391,2,547,1,620,2,606,1,1292,1,896,1,329,1,1247,1,882,3,1351,1,1103,1,976,4,807,4,1324,1,163,1,1232,1,3.4830273999097874
padlogj
837,1,7.24422751560335
optimum
561,4,1217,2,1360,1,357,3,773,1,1373,4,624,1,683,1,650,1,1201,1,1239,3,575,1,640,2,212,1,1088,1,543,1,374,4,1219,1,1266,1,992,1,1280,1,1124,1,1293,1,1277,2,232,1,356,2,466,1,1079,1,3.912023005428146
976
976,1,7.24422751560335
maryland
350,1,7.24422751560335
thicknesstoradiu
144,1,7.24422751560335
tn.d1352
1292,1,7.24422751560335
program
266,1,738,1,745,1,1043,1,1089,1,529,1,704,1,76,1,111,1,856,1,1217,1,1061,1,92,1,836,1,1170,3,689,1,11,1,195,1,453,2,1219,5,184,1,1212,1,804,2,4.1087332996742
temperature
1318,6,193,1,94,2,1393,1,592,1,97,2,463,2,1240,1,383,4,604,2,53,3,104,2,860,2,1198,2,552,5,1007,3,943,1,863,1,975,1,1215,1,195,1,495,1,485,2,59,8,1226,2,1268,2,581,1,602,1,462,5,337,1,1367,2,168,3,267,2,557,1,351,2,630,4,549,2,522,2,962,8,6,1,387,3,262,1,966,3,304,1,691,1,80,1,550,3,1109,1,983,1,493,1,885,1,169,3,585,3,1158,1,547,1,1319,3,869,11,528,1,865,4,144,1,95,6,1043,3,334,2,628,3,101,2,571,4,888,4,348,1,16,1,55,3,1072,4,268,3,13,2,887,3,43,3,646,7,572,5,1301,1,912,3,154,3,1274,3,1028,2,529,3,1096,3,1157,4,1149,10,1003,2,622,1,1381,1,573,1,980,11,662,1,79,1,91,6,858,2,1386,4,500,1,274,2,762,7,1015,2,259,1,1161,1,976,1,1021,1,1011,1,340,1,834,1,364,3,982,4,375,1,509,2,868,2,784,2,836,5,66,5,1298,1,82,3,606,2,349,1,867,1,353,4,583,2,269,1,645,1,352,3,579,2,270,1,949,2,283,1,481,1,564,3,582,3,789,1,236,1,505,4,62,4,30,2,1258,2,767,6,948,2,1004,2,876,2,158,7,942,1,98,1,1300,1,408,2,81,1,978,3,737,1,603,3,766,3,306,1,661,6,406,2,890,3,126,1,518,4,1061,2,1040,1,300,4,754,1,72,3,542,2,54,1,562,1,1316,8,51,1,366,1,22,2,50,3,480,3,159,1,695,2,1217,1,1253,1,171,2,333,1,1222,1,131,3,1101,1,1366,1,981,2,84,2,1100,3,302,2,1147,9,474,1,959,2,1355,1,541,1,566,3,378,1,307,1,1230,6,486,1,73,2,71,1,584,4,1019,3,31,1,866,2,1103,3,861,1,414,2,69,1,1022,1,546,3,325,3,1205,1,837,2,1009,3,90,5,460,1,1335,4,328,4,580,3,773,4,1361,2,1314,3,1199,2,565,2,587,1,49,11,466,1,586,2,1027,2,1185,1,1056,4,110,2,1204,1,34,3,260,2,560,3,1373,3,667,1,342,2,623,2,967,1,872,5,185,5,293,1,61,1,707,5,29,9,952,1,282,1,944,1,389,1,407,2,1178,2,620,2,88,1,611,1,1010,1,497,2,170,1,1.6951514307081301
croccolee
455,2,487,3,6.551080335043404
carbide
1148,1,7.24422751560335
nondimensional
889,1,843,1,140,2,66,1,489,1,78,1,1198,1,1028,2,1149,2,1040,1,59,1,635,2,195,1,1034,1,1183,1,268,1,486,1,88,1,842,1,1261,1,423,1,4.199705077879927
r.299
610,1,7.24422751560335
956
1067,1,7.24422751560335
semivertexangle
63,1,7.24422751560335
0.01
778,1,300,1,6.551080335043404
presence
796,1,1144,2,1353,1,1398,1,563,1,206,1,1039,2,1154,2,221,1,1220,2,102,1,1381,2,902,1,44,1,407,1,1167,1,176,2,298,3,465,1,1185,1,1322,3,145,1,1251,1,1162,1,667,1,621,1,1221,1,1371,1,856,1,1134,1,54,1,87,1,208,1,61,2,266,1,1273,2,112,1,347,1,297,1,519,2,662,1,1281,1,269,3,693,1,278,1,267,2,11,2,655,1,1015,1,1253,2,903,2,1372,3,877,1,1236,2,859,1,180,3,692,1,40,1,434,2,1355,1,1172,1,168,1,33,1,522,1,966,1,1189,1,1351,1,887,1,3.0247198104272432
inch
423,2,1378,1,972,1,443,1,7,1,177,1,1010,1,277,1,1003,2,522,1,4.941642422609304
convenient
364,1,251,1,843,1,1374,1,882,1,889,1,1329,1,142,1,490,1,980,1,4.941642422609304
intersect
1343,1,432,1,782,1,1202,2,610,1,5.634789603169249
pistontheori
634,1,686,3,685,1,6.145615226935241
basepressure
487,1,979,1,1040,1,6.145615226935241
844
1231,1,7.24422751560335
psycholog
100,1,7.24422751560335
verfi
193,1,7.24422751560335
huang
735,1,835,1,836,1,647,1,5.857933154483459
langhaar
1174,1,7.24422751560335
dissociate
552,1,7.24422751560335
atommolecule
101,1,7.24422751560335
tn.d1145
1344,1,7.24422751560335
spikednose
690,3,7.24422751560335
hasse
734,1,7.24422751560335
slopecompat
47,1,7.24422751560335
1958556
831,1,7.24422751560335
proposel
928,1,7.24422751560335
targoff
879,1,7.24422751560335
e.r.g
646,1,549,1,6.551080335043404
handlei
1325,1,7.24422751560335
compressible
1240,3,255,2,28,1,241,1,206,3,1375,4,998,3,54,3,1302,1,11,2,961,3,376,4,1386,3,637,1,404,2,350,5,771,3,1366,3,669,1,73,3,62,3,1222,1,445,3,342,1,990,1,1241,1,17,5,145,2,1282,3,781,1,379,3,55,3,1212,1,901,1,50,2,1236,1,985,1,377,3,560,3,1372,2,967,3,1237,3,629,1,343,1,460,4,348,4,71,1,984,3,352,3,705,1,599,1,779,2,81,3,748,2,1271,1,917,2,131,4,474,2,16,3,701,4,504,3,565,2,305,1,1281,1,703,1,152,2,309,3,1301,2,627,1,848,3,611,2,1371,1,240,1,49,2,662,1,1270,1,389,4,770,3,489,1,59,1,539,3,306,3,775,3,383,3,135,4,521,1,1339,1,94,4,118,2,1374,2,326,3,336,1,943,2,941,4,151,1,414,3,72,1,1109,3,125,2,528,1,364,3,1250,1,562,1,2.6094985273737143
livingood
661,1,7.24422751560335
estimate
36,1,294,2,209,1,606,1,456,1,1311,1,1148,1,279,1,909,1,640,2,1076,1,927,1,506,1,33,1,546,1,304,1,170,1,723,1,1053,1,1323,1,1315,3,518,1,1016,2,1324,2,1382,1,433,1,981,1,1236,1,417,1,1019,3,1209,1,466,1,110,1,1297,1,712,1,788,2,17,2,1219,1,369,1,334,1,592,1,797,1,808,2,204,4,530,1,811,1,600,2,554,1,503,1,1224,1,370,1,3.312401882879024
densityviscos
1226,1,7.24422751560335
201
262,1,802,1,6.551080335043404
fd
344,1,7.24422751560335
spectral
1204,1,913,1,1114,2,6.145615226935241
r1183
201,1,7.24422751560335
g.k.batchelor
132,1,7.24422751560335
trim
709,1,999,3,164,1,713,1,717,1,638,5,715,1,813,1,5.1647859739235145
nitric
1296,4,7.24422751560335
2.1
759,1,7.24422751560335
m.c
1263,1,921,1,6.551080335043404
orthogon
1223,1,915,1,6.551080335043404
potentialflow
452,1,443,1,363,1,6.145615226935241
highenergi
1225,1,1379,1,991,1,6.145615226935241
s.d
622,1,7.24422751560335
a.k
1160,1,7.24422751560335
appraisement
962,1,7.24422751560335
polystyrene
1096,1,7.24422751560335
130
696,1,452,1,6.551080335043404
o.u.e.l
1082,1,7.24422751560335
hillj
377,1,7.24422751560335
groundpressure
807,1,7.24422751560335
infinitythat
1025,1,7.24422751560335
saundersroe
649,2,7.24422751560335
9.9
413,1,7.24422751560335
unduli
76,1,7.24422751560335
spread
1035,3,129,1,1250,1,243,1,311,1,976,1,80,4,1324,1,570,1,205,1,9,1,177,3,810,1,777,1,140,1,960,1,4.471638793363569
v184
619,1,7.24422751560335
'matching'
149,1,7.24422751560335
437
1271,1,7.24422751560335
694702
1074,1,7.24422751560335
200204
620,1,7.24422751560335
overshoot
163,2,1347,2,6.551080335043404
coldbodi
1373,1,7.24422751560335
transversecurvature
1213,1,494,1,528,1,6.145615226935241
spite
976,1,7.24422751560335
accessible
1105,1,7.24422751560335
1960
614,1,1265,1,1264,1,1262,1,620,1,1128,1,1321,1,745,1,1091,1,53,1,1254,1,455,1,47,1,652,1,1267,1,1077,1,1273,1,369,1,328,1,298,1,255,1,428,1,582,1,847,1,329,1,408,1,1350,1,996,1,113,1,319,1,797,1,48,1,92,1,429,1,1153,1,448,1,415,1,1257,1,868,1,1271,1,470,1,368,1,711,1,963,1,250,1,397,1,1269,1,1310,1,1277,1,768,1,90,1,330,1,553,1,1281,1,1258,1,195,1,574,1,1266,1,591,1,297,1,212,1,272,1,1361,1,38,1,594,1,932,1,519,1,182,1,792,1,167,1,1098,1,176,1,648,1,296,1,191,1,456,1,1260,1,896,1,1313,1,180,1,34,1,1394,1,811,1,806,1,1279,1,256,1,294,1,837,1,819,1,1282,1,665,1,7,1,1331,1,413,2,291,1,431,1,1272,1,1075,1,649,1,1346,1,248,1,793,1,794,1,1100,1,1276,1,1162,1,241,1,902,1,446,1,728,1,1168,1,1253,1,1255,1,18,1,275,1,280,1,367,1,757,1,1261,1,865,1,1280,1,125,1,556,1,978,1,421,1,911,1,190,1,120,1,1074,1,76,1,1270,1,838,1,468,1,168,1,339,1,28,1,1090,1,1274,1,83,1,211,1,2.302585092994046
g.b
844,1,731,1,802,1,845,1,1385,1,207,1,5.452468046375295
heldenfel
860,1,7.24422751560335
pt.iii
417,1,7.24422751560335
pauchang
87,1,7.24422751560335
anisotropic
208,1,297,1,6.551080335043404
shift
657,1,1352,1,92,1,764,1,1224,1,1212,1,225,1,5.298317366548036
brief
49,1,925,1,966,1,265,1,1295,1,957,1,539,1,1144,1,321,1,438,1,746,1,1111,1,344,1,658,1,792,1,164,1,697,1,655,1,811,1,499,1,895,1,649,1,795,1,594,1,1150,1,1360,1,1103,1,1228,1,316,1,660,1,3.8430301339411947
crop
796,2,200,3,757,3,6.145615226935241
straintime
1025,2,7.24422751560335
lengthtodepth
45,1,7.24422751560335
eigenvalue
14,1,869,3,1233,1,366,1,738,3,831,1,5.452468046375295
magnesium
856,1,7.24422751560335
powell
729,1,778,1,723,1,219,1,5.857933154483459
a.s.c.e
913,1,7.24422751560335
877
1235,1,7.24422751560335
reidj
173,1,7.24422751560335