-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.txt
4314 lines (4314 loc) · 90.2 KB
/
output.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
|57455580,16
0,3218800|1,1545024|2,611572|3,708136|4,643760|5,257504|6,1480648|7,418444|8,965640|9,1158768|10,611572|11,515008|12,482820|13,675948|14,418444|15,482820|16,321880|17,160940|18,321880|19,869076|20,482820|21,997828|22,354068|23,1094392|24,482820|25,740324|26,2060032|27,225316|28,450632|29,225316|30,804700|31,482820|32,386256|33,193128|34,772512|35,160940|36,160940|37,708136|38,675948|39,386256|40,354068|41,804700|42,1190956|43,193128|44,160940|45,193128|46,3057860|47,225316|48,611572|49,4828200|50,1287520|51,450632|52,289692|53,386256|54,321880|55,482820|56,193128|57,354068|58,3122236|59,193128|60,450632|61,1158768|62,450632|63,579384|64,482820|65,289692|66,96564|67,386256|68,1512836|69,482820|70,772512|71,2639416|72,740324|73,257504|74,193128|75,547196|
limited|225316,797
0,64376|42,128752|73,32188|
personally|32188,11802
61,32188|
four|193128,2359
4,32188|14,32188|20,32188|24,96564|
nursery|128752,4317
14,64376|20,64376|
looking|64376,9861
49,64376|
sanford|32188,9238
49,32188|
aug|32188,1082
0,32188|
paris|160940,6040
25,32188|50,64376|58,64376|
344|32188,12292
65,32188|
345|64376,1955
2,32188|49,32188|
340|32188,740
0,32188|
swap|32188,10977
58,32188|
under|193128,886
0,32188|1,32188|6,32188|22,32188|46,32188|64,32188|
worth|32188,6545
26,32188|
placed|32188,6380
26,32188|
7579547|32188,5748
24,32188|
3086386|32188,4411
14,32188|
aurora|32188,10617
54,32188|
rise|128752,1910
2,64376|8,32188|46,32188|
exporters|32188,568
0,32188|
managerial|32188,3028
6,32188|
publicly|160940,2078
3,32188|46,96564|71,32188|
companies|193128,6149
26,128752|46,32188|71,32188|
humidity|32188,142
0,32188|
201129|32188,7308
34,32188|
unrelated|32188,4082
11,32188|
shows|32188,9268
49,32188|
ups|96564,2020
3,32188|27,64376|
favoured|32188,11275
58,32188|
disclose|32188,4054
11,32188|
estimates|64376,488
0,32188|23,32188|
japanese|257504,2633
6,160940|23,64376|72,32188|
second|128752,2478
4,32188|9,32188|42,64376|
exchangeable|32188,2246
3,32188|
firstquarter|32188,10825
57,32188|
estimated|32188,1155
0,32188|
while|193128,2233
3,32188|8,96564|26,32188|49,32188|
asia|64376,5505
23,64376|
spokesman|96564,5900
25,64376|42,32188|
60kg|32188,12720
68,32188|
above|32188,8577
46,32188|
supplier|32188,2456
4,32188|
new|579384,842
0,289692|2,32188|6,64376|9,32188|26,32188|30,32188|42,32188|46,32188|70,32188|
net|1866904,2307
4,32188|7,128752|12,64376|14,96564|15,64376|16,64376|18,96564|20,96564|24,96564|26,32188|29,32188|40,64376|49,32188|51,96564|55,128752|56,32188|60,96564|63,128752|65,64376|67,96564|70,64376|71,32188|73,64376|75,160940|
46000|32188,4969
19,32188|
ever|32188,5147
21,32188|
told|225316,2700
6,64376|46,32188|50,64376|68,32188|71,32188|
453924|32188,12074
63,32188|
99209|32188,11668
60,32188|
never|32188,5222
21,32188|
here|96564,5858
25,32188|58,32188|71,32188|
met|32188,2168
3,32188|
108|32188,10418
51,32188|
109|32188,5647
23,32188|
102|64376,3360
8,32188|73,32188|
100|64376,6910
30,32188|54,32188|
101|32188,4622
16,32188|
106|64376,1173
0,32188|7,32188|
391000|32188,4470
15,32188|
105|160940,6785
27,64376|30,32188|60,32188|70,32188|
dry|32188,203
0,32188|
k|289692,2578
6,96564|48,32188|49,32188|58,96564|70,32188|
climbed|64376,9655
49,64376|
reports|32188,10193
50,32188|
195202|32188,3097
7,32188|
credit|193128,6395
26,32188|37,96564|46,32188|67,32188|
danzar|128752,6979
31,128752|
analysts|289692,6213
26,32188|49,225316|50,32188|
california|64376,7109
32,64376|
changes|32188,8886
46,32188|
ltvolv|32188,5076
21,32188|
1002|32188,10172
49,32188|
explained|32188,8716
46,32188|
90000|32188,13357
72,32188|
brought|32188,11028
58,32188|
pound|64376,11513
58,32188|72,32188|
total|354068,298
0,96564|1,32188|2,64376|13,64376|21,32188|23,32188|48,32188|
unit|515008,3960
11,32188|19,160940|28,96564|32,32188|41,32188|42,32188|49,32188|64,32188|70,64376|
would|965640,593
0,32188|1,96564|6,32188|10,64376|22,32188|26,354068|46,96564|49,128752|58,32188|68,64376|71,32188|
negative|32188,11740
61,32188|
tenders|32188,10634
54,32188|
program|32188,12018
62,32188|
call|32188,12493
68,32188|
asset|32188,9952
49,32188|
strike|32188,12804
70,32188|
until|64376,11351
58,32188|61,32188|
brings|32188,9037
48,32188|
ltnfsi|32188,4432
15,32188|
92|32188,5654
23,32188|
companys|160940,5265
21,64376|46,64376|70,32188|
94|32188,1914
2,32188|
must|64376,4948
19,32188|71,32188|
12837088|32188,7284
34,32188|
rights|32188,1599
1,32188|
gasoline|96564,4843
19,96564|
nakasone|32188,2802
6,32188|
349|64376,10415
51,32188|65,32188|
857006|32188,3103
7,32188|
mr|64376,2800
6,32188|71,32188|
already|128752,2272
3,32188|31,32188|46,32188|49,32188|
232000|32188,10470
51,32188|
revenues|160940,2370
4,64376|49,64376|62,32188|
example|32188,2872
6,32188|
1347000|32188,12142
63,32188|
estate|64376,6183
26,64376|
give|32188,6687
26,32188|
5216000|32188,13551
75,32188|
currency|160940,1039
0,64376|25,32188|50,32188|58,32188|
want|32188,13096
71,32188|
times|354068,971
0,225316|13,32188|46,64376|71,32188|
108000|64376,4350
14,32188|20,32188|
totaled|128752,7210
34,96564|71,32188|
end|225316,481
0,32188|22,32188|34,32188|37,32188|41,32188|68,64376|
antiinflation|32188,11312
58,32188|
how|160940,428
0,64376|6,32188|46,32188|58,32188|
place|32188,9771
49,32188|
widespread|32188,10183
50,32188|
1750|32188,815
0,32188|
729000|32188,12382
67,32188|
end1984|32188,7252
34,32188|
replacing|32188,3450
9,32188|
after|225316,1232
0,32188|25,64376|49,32188|50,32188|58,32188|71,32188|
wrong|32188,8514
46,32188|
president|128752,3546
9,96564|61,32188|
purchase|160940,1425
1,32188|13,32188|15,32188|37,32188|72,32188|
third|64376,7577
38,32188|61,32188|
hasty|32188,9836
49,32188|
think|257504,8502
46,96564|49,128752|71,32188|
cigarettes|32188,12851
70,32188|
maintain|64376,6502
26,32188|71,32188|
enter|32188,2737
6,32188|
operate|32188,11117
58,32188|
operations|321880,3145
7,32188|12,32188|24,32188|32,32188|38,32188|40,64376|60,32188|61,32188|75,32188|
over|289692,686
0,32188|8,32188|10,64376|19,32188|41,32188|46,64376|71,32188|
expects|225316,2363
4,32188|23,32188|38,32188|42,64376|50,32188|70,32188|
london|64376,12481
68,64376|
japan|128752,2595
6,64376|23,32188|50,32188|
fidelity|96564,7088
32,96564|
before|225316,4549
15,32188|21,32188|58,96564|61,32188|65,32188|
fit|32188,598
0,32188|
expectations|32188,9164
49,32188|
1372|32188,4157
12,32188|
401|32188,12117
63,32188|
400|32188,6939
30,32188|
weeks|96564,696
0,32188|58,32188|72,32188|
eugene|32188,10062
49,32188|
versus|32188,5551
23,32188|
then|32188,2912
6,32188|
them|64376,6648
26,64376|
band|96564,9127
48,96564|
effects|32188,6612
26,32188|
they|579384,3767
10,96564|22,32188|37,32188|46,32188|49,321880|72,64376|
bank|869076,1844
2,96564|13,96564|26,225316|33,32188|48,96564|50,32188|52,64376|54,32188|57,32188|58,128752|69,32188|
several|96564,9486
49,96564|
arrested|32188,6740
26,32188|
l|96564,2736
6,32188|42,32188|49,32188|
ltcommonwealth|32188,6999
31,32188|
each|64376,2222
3,32188|64,32188|
went|32188,964
0,32188|
mean|32188,6703
26,32188|
304000|32188,10720
55,32188|
financial|482820,2879
6,64376|21,32188|26,225316|32,32188|37,32188|46,32188|50,32188|58,32188|
trading|225316,1837
2,64376|42,32188|49,64376|71,64376|
substantially|32188,11847
61,32188|
399|32188,7081
31,32188|
optimistically|32188,9868
49,32188|
ctsshr|64376,4654
17,64376|
grease|32188,10756
56,32188|
pirie|32188,8320
45,32188|
sterlings|32188,11492
58,32188|
standard|450632,7371
36,64376|46,96564|49,257504|71,32188|
1129000|32188,4684
18,32188|
formation|32188,6140
26,32188|
wanted|64376,11330
58,64376|
248|32188,7777
40,32188|
longterm|32188,9882
49,32188|
days|64376,11214
58,32188|71,32188|
filter|32188,12810
70,32188|
ltcawl|32188,2730
6,32188|
liquids|32188,8593
46,32188|
turben|32188,9296
49,32188|
industrial|64376,5212
21,64376|
nigel|32188,5881
25,32188|
brazils|32188,12621
68,32188|
another|64376,8192
42,32188|46,32188|
ltjr|32188,7883
41,32188|
176|32188,13594
75,32188|
175|32188,13566
75,32188|
170|32188,13241
71,32188|
ltagsi|32188,6835
29,32188|
exchequer|32188,5872
25,32188|
5524000|32188,4139
12,32188|
2058|32188,3227
8,32188|
needed|32188,11699
61,32188|
however|32188,13286
71,32188|
master|64376,8103
42,64376|
listed|32188,8228
42,32188|
percentage|32188,8736
46,32188|
rest|96564,8691
46,32188|49,64376|
1301000|32188,4691
18,32188|
serve|32188,6481
26,32188|
direct|32188,7608
38,32188|
8864000|32188,10456
51,32188|
somewhat|32188,2378
4,32188|
ltahc|32188,9521
49,32188|
begins|32188,3856
10,32188|
past|32188,8643
46,32188|
target|32188,10227
50,32188|
hike|96564,7365
36,64376|46,32188|
7214|32188,9731
49,32188|
likely|32188,7627
38,32188|
nations|160940,6033
25,32188|58,128752|
street|32188,9739
49,32188|
iron|128752,5431
23,128752|
powers|96564,2659
6,96564|
acquisition|160940,4227
13,32188|32,32188|46,32188|49,32188|69,32188|
sees|289692,2297
4,32188|17,64376|23,32188|35,64376|38,32188|68,32188|70,32188|
talking|32188,12597
68,32188|
seen|96564,5626
23,32188|46,32188|58,32188|
dozen|32188,13057
71,32188|
strength|64376,5273
21,32188|26,32188|
130998|32188,10777
56,32188|
effectiveness|32188,11155
58,32188|
shipments|64376,11962
62,64376|
committing|32188,7521
37,32188|
transactions|32188,6413
26,32188|
bruce|32188,9302
49,32188|
gyllenhammar|64376,5125
21,64376|
involving|32188,1519
1,32188|
germany|32188,10374
50,32188|
letter|128752,5346
22,64376|37,32188|41,32188|
drought|32188,66
0,32188|
rogers|128752,2286
4,128752|
flow|128752,6598
26,32188|46,64376|61,32188|
points|32188,8746
46,32188|
principle|32188,11266
58,32188|
enterprise|32188,6602
26,32188|
51187000|32188,7783
40,32188|
dot|32188,1605
1,32188|
reserve|128752,1924
2,32188|26,32188|50,32188|54,32188|
1107000|32188,12149
63,32188|
saying|64376,3007
6,32188|46,32188|
284945|32188,3080
7,32188|
2695206|64376,12089
63,64376|
labels|32188,1807
1,32188|
ending|32188,8147
42,32188|
59000|32188,4172
12,32188|
thai|32188,13400
72,32188|
quoted|32188,8457
46,32188|
527065|32188,5709
24,32188|
implementation|32188,10324
50,32188|
situations|32188,9476
49,32188|
minnesota|96564,4042
11,32188|13,32188|28,32188|
sugar|289692,3372
9,64376|72,225316|
do|96564,2945
6,64376|46,32188|
exports|160940,3171
8,160940|
viacoms|64376,2071
3,64376|
preferred|64376,2258
3,32188|58,32188|
despite|32188,5201
21,32188|
report|193128,5151
21,64376|23,128752|
234745|32188,6864
29,32188|
runs|32188,8554
46,32188|
increasing|32188,5684
23,32188|
countries|64376,2665
6,64376|
rothschild|32188,10142
49,32188|
patch|32188,9199
49,32188|
twice|32188,4956
19,32188|
ems|32188,11283
58,32188|
18|96564,8853
46,32188|49,32188|58,32188|
release|32188,1972
2,32188|
implication|32188,9323
49,32188|
1382|32188,10179
49,32188|
secretary|32188,10347
50,32188|
fair|160940,8523
46,32188|64,128752|
liquor|32188,1114
0,32188|
resist|32188,13293
71,32188|
decided|64376,5389
22,32188|58,32188|
result|64376,5065
21,32188|57,32188|
3464269|32188,11638
60,32188|
fail|32188,6529
26,32188|
best|32188,5143
21,32188|
subject|96564,5969
25,32188|41,32188|69,32188|
brazil|64376,12604
68,64376|
said|5697276,190
0,160940|1,225316|2,64376|3,96564|4,128752|5,32188|6,64376|8,64376|10,96564|11,64376|13,128752|19,96564|21,193128|23,32188|25,64376|26,257504|28,32188|30,160940|31,96564|32,32188|34,96564|37,96564|38,96564|39,32188|41,64376|42,225316|46,418444|48,32188|49,643760|50,128752|52,32188|53,64376|54,64376|57,64376|58,418444|61,160940|62,96564|64,64376|68,160940|69,32188|70,160940|71,354068|72,96564|
unable|32188,2159
3,32188|
496000|32188,12136
63,32188|
cooperation|32188,11168
58,32188|
approach|32188,11374
58,32188|
ltxon|32188,9611
49,32188|
we|708136,2845
6,160940|46,160940|58,289692|71,96564|
terms|193128,2464
4,32188|11,32188|28,32188|32,32188|53,32188|64,32188|
chriscraft|64376,7654
39,64376|
3895267|32188,6843
29,32188|
drew|32188,9411
49,32188|
news|32188,8413
46,32188|
convertible|32188,1103
0,32188|
debt|96564,7023
31,32188|46,64376|
yearago|64376,2405
4,32188|70,32188|
suggested|32188,13132
71,32188|
received|193128,6991
31,32188|37,32188|54,64376|61,32188|71,32188|
cos|32188,13029
71,32188|
reported|64376,2999
6,32188|61,32188|
federated|193128,6759
27,64376|30,128752|
against|289692,315
0,96564|6,32188|7,32188|10,64376|21,32188|41,32188|
2542000|32188,10434
51,32188|
planned|160940,2171
3,32188|46,64376|49,32188|71,32188|
5878|32188,9641
49,32188|
asked|32188,11325
58,32188|
royal|32188,8608
46,32188|
252|32188,3224
8,32188|
251|32188,3352
8,32188|
telecommunications|96564,2742
6,96564|
254|32188,12348
67,32188|
conference|32188,8417
46,32188|
basis|96564,4928
19,32188|26,32188|30,32188|
holdings|160940,1464
1,32188|3,96564|67,32188|
three|160940,4128
12,32188|38,96564|72,32188|
been|354068,163
0,32188|21,32188|46,96564|49,96564|50,32188|58,32188|68,32188|
107|32188,13602
75,32188|
commission|128752,1222
0,32188|10,64376|42,32188|
much|160940,431
0,64376|46,96564|
interest|193128,2826
6,32188|58,64376|71,96564|
expected|96564,1189
0,32188|23,32188|41,32188|
contigencies|32188,8180
42,32188|
enterprises|32188,6560
26,32188|
168|32188,4267
13,32188|
doubts|32188,587
0,32188|
166|32188,4486
15,32188|
163|32188,3344
8,32188|
commerce|32188,11581
59,32188|
exception|32188,9493
49,32188|
has|836888,461
0,32188|1,64376|3,64376|11,32188|26,32188|37,32188|41,32188|46,32188|49,193128|54,32188|61,96564|62,32188|68,32188|69,64376|71,64376|
reciprocal|32188,2674
6,32188|
economies|32188,5917
25,32188|
ltmob|32188,4742
19,32188|
energysteel|32188,9376
49,32188|
1425000|32188,4476
15,32188|
aid|32188,6090
26,32188|
employees|64376,4028
11,32188|28,32188|
seven|96564,4586
16,32188|51,32188|58,32188|
changed|32188,9790
49,32188|
is|1512836,408
0,64376|3,32188|6,64376|11,32188|13,64376|14,32188|19,32188|26,32188|30,32188|37,32188|39,32188|41,32188|42,32188|44,64376|46,289692|49,257504|50,128752|58,64376|61,96564|64,32188|68,32188|71,32188|
it|2220972,345
0,32188|1,128752|2,32188|3,32188|4,64376|6,32188|11,32188|13,64376|19,96564|21,32188|23,96564|28,32188|30,128752|31,96564|37,96564|38,64376|39,32188|41,32188|42,96564|46,64376|48,64376|49,225316|50,32188|53,32188|54,64376|57,64376|58,32188|61,193128|62,64376|70,128752|71,32188|
voiced|32188,3790
10,32188|
experts|32188,3783
10,32188|
in|4699448,49
0,193128|2,225316|4,32188|6,96564|8,128752|13,64376|19,32188|21,64376|23,225316|24,64376|25,64376|26,225316|30,64376|31,32188|32,32188|34,128752|37,96564|38,128752|41,96564|42,193128|46,128752|47,64376|48,160940|49,547196|50,96564|51,32188|53,64376|57,64376|58,225316|60,64376|61,32188|62,32188|63,96564|68,160940|69,32188|70,64376|71,418444|72,32188|74,32188|75,160940|
if|225316,1541
1,32188|3,32188|26,32188|46,32188|58,96564|
3282478|32188,5741
24,32188|
suggest|32188,11536
58,32188|
make|32188,12733
69,32188|
cumulative|32188,288
0,32188|
5686000|32188,4706
18,32188|
complex|64376,10862
57,64376|
split|225316,2499
5,64376|27,64376|30,64376|63,32188|
accumulating|32188,13113
71,32188|
198788|96564,1176
0,32188|10,32188|58,32188|
european|128752,3671
10,64376|25,32188|71,32188|
independent|64376,8582
46,32188|58,32188|
nil|128752,3063
7,32188|55,32188|56,64376|
ownership|96564,7506
37,32188|46,32188|49,32188|
butter|64376,924
0,64376|
shortly|32188,2856
6,32188|
1975|32188,11569
58,32188|
maccia|32188,3580
9,32188|
ltspc|32188,7387
37,32188|
ocean|32188,5509
23,32188|
academic|32188,10239
50,32188|
savings|128752,7183
33,32188|52,64376|57,32188|
resuming|32188,12055
62,32188|
hearts|32188,9895
49,32188|
the|12167064,42
0,579384|1,482820|2,64376|3,257504|4,225316|5,64376|6,482820|8,128752|9,128752|10,193128|11,128752|13,193128|19,160940|21,257504|22,32188|23,193128|24,64376|25,225316|26,740324|28,96564|30,193128|31,128752|32,96564|34,257504|37,96564|38,289692|39,128752|41,289692|42,418444|46,772512|48,160940|49,1351896|50,257504|53,64376|54,32188|57,96564|58,836888|61,96564|62,128752|64,96564|68,450632|69,32188|70,225316|71,675948|72,160940|75,128752|
195000|32188,10671
55,32188|
proposed|64376,2963
6,32188|10,32188|
appropriately|32188,9848
49,32188|
distribute|32188,7027
31,32188|
roderick|289692,12930
71,289692|
ltacpt|32188,12324
67,32188|
identify|32188,8474
46,32188|
yet|96564,2834
6,32188|50,64376|
previous|128752,3188
8,64376|9,32188|58,32188|
buyers|32188,1088
0,32188|
catalytic|32188,4799
19,32188|
equipment|32188,12996
71,32188|
regarded|32188,2765
6,32188|
had|675948,2837
6,32188|10,64376|13,32188|25,32188|28,32188|41,32188|46,32188|48,32188|49,96564|58,128752|70,32188|71,128752|
amoco|32188,9699
49,32188|
n|160940,1374
1,32188|2,64376|18,32188|61,32188|
board|386256,2102
3,32188|9,96564|26,32188|38,32188|46,32188|50,32188|52,32188|54,32188|68,32188|69,32188|
east|64376,5501
23,64376|
gave|32188,5281
21,32188|
12544866|32188,7244
34,32188|
possible|64376,12938
71,64376|
possibly|32188,9502
49,32188|
exxon|32188,9606
49,32188|
advanced|32188,6812
29,32188|
apart|32188,12610
68,32188|
cruzados|32188,746
0,32188|
55|32188,8427
46,32188|
57|32188,4704
18,32188|
56|96564,3095
7,32188|46,32188|60,32188|
51|64376,4137
12,32188|46,32188|
50|160940,8769
46,32188|49,64376|63,64376|
arrivals|64376,235
0,64376|
52|64376,3334
8,32188|15,32188|
securities|96564,6189
26,64376|42,32188|
bps|128752,8482
46,32188|49,96564|
offices|32188,4281
13,32188|
officer|32188,11922
61,32188|
night|32188,13371
72,32188|
security|96564,7379
37,96564|
towards|64376,11010
58,64376|
right|96564,1448
1,32188|64,32188|71,32188|
old|64376,435
0,32188|43,32188|
deal|32188,4062
11,32188|
consultants|32188,5522
23,32188|
meters|289692,3205
8,289692|
ici|64376,8982
47,64376|
ico|128752,12405
68,128752|
carrolton|128752,12737
69,128752|
for|2317536,111
0,321880|1,128752|3,64376|4,128752|6,64376|10,32188|12,32188|13,64376|15,32188|19,64376|21,32188|26,32188|37,32188|39,32188|41,32188|42,128752|46,160940|49,257504|50,32188|51,32188|54,64376|55,64376|58,96564|61,32188|62,32188|63,32188|69,32188|70,64376|71,128752|72,64376|
balladur|32188,5832
25,32188|
429|32188,3112
7,32188|
fob|32188,914
0,32188|
steps|32188,10272
50,32188|
ecus|32188,3928
10,32188|
2056000|32188,10476
51,32188|
marketing|32188,7618
38,32188|
ltbp|64376,8339
46,32188|71,32188|
restructuring|32188,12955
71,32188|
plc|96564,2727
6,32188|46,32188|71,32188|
post|32188,2995
6,32188|
manufacturing|64376,7842
41,64376|
super|32188,4868
19,32188|
permitted|32188,6577
26,32188|
dlrs|2510664,823
0,450632|1,128752|2,32188|3,64376|4,64376|7,32188|12,64376|13,96564|19,32188|28,32188|36,64376|38,32188|40,32188|41,32188|42,64376|46,96564|47,64376|49,354068|51,64376|58,32188|60,64376|61,32188|63,128752|65,64376|67,128752|69,32188|70,96564|71,64376|75,64376|
census|32188,7259
34,32188|
dollars|128752,8291
44,64376|50,64376|
months|96564,7648
38,32188|46,32188|50,32188|
costs|32188,1767
1,32188|
ensure|32188,1772
1,32188|
afternoon|32188,9021
48,32188|
slightly|128752,1866
2,32188|21,64376|49,32188|
raised|128752,2060
3,96564|30,32188|
managers|64376,3442
9,64376|
formerly|32188,11914
61,32188|
4479000|32188,7770
40,32188|
obtaining|32188,641
0,32188|
two|354068,4259
13,64376|24,32188|39,64376|48,96564|49,32188|50,32188|58,32188|
down|32188,5597
23,32188|
shippers|64376,607
0,64376|
raises|96564,6879
30,32188|49,64376|
dean|32188,10052
49,32188|
reducing|32188,11382
58,32188|
support|96564,3897
10,32188|37,32188|58,32188|
initial|128752,4561
15,32188|33,32188|52,64376|
catalysts|32188,4909
19,32188|
authorized|32188,6929
30,32188|
fraction|32188,2238
3,32188|
resulted|32188,10845
57,32188|
editions|32188,13491
73,32188|
was|901264,385
0,32188|3,64376|5,32188|6,96564|8,32188|9,64376|21,96564|26,32188|46,64376|49,96564|50,32188|57,64376|58,32188|68,64376|71,96564|
war|32188,9276
49,32188|
150746|32188,7314
34,32188|
form|64376,6906
30,32188|58,32188|
offer|547196,774
0,32188|3,64376|6,32188|36,64376|46,225316|49,96564|71,32188|
wireless|128752,2719
6,128752|
payable|128752,6942
30,32188|39,32188|52,32188|74,32188|
228|64376,995
0,32188|67,32188|
227|96564,968
0,96564|
removed|32188,6680
26,32188|
analyst|128752,8463
46,32188|49,96564|
261791|32188,11659
60,32188|
2463214|32188,12278
65,32188|
gould|160940,3964
11,96564|28,64376|
tonne|160940,827
0,64376|10,32188|23,64376|
strengthening|32188,6277
26,32188|
unleaded|32188,4873
19,32188|
154|64376,4483
15,32188|55,32188|
157|32188,13597
75,32188|
2436|32188,13562
75,32188|
evidence|32188,10963
58,32188|
sometime|64376,8937
46,32188|49,32188|
accounting|32188,4497
15,32188|
negotiations|32188,7461
37,32188|
no|257504,10133
49,32188|50,32188|58,64376|61,32188|68,32188|71,64376|
stake|32188,2958
6,32188|
when|128752,2868
6,32188|49,32188|57,32188|58,32188|
crowns|64376,5187
21,64376|
ny|32188,13337
72,32188|
republic|32188,8259
43,32188|
holding|386256,4252
13,32188|26,257504|49,32188|55,32188|56,32188|
test|96564,2786
6,64376|58,32188|
permitting|64376,6130
26,64376|
intend|32188,8357
46,32188|
brothers|32188,9254
49,32188|
198687|32188,1167
0,32188|
fell|64376,3327
8,64376|
intent|128752,5352
22,64376|37,32188|41,32188|
billion|804700,1983
2,96564|8,128752|13,32188|21,128752|23,64376|46,64376|47,64376|49,128752|70,32188|71,64376|