Cyberfish
commited on
Commit
•
badf6c9
1
Parent(s):
e333c94
init
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- reuters/README +53 -0
- reuters/cats.txt +0 -0
- reuters/stopwords +571 -0
- reuters/test/14826 +86 -0
- reuters/test/14828 +14 -0
- reuters/test/14829 +22 -0
- reuters/test/14832 +20 -0
- reuters/test/14833 +21 -0
- reuters/test/14839 +24 -0
- reuters/test/14840 +48 -0
- reuters/test/14841 +8 -0
- reuters/test/14842 +14 -0
- reuters/test/14843 +82 -0
- reuters/test/14844 +14 -0
- reuters/test/14849 +32 -0
- reuters/test/14852 +33 -0
- reuters/test/14854 +14 -0
- reuters/test/14858 +55 -0
- reuters/test/14859 +14 -0
- reuters/test/14860 +17 -0
- reuters/test/14861 +13 -0
- reuters/test/14862 +50 -0
- reuters/test/14863 +32 -0
- reuters/test/14865 +14 -0
- reuters/test/14867 +14 -0
- reuters/test/14872 +23 -0
- reuters/test/14873 +25 -0
- reuters/test/14875 +14 -0
- reuters/test/14876 +11 -0
- reuters/test/14877 +14 -0
- reuters/test/14881 +25 -0
- reuters/test/14882 +14 -0
- reuters/test/14885 +14 -0
- reuters/test/14886 +6 -0
- reuters/test/14888 +29 -0
- reuters/test/14890 +86 -0
- reuters/test/14891 +86 -0
- reuters/test/14892 +30 -0
- reuters/test/14899 +4 -0
- reuters/test/14900 +24 -0
- reuters/test/14903 +12 -0
- reuters/test/14904 +25 -0
- reuters/test/14907 +14 -0
- reuters/test/14909 +22 -0
- reuters/test/14911 +30 -0
- reuters/test/14912 +25 -0
- reuters/test/14913 +13 -0
- reuters/test/14918 +7 -0
- reuters/test/14919 +11 -0
- reuters/test/14921 +87 -0
reuters/README
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
The Reuters-21578 benchmark corpus, ApteMod version
|
3 |
+
|
4 |
+
This is a publically available version of the well-known Reuters-21578
|
5 |
+
"ApteMod" corpus for text categorization. It has been used in
|
6 |
+
publications like these:
|
7 |
+
|
8 |
+
* Yiming Yang and X. Liu. "A re-examination of text categorization
|
9 |
+
methods". 1999. Proceedings of 22nd Annual International SIGIR.
|
10 |
+
http://citeseer.nj.nec.com/yang99reexamination.html
|
11 |
+
|
12 |
+
* Thorsten Joachims. "Text categorization with support vector
|
13 |
+
machines: learning with many relevant features". 1998. Proceedings
|
14 |
+
of ECML-98, 10th European Conference on Machine Learning.
|
15 |
+
http://citeseer.nj.nec.com/joachims98text.html
|
16 |
+
|
17 |
+
ApteMod is a collection of 10,788 documents from the Reuters financial
|
18 |
+
newswire service, partitioned into a training set with 7769 documents
|
19 |
+
and a test set with 3019 documents. The total size of the corpus is
|
20 |
+
about 43 MB. It is also available for download from
|
21 |
+
http://kdd.ics.uci.edu/databases/reuters21578/reuters21578.html ,
|
22 |
+
which includes a more extensive history of the data revisions.
|
23 |
+
|
24 |
+
The distribution of categories in the ApteMod corpus is highly skewed,
|
25 |
+
with 36.7% of the documents in the most common category, and only
|
26 |
+
0.0185% (2 documents) in each of the five least common categories.
|
27 |
+
In fact, the original data source is even more skewed---in creating
|
28 |
+
the corpus, any categories that did not contain at least one document
|
29 |
+
in the training set and one document in the test set were removed from
|
30 |
+
the corpus by its original creator.
|
31 |
+
|
32 |
+
In the ApteMod corpus, each document belongs to one or more
|
33 |
+
categories. There are 90 categories in the corpus. The average
|
34 |
+
number of categories per document is 1.235, and the average number of
|
35 |
+
documents per category is about 148, or 1.37% of the corpus.
|
36 |
+
|
37 |
+
-Ken Williams
|
38 |
+
ken@mathforum.org
|
39 |
+
|
40 |
+
Copyright & Notification
|
41 |
+
|
42 |
+
(extracted from the README at the UCI address above)
|
43 |
+
|
44 |
+
The copyright for the text of newswire articles and Reuters
|
45 |
+
annotations in the Reuters-21578 collection resides with Reuters Ltd.
|
46 |
+
Reuters Ltd. and Carnegie Group, Inc. have agreed to allow the free
|
47 |
+
distribution of this data *for research purposes only*.
|
48 |
+
|
49 |
+
If you publish results based on this data set, please acknowledge
|
50 |
+
its use, refer to the data set by the name "Reuters-21578,
|
51 |
+
Distribution 1.0", and inform your readers of the current location of
|
52 |
+
the data set (see "Availability & Questions").
|
53 |
+
|
reuters/cats.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
reuters/stopwords
ADDED
@@ -0,0 +1,571 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
a
|
2 |
+
a's
|
3 |
+
able
|
4 |
+
about
|
5 |
+
above
|
6 |
+
according
|
7 |
+
accordingly
|
8 |
+
across
|
9 |
+
actually
|
10 |
+
after
|
11 |
+
afterwards
|
12 |
+
again
|
13 |
+
against
|
14 |
+
ain't
|
15 |
+
all
|
16 |
+
allow
|
17 |
+
allows
|
18 |
+
almost
|
19 |
+
alone
|
20 |
+
along
|
21 |
+
already
|
22 |
+
also
|
23 |
+
although
|
24 |
+
always
|
25 |
+
am
|
26 |
+
among
|
27 |
+
amongst
|
28 |
+
an
|
29 |
+
and
|
30 |
+
another
|
31 |
+
any
|
32 |
+
anybody
|
33 |
+
anyhow
|
34 |
+
anyone
|
35 |
+
anything
|
36 |
+
anyway
|
37 |
+
anyways
|
38 |
+
anywhere
|
39 |
+
apart
|
40 |
+
appear
|
41 |
+
appreciate
|
42 |
+
appropriate
|
43 |
+
are
|
44 |
+
aren't
|
45 |
+
around
|
46 |
+
as
|
47 |
+
aside
|
48 |
+
ask
|
49 |
+
asking
|
50 |
+
associated
|
51 |
+
at
|
52 |
+
available
|
53 |
+
away
|
54 |
+
awfully
|
55 |
+
b
|
56 |
+
be
|
57 |
+
became
|
58 |
+
because
|
59 |
+
become
|
60 |
+
becomes
|
61 |
+
becoming
|
62 |
+
been
|
63 |
+
before
|
64 |
+
beforehand
|
65 |
+
behind
|
66 |
+
being
|
67 |
+
believe
|
68 |
+
below
|
69 |
+
beside
|
70 |
+
besides
|
71 |
+
best
|
72 |
+
better
|
73 |
+
between
|
74 |
+
beyond
|
75 |
+
both
|
76 |
+
brief
|
77 |
+
but
|
78 |
+
by
|
79 |
+
c
|
80 |
+
c'mon
|
81 |
+
c's
|
82 |
+
came
|
83 |
+
can
|
84 |
+
can't
|
85 |
+
cannot
|
86 |
+
cant
|
87 |
+
cause
|
88 |
+
causes
|
89 |
+
certain
|
90 |
+
certainly
|
91 |
+
changes
|
92 |
+
clearly
|
93 |
+
co
|
94 |
+
com
|
95 |
+
come
|
96 |
+
comes
|
97 |
+
concerning
|
98 |
+
consequently
|
99 |
+
consider
|
100 |
+
considering
|
101 |
+
contain
|
102 |
+
containing
|
103 |
+
contains
|
104 |
+
corresponding
|
105 |
+
could
|
106 |
+
couldn't
|
107 |
+
course
|
108 |
+
currently
|
109 |
+
d
|
110 |
+
definitely
|
111 |
+
described
|
112 |
+
despite
|
113 |
+
did
|
114 |
+
didn't
|
115 |
+
different
|
116 |
+
do
|
117 |
+
does
|
118 |
+
doesn't
|
119 |
+
doing
|
120 |
+
don't
|
121 |
+
done
|
122 |
+
down
|
123 |
+
downwards
|
124 |
+
during
|
125 |
+
e
|
126 |
+
each
|
127 |
+
edu
|
128 |
+
eg
|
129 |
+
eight
|
130 |
+
either
|
131 |
+
else
|
132 |
+
elsewhere
|
133 |
+
enough
|
134 |
+
entirely
|
135 |
+
especially
|
136 |
+
et
|
137 |
+
etc
|
138 |
+
even
|
139 |
+
ever
|
140 |
+
every
|
141 |
+
everybody
|
142 |
+
everyone
|
143 |
+
everything
|
144 |
+
everywhere
|
145 |
+
ex
|
146 |
+
exactly
|
147 |
+
example
|
148 |
+
except
|
149 |
+
f
|
150 |
+
far
|
151 |
+
few
|
152 |
+
fifth
|
153 |
+
first
|
154 |
+
five
|
155 |
+
followed
|
156 |
+
following
|
157 |
+
follows
|
158 |
+
for
|
159 |
+
former
|
160 |
+
formerly
|
161 |
+
forth
|
162 |
+
four
|
163 |
+
from
|
164 |
+
further
|
165 |
+
furthermore
|
166 |
+
g
|
167 |
+
get
|
168 |
+
gets
|
169 |
+
getting
|
170 |
+
given
|
171 |
+
gives
|
172 |
+
go
|
173 |
+
goes
|
174 |
+
going
|
175 |
+
gone
|
176 |
+
got
|
177 |
+
gotten
|
178 |
+
greetings
|
179 |
+
h
|
180 |
+
had
|
181 |
+
hadn't
|
182 |
+
happens
|
183 |
+
hardly
|
184 |
+
has
|
185 |
+
hasn't
|
186 |
+
have
|
187 |
+
haven't
|
188 |
+
having
|
189 |
+
he
|
190 |
+
he's
|
191 |
+
hello
|
192 |
+
help
|
193 |
+
hence
|
194 |
+
her
|
195 |
+
here
|
196 |
+
here's
|
197 |
+
hereafter
|
198 |
+
hereby
|
199 |
+
herein
|
200 |
+
hereupon
|
201 |
+
hers
|
202 |
+
herself
|
203 |
+
hi
|
204 |
+
him
|
205 |
+
himself
|
206 |
+
his
|
207 |
+
hither
|
208 |
+
hopefully
|
209 |
+
how
|
210 |
+
howbeit
|
211 |
+
however
|
212 |
+
i
|
213 |
+
i'd
|
214 |
+
i'll
|
215 |
+
i'm
|
216 |
+
i've
|
217 |
+
ie
|
218 |
+
if
|
219 |
+
ignored
|
220 |
+
immediate
|
221 |
+
in
|
222 |
+
inasmuch
|
223 |
+
inc
|
224 |
+
indeed
|
225 |
+
indicate
|
226 |
+
indicated
|
227 |
+
indicates
|
228 |
+
inner
|
229 |
+
insofar
|
230 |
+
instead
|
231 |
+
into
|
232 |
+
inward
|
233 |
+
is
|
234 |
+
isn't
|
235 |
+
it
|
236 |
+
it'd
|
237 |
+
it'll
|
238 |
+
it's
|
239 |
+
its
|
240 |
+
itself
|
241 |
+
j
|
242 |
+
just
|
243 |
+
k
|
244 |
+
keep
|
245 |
+
keeps
|
246 |
+
kept
|
247 |
+
know
|
248 |
+
knows
|
249 |
+
known
|
250 |
+
l
|
251 |
+
last
|
252 |
+
lately
|
253 |
+
later
|
254 |
+
latter
|
255 |
+
latterly
|
256 |
+
least
|
257 |
+
less
|
258 |
+
lest
|
259 |
+
let
|
260 |
+
let's
|
261 |
+
like
|
262 |
+
liked
|
263 |
+
likely
|
264 |
+
little
|
265 |
+
look
|
266 |
+
looking
|
267 |
+
looks
|
268 |
+
ltd
|
269 |
+
m
|
270 |
+
mainly
|
271 |
+
many
|
272 |
+
may
|
273 |
+
maybe
|
274 |
+
me
|
275 |
+
mean
|
276 |
+
meanwhile
|
277 |
+
merely
|
278 |
+
might
|
279 |
+
more
|
280 |
+
moreover
|
281 |
+
most
|
282 |
+
mostly
|
283 |
+
much
|
284 |
+
must
|
285 |
+
my
|
286 |
+
myself
|
287 |
+
n
|
288 |
+
name
|
289 |
+
namely
|
290 |
+
nd
|
291 |
+
near
|
292 |
+
nearly
|
293 |
+
necessary
|
294 |
+
need
|
295 |
+
needs
|
296 |
+
neither
|
297 |
+
never
|
298 |
+
nevertheless
|
299 |
+
new
|
300 |
+
next
|
301 |
+
nine
|
302 |
+
no
|
303 |
+
nobody
|
304 |
+
non
|
305 |
+
none
|
306 |
+
noone
|
307 |
+
nor
|
308 |
+
normally
|
309 |
+
not
|
310 |
+
nothing
|
311 |
+
novel
|
312 |
+
now
|
313 |
+
nowhere
|
314 |
+
o
|
315 |
+
obviously
|
316 |
+
of
|
317 |
+
off
|
318 |
+
often
|
319 |
+
oh
|
320 |
+
ok
|
321 |
+
okay
|
322 |
+
old
|
323 |
+
on
|
324 |
+
once
|
325 |
+
one
|
326 |
+
ones
|
327 |
+
only
|
328 |
+
onto
|
329 |
+
or
|
330 |
+
other
|
331 |
+
others
|
332 |
+
otherwise
|
333 |
+
ought
|
334 |
+
our
|
335 |
+
ours
|
336 |
+
ourselves
|
337 |
+
out
|
338 |
+
outside
|
339 |
+
over
|
340 |
+
overall
|
341 |
+
own
|
342 |
+
p
|
343 |
+
particular
|
344 |
+
particularly
|
345 |
+
per
|
346 |
+
perhaps
|
347 |
+
placed
|
348 |
+
please
|
349 |
+
plus
|
350 |
+
possible
|
351 |
+
presumably
|
352 |
+
probably
|
353 |
+
provides
|
354 |
+
q
|
355 |
+
que
|
356 |
+
quite
|
357 |
+
qv
|
358 |
+
r
|
359 |
+
rather
|
360 |
+
rd
|
361 |
+
re
|
362 |
+
really
|
363 |
+
reasonably
|
364 |
+
regarding
|
365 |
+
regardless
|
366 |
+
regards
|
367 |
+
relatively
|
368 |
+
respectively
|
369 |
+
right
|
370 |
+
s
|
371 |
+
said
|
372 |
+
same
|
373 |
+
saw
|
374 |
+
say
|
375 |
+
saying
|
376 |
+
says
|
377 |
+
second
|
378 |
+
secondly
|
379 |
+
see
|
380 |
+
seeing
|
381 |
+
seem
|
382 |
+
seemed
|
383 |
+
seeming
|
384 |
+
seems
|
385 |
+
seen
|
386 |
+
self
|
387 |
+
selves
|
388 |
+
sensible
|
389 |
+
sent
|
390 |
+
serious
|
391 |
+
seriously
|
392 |
+
seven
|
393 |
+
several
|
394 |
+
shall
|
395 |
+
she
|
396 |
+
should
|
397 |
+
shouldn't
|
398 |
+
since
|
399 |
+
six
|
400 |
+
so
|
401 |
+
some
|
402 |
+
somebody
|
403 |
+
somehow
|
404 |
+
someone
|
405 |
+
something
|
406 |
+
sometime
|
407 |
+
sometimes
|
408 |
+
somewhat
|
409 |
+
somewhere
|
410 |
+
soon
|
411 |
+
sorry
|
412 |
+
specified
|
413 |
+
specify
|
414 |
+
specifying
|
415 |
+
still
|
416 |
+
sub
|
417 |
+
such
|
418 |
+
sup
|
419 |
+
sure
|
420 |
+
t
|
421 |
+
t's
|
422 |
+
take
|
423 |
+
taken
|
424 |
+
tell
|
425 |
+
tends
|
426 |
+
th
|
427 |
+
than
|
428 |
+
thank
|
429 |
+
thanks
|
430 |
+
thanx
|
431 |
+
that
|
432 |
+
that's
|
433 |
+
thats
|
434 |
+
the
|
435 |
+
their
|
436 |
+
theirs
|
437 |
+
them
|
438 |
+
themselves
|
439 |
+
then
|
440 |
+
thence
|
441 |
+
there
|
442 |
+
there's
|
443 |
+
thereafter
|
444 |
+
thereby
|
445 |
+
therefore
|
446 |
+
therein
|
447 |
+
theres
|
448 |
+
thereupon
|
449 |
+
these
|
450 |
+
they
|
451 |
+
they'd
|
452 |
+
they'll
|
453 |
+
they're
|
454 |
+
they've
|
455 |
+
think
|
456 |
+
third
|
457 |
+
this
|
458 |
+
thorough
|
459 |
+
thoroughly
|
460 |
+
those
|
461 |
+
though
|
462 |
+
three
|
463 |
+
through
|
464 |
+
throughout
|
465 |
+
thru
|
466 |
+
thus
|
467 |
+
to
|
468 |
+
together
|
469 |
+
too
|
470 |
+
took
|
471 |
+
toward
|
472 |
+
towards
|
473 |
+
tried
|
474 |
+
tries
|
475 |
+
truly
|
476 |
+
try
|
477 |
+
trying
|
478 |
+
twice
|
479 |
+
two
|
480 |
+
u
|
481 |
+
un
|
482 |
+
under
|
483 |
+
unfortunately
|
484 |
+
unless
|
485 |
+
unlikely
|
486 |
+
until
|
487 |
+
unto
|
488 |
+
up
|
489 |
+
upon
|
490 |
+
us
|
491 |
+
use
|
492 |
+
used
|
493 |
+
useful
|
494 |
+
uses
|
495 |
+
using
|
496 |
+
usually
|
497 |
+
uucp
|
498 |
+
v
|
499 |
+
value
|
500 |
+
various
|
501 |
+
very
|
502 |
+
via
|
503 |
+
viz
|
504 |
+
vs
|
505 |
+
w
|
506 |
+
want
|
507 |
+
wants
|
508 |
+
was
|
509 |
+
wasn't
|
510 |
+
way
|
511 |
+
we
|
512 |
+
we'd
|
513 |
+
we'll
|
514 |
+
we're
|
515 |
+
we've
|
516 |
+
welcome
|
517 |
+
well
|
518 |
+
went
|
519 |
+
were
|
520 |
+
weren't
|
521 |
+
what
|
522 |
+
what's
|
523 |
+
whatever
|
524 |
+
when
|
525 |
+
whence
|
526 |
+
whenever
|
527 |
+
where
|
528 |
+
where's
|
529 |
+
whereafter
|
530 |
+
whereas
|
531 |
+
whereby
|
532 |
+
wherein
|
533 |
+
whereupon
|
534 |
+
wherever
|
535 |
+
whether
|
536 |
+
which
|
537 |
+
while
|
538 |
+
whither
|
539 |
+
who
|
540 |
+
who's
|
541 |
+
whoever
|
542 |
+
whole
|
543 |
+
whom
|
544 |
+
whose
|
545 |
+
why
|
546 |
+
will
|
547 |
+
willing
|
548 |
+
wish
|
549 |
+
with
|
550 |
+
within
|
551 |
+
without
|
552 |
+
won't
|
553 |
+
wonder
|
554 |
+
would
|
555 |
+
would
|
556 |
+
wouldn't
|
557 |
+
x
|
558 |
+
y
|
559 |
+
yes
|
560 |
+
yet
|
561 |
+
you
|
562 |
+
you'd
|
563 |
+
you'll
|
564 |
+
you're
|
565 |
+
you've
|
566 |
+
your
|
567 |
+
yours
|
568 |
+
yourself
|
569 |
+
yourselves
|
570 |
+
z
|
571 |
+
zero
|
reuters/test/14826
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ASIAN EXPORTERS FEAR DAMAGE FROM U.S.-JAPAN RIFT
|
2 |
+
Mounting trade friction between the
|
3 |
+
U.S. And Japan has raised fears among many of Asia's exporting
|
4 |
+
nations that the row could inflict far-reaching economic
|
5 |
+
damage, businessmen and officials said.
|
6 |
+
They told Reuter correspondents in Asian capitals a U.S.
|
7 |
+
Move against Japan might boost protectionist sentiment in the
|
8 |
+
U.S. And lead to curbs on American imports of their products.
|
9 |
+
But some exporters said that while the conflict would hurt
|
10 |
+
them in the long-run, in the short-term Tokyo's loss might be
|
11 |
+
their gain.
|
12 |
+
The U.S. Has said it will impose 300 mln dlrs of tariffs on
|
13 |
+
imports of Japanese electronics goods on April 17, in
|
14 |
+
retaliation for Japan's alleged failure to stick to a pact not
|
15 |
+
to sell semiconductors on world markets at below cost.
|
16 |
+
Unofficial Japanese estimates put the impact of the tariffs
|
17 |
+
at 10 billion dlrs and spokesmen for major electronics firms
|
18 |
+
said they would virtually halt exports of products hit by the
|
19 |
+
new taxes.
|
20 |
+
"We wouldn't be able to do business," said a spokesman for
|
21 |
+
leading Japanese electronics firm Matsushita Electric
|
22 |
+
Industrial Co Ltd <MC.T>.
|
23 |
+
"If the tariffs remain in place for any length of time
|
24 |
+
beyond a few months it will mean the complete erosion of
|
25 |
+
exports (of goods subject to tariffs) to the U.S.," said Tom
|
26 |
+
Murtha, a stock analyst at the Tokyo office of broker <James
|
27 |
+
Capel and Co>.
|
28 |
+
In Taiwan, businessmen and officials are also worried.
|
29 |
+
"We are aware of the seriousness of the U.S. Threat against
|
30 |
+
Japan because it serves as a warning to us," said a senior
|
31 |
+
Taiwanese trade official who asked not to be named.
|
32 |
+
Taiwan had a trade trade surplus of 15.6 billion dlrs last
|
33 |
+
year, 95 pct of it with the U.S.
|
34 |
+
The surplus helped swell Taiwan's foreign exchange reserves
|
35 |
+
to 53 billion dlrs, among the world's largest.
|
36 |
+
"We must quickly open our markets, remove trade barriers and
|
37 |
+
cut import tariffs to allow imports of U.S. Products, if we
|
38 |
+
want to defuse problems from possible U.S. Retaliation," said
|
39 |
+
Paul Sheen, chairman of textile exporters <Taiwan Safe Group>.
|
40 |
+
A senior official of South Korea's trade promotion
|
41 |
+
association said the trade dispute between the U.S. And Japan
|
42 |
+
might also lead to pressure on South Korea, whose chief exports
|
43 |
+
are similar to those of Japan.
|
44 |
+
Last year South Korea had a trade surplus of 7.1 billion
|
45 |
+
dlrs with the U.S., Up from 4.9 billion dlrs in 1985.
|
46 |
+
In Malaysia, trade officers and businessmen said tough
|
47 |
+
curbs against Japan might allow hard-hit producers of
|
48 |
+
semiconductors in third countries to expand their sales to the
|
49 |
+
U.S.
|
50 |
+
In Hong Kong, where newspapers have alleged Japan has been
|
51 |
+
selling below-cost semiconductors, some electronics
|
52 |
+
manufacturers share that view. But other businessmen said such
|
53 |
+
a short-term commercial advantage would be outweighed by
|
54 |
+
further U.S. Pressure to block imports.
|
55 |
+
"That is a very short-term view," said Lawrence Mills,
|
56 |
+
director-general of the Federation of Hong Kong Industry.
|
57 |
+
"If the whole purpose is to prevent imports, one day it will
|
58 |
+
be extended to other sources. Much more serious for Hong Kong
|
59 |
+
is the disadvantage of action restraining trade," he said.
|
60 |
+
The U.S. Last year was Hong Kong's biggest export market,
|
61 |
+
accounting for over 30 pct of domestically produced exports.
|
62 |
+
The Australian government is awaiting the outcome of trade
|
63 |
+
talks between the U.S. And Japan with interest and concern,
|
64 |
+
Industry Minister John Button said in Canberra last Friday.
|
65 |
+
"This kind of deterioration in trade relations between two
|
66 |
+
countries which are major trading partners of ours is a very
|
67 |
+
serious matter," Button said.
|
68 |
+
He said Australia's concerns centred on coal and beef,
|
69 |
+
Australia's two largest exports to Japan and also significant
|
70 |
+
U.S. Exports to that country.
|
71 |
+
Meanwhile U.S.-Japanese diplomatic manoeuvres to solve the
|
72 |
+
trade stand-off continue.
|
73 |
+
Japan's ruling Liberal Democratic Party yesterday outlined
|
74 |
+
a package of economic measures to boost the Japanese economy.
|
75 |
+
The measures proposed include a large supplementary budget
|
76 |
+
and record public works spending in the first half of the
|
77 |
+
financial year.
|
78 |
+
They also call for stepped-up spending as an emergency
|
79 |
+
measure to stimulate the economy despite Prime Minister
|
80 |
+
Yasuhiro Nakasone's avowed fiscal reform program.
|
81 |
+
Deputy U.S. Trade Representative Michael Smith and Makoto
|
82 |
+
Kuroda, Japan's deputy minister of International Trade and
|
83 |
+
Industry (MITI), are due to meet in Washington this week in an
|
84 |
+
effort to end the dispute.
|
85 |
+
|
86 |
+
|
reuters/test/14828
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CHINA DAILY SAYS VERMIN EAT 7-12 PCT GRAIN STOCKS
|
2 |
+
A survey of 19 provinces and seven cities
|
3 |
+
showed vermin consume between seven and 12 pct of China's grain
|
4 |
+
stocks, the China Daily said.
|
5 |
+
It also said that each year 1.575 mln tonnes, or 25 pct, of
|
6 |
+
China's fruit output are left to rot, and 2.1 mln tonnes, or up
|
7 |
+
to 30 pct, of its vegetables. The paper blamed the waste on
|
8 |
+
inadequate storage and bad preservation methods.
|
9 |
+
It said the government had launched a national programme to
|
10 |
+
reduce waste, calling for improved technology in storage and
|
11 |
+
preservation, and greater production of additives. The paper
|
12 |
+
gave no further details.
|
13 |
+
|
14 |
+
|
reuters/test/14829
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JAPAN TO REVISE LONG-TERM ENERGY DEMAND DOWNWARDS
|
2 |
+
The Ministry of International Trade and
|
3 |
+
Industry (MITI) will revise its long-term energy supply/demand
|
4 |
+
outlook by August to meet a forecast downtrend in Japanese
|
5 |
+
energy demand, ministry officials said.
|
6 |
+
MITI is expected to lower the projection for primary energy
|
7 |
+
supplies in the year 2000 to 550 mln kilolitres (kl) from 600
|
8 |
+
mln, they said.
|
9 |
+
The decision follows the emergence of structural changes in
|
10 |
+
Japanese industry following the rise in the value of the yen
|
11 |
+
and a decline in domestic electric power demand.
|
12 |
+
MITI is planning to work out a revised energy supply/demand
|
13 |
+
outlook through deliberations of committee meetings of the
|
14 |
+
Agency of Natural Resources and Energy, the officials said.
|
15 |
+
They said MITI will also review the breakdown of energy
|
16 |
+
supply sources, including oil, nuclear, coal and natural gas.
|
17 |
+
Nuclear energy provided the bulk of Japan's electric power
|
18 |
+
in the fiscal year ended March 31, supplying an estimated 27
|
19 |
+
pct on a kilowatt/hour basis, followed by oil (23 pct) and
|
20 |
+
liquefied natural gas (21 pct), they noted.
|
21 |
+
|
22 |
+
|
reuters/test/14832
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
THAI TRADE DEFICIT WIDENS IN FIRST QUARTER
|
2 |
+
Thailand's trade deficit widened to 4.5
|
3 |
+
billion baht in the first quarter of 1987 from 2.1 billion a
|
4 |
+
year ago, the Business Economics Department said.
|
5 |
+
It said Janunary/March imports rose to 65.1 billion baht
|
6 |
+
from 58.7 billion. Thailand's improved business climate this
|
7 |
+
year resulted in a 27 pct increase in imports of raw materials
|
8 |
+
and semi-finished products.
|
9 |
+
The country's oil import bill, however, fell 23 pct in the
|
10 |
+
first quarter due to lower oil prices.
|
11 |
+
The department said first quarter exports expanded to 60.6
|
12 |
+
billion baht from 56.6 billion.
|
13 |
+
Export growth was smaller than expected due to lower
|
14 |
+
earnings from many key commodities including rice whose
|
15 |
+
earnings declined 18 pct, maize 66 pct, sugar 45 pct, tin 26
|
16 |
+
pct and canned pineapples seven pct.
|
17 |
+
Products registering high export growth were jewellery up
|
18 |
+
64 pct, clothing 57 pct and rubber 35 pct.
|
19 |
+
|
20 |
+
|
reuters/test/14833
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
INDONESIA SEES CPO PRICE RISING SHARPLY
|
2 |
+
Indonesia expects crude palm oil (CPO)
|
3 |
+
prices to rise sharply to between 450 and 550 dlrs a tonne FOB
|
4 |
+
sometime this year because of better European demand and a fall
|
5 |
+
in Malaysian output, Hasrul Harahap, junior minister for tree
|
6 |
+
crops, told Indonesian reporters.
|
7 |
+
Prices of Malaysian and Sumatran CPO are now around 332
|
8 |
+
dlrs a tonne CIF for delivery in Rotterdam, traders said.
|
9 |
+
Harahap said Indonesia would maintain its exports, despite
|
10 |
+
making recent palm oil purchases from Malaysia, so that it
|
11 |
+
could possibly increase its international market share.
|
12 |
+
Indonesia, the world's second largest producer of palm oil
|
13 |
+
after Malaysia, has been forced to import palm oil to ensure
|
14 |
+
supplies during the Moslem fasting month of Ramadan.
|
15 |
+
Harahap said it was better to import to cover a temporary
|
16 |
+
shortage than to lose export markets.
|
17 |
+
Indonesian exports of CPO in calendar 1986 were 530,500
|
18 |
+
tonnes, against 468,500 in 1985, according to central bank
|
19 |
+
figures.
|
20 |
+
|
21 |
+
|
reuters/test/14839
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
AUSTRALIAN FOREIGN SHIP BAN ENDS BUT NSW PORTS HIT
|
2 |
+
Tug crews in New South Wales (NSW),
|
3 |
+
Victoria and Western Australia yesterday lifted their ban on
|
4 |
+
foreign-flag ships carrying containers but NSW ports are still
|
5 |
+
being disrupted by a separate dispute, shipping sources said.
|
6 |
+
The ban, imposed a week ago over a pay claim, had prevented
|
7 |
+
the movement in or out of port of nearly 20 vessels, they said.
|
8 |
+
The pay dispute went before a hearing of the Arbitration
|
9 |
+
Commission today.
|
10 |
+
Meanwhile, disruption began today to cargo handling in the
|
11 |
+
ports of Sydney, Newcastle and Port Kembla, they said.
|
12 |
+
The industrial action at the NSW ports is part of the week
|
13 |
+
of action called by the NSW Trades and Labour Council to
|
14 |
+
protest changes to the state's workers' compensation laws.
|
15 |
+
The shipping sources said the various port unions appear to
|
16 |
+
be taking it in turn to work for a short time at the start of
|
17 |
+
each shift and then to walk off.
|
18 |
+
Cargo handling in the ports has been disrupted, with
|
19 |
+
container movements most affected, but has not stopped
|
20 |
+
altogether, they said.
|
21 |
+
They said they could not say how long the disruption will
|
22 |
+
go on and what effect it will have on shipping movements.
|
23 |
+
|
24 |
+
|
reuters/test/14840
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
INDONESIAN COMMODITY EXCHANGE MAY EXPAND
|
2 |
+
The Indonesian Commodity Exchange is
|
3 |
+
likely to start trading in at least one new commodity, and
|
4 |
+
possibly two, during calendar 1987, exchange chairman Paian
|
5 |
+
Nainggolan said.
|
6 |
+
He told Reuters in a telephone interview that trading in
|
7 |
+
palm oil, sawn timber, pepper or tobacco was being considered.
|
8 |
+
Trading in either crude palm oil (CPO) or refined palm oil
|
9 |
+
may also be introduced. But he said the question was still
|
10 |
+
being considered by Trade Minister Rachmat Saleh and no
|
11 |
+
decision on when to go ahead had been made.
|
12 |
+
The fledgling exchange currently trades coffee and rubber
|
13 |
+
physicals on an open outcry system four days a week.
|
14 |
+
"Several factors make us move cautiously," Nainggolan said.
|
15 |
+
"We want to move slowly and safely so that we do not make a
|
16 |
+
mistake and undermine confidence in the exchange."
|
17 |
+
Physical rubber trading was launched in 1985, with coffee
|
18 |
+
added in January 1986. Rubber contracts are traded FOB, up to
|
19 |
+
five months forward. Robusta coffee grades four and five are
|
20 |
+
traded for prompt delivery and up to five months forward,
|
21 |
+
exchange officials said.
|
22 |
+
The trade ministry and exchange board are considering the
|
23 |
+
introduction of futures trading later for rubber, but one
|
24 |
+
official said a feasibility study was needed first. No
|
25 |
+
decisions are likely until after Indonesia's elections on April
|
26 |
+
23, traders said.
|
27 |
+
Trade Minister Saleh said on Monday that Indonesia, as the
|
28 |
+
world's second largest producer of natural rubber, should
|
29 |
+
expand its rubber marketing effort and he hoped development of
|
30 |
+
the exchange would help this.
|
31 |
+
Nainggolan said that the exchange was trying to boost
|
32 |
+
overseas interest by building up contacts with end-users.
|
33 |
+
He said teams had already been to South Korea and Taiwan to
|
34 |
+
encourage direct use of the exchange, while a delegation would
|
35 |
+
also visit Europe, Mexico and some Latin American states to
|
36 |
+
encourage participation.
|
37 |
+
Officials say the infant exchange has made a good start
|
38 |
+
although trading in coffee has been disappointing.
|
39 |
+
Transactions in rubber between the start of trading in
|
40 |
+
April 1985 and December 1986 totalled 9,595 tonnes, worth 6.9
|
41 |
+
mln dlrs FOB, plus 184.3 mln rupiah for rubber delivered
|
42 |
+
locally, the latest exchange report said.
|
43 |
+
Trading in coffee in calendar 1986 amounted to only 1,905
|
44 |
+
tonnes in 381 lots, valued at 6.87 billion rupiah.
|
45 |
+
Total membership of the exchange is now nine brokers and
|
46 |
+
44 traders.
|
47 |
+
|
48 |
+
|
reuters/test/14841
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
SRI LANKA GETS USDA APPROVAL FOR WHEAT PRICE
|
2 |
+
Food Department officials said the U.S.
|
3 |
+
Department of Agriculture approved the Continental Grain Co
|
4 |
+
sale of 52,500 tonnes of soft wheat at 89 U.S. Dlrs a tonne C
|
5 |
+
and F from Pacific Northwest to Colombo.
|
6 |
+
They said the shipment was for April 8 to 20 delivery.
|
7 |
+
|
8 |
+
|
reuters/test/14842
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
WESTERN MINING TO OPEN NEW GOLD MINE IN AUSTRALIA
|
2 |
+
Western Mining Corp Holdings Ltd
|
3 |
+
<WMNG.S> (WMC) said it will establish a new joint venture gold
|
4 |
+
mine in the Northern Territory at a cost of about 21 mln dlrs.
|
5 |
+
The mine, to be known as the Goodall project, will be owned
|
6 |
+
60 pct by WMC and 40 pct by a local W.R. Grace and Co <GRA>
|
7 |
+
unit. It is located 30 kms east of the Adelaide River at Mt.
|
8 |
+
Bundey, WMC said in a statement
|
9 |
+
It said the open-pit mine, with a conventional leach
|
10 |
+
treatment plant, is expected to produce about 50,000 ounces of
|
11 |
+
gold in its first year of production from mid-1988. Annual ore
|
12 |
+
capacity will be about 750,000 tonnes.
|
13 |
+
|
14 |
+
|
reuters/test/14843
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
SUMITOMO BANK AIMS AT QUICK RECOVERY FROM MERGER
|
2 |
+
Sumitomo Bank Ltd <SUMI.T> is certain to
|
3 |
+
lose its status as Japan's most profitable bank as a result of
|
4 |
+
its merger with the Heiwa Sogo Bank, financial analysts said.
|
5 |
+
Osaka-based Sumitomo, with desposits of around 23.9
|
6 |
+
trillion yen, merged with Heiwa Sogo, a small, struggling bank
|
7 |
+
with an estimated 1.29 billion dlrs in unrecoverable loans, in
|
8 |
+
October.
|
9 |
+
But despite the link-up, Sumitomo President Koh Komatsu
|
10 |
+
told Reuters he is confident his bank can quickly regain its
|
11 |
+
position.
|
12 |
+
"We'll be back in position in first place within three
|
13 |
+
years," Komatsu said in an interview.
|
14 |
+
He said that while the merger will initially reduce
|
15 |
+
Sumitomo's profitability and efficiency, it will vastly expand
|
16 |
+
Sumitomo's branch network in the Tokyo metropolitan area where
|
17 |
+
it has been relatively weak.
|
18 |
+
But financial analysts are divided on whether and how
|
19 |
+
quickly the gamble will pay off.
|
20 |
+
Some said Sumitomo may have paid too much for Heiwa Sogo in
|
21 |
+
view of the smaller bank's large debts. Others argue the merger
|
22 |
+
was more cost effective than creating a comparable branch
|
23 |
+
network from scratch.
|
24 |
+
The analysts agreed the bank was aggressive. It has
|
25 |
+
expanded overseas, entered the lucrative securities business
|
26 |
+
and geared up for domestic competition, but they questioned the
|
27 |
+
wisdom of some of those moves.
|
28 |
+
"They've made bold moves to put everything in place. Now
|
29 |
+
it's largely out of their hands," said Kleinwort Benson Ltd
|
30 |
+
financial analyst Simon Smithson.
|
31 |
+
Among Sumitomo's problems are limits placed on its move to
|
32 |
+
enter U.S. Securities business by taking a share in American
|
33 |
+
investment bank Goldman, Sachs and Co.
|
34 |
+
Sumitomo last August agreed to pay 500 mln dlrs for a 12.5
|
35 |
+
pct limited partnership in the bank, but for the time being at
|
36 |
+
least, the Federal Reserve Board has forbidden them to exchange
|
37 |
+
personnel, or increase the business they do with each other.
|
38 |
+
"The tie-up is widely looked on as a lame duck because the
|
39 |
+
Fed was stricter than Sumitomo expected," said one analyst.
|
40 |
+
But Komatsu said the move will pay off in time.
|
41 |
+
"U.S. Regulations will change in the near future and if so,
|
42 |
+
we can do various things. We only have to wait two or three
|
43 |
+
years, not until the 21st century," Komatsu said.
|
44 |
+
Komatsu is also willing to be patient about possible routes
|
45 |
+
into the securities business at home.
|
46 |
+
Article 65 of the Securities and Exchange Act, Japan's
|
47 |
+
version of the U.S. Glass-Steagall Act, separates commercial
|
48 |
+
from investment banking.
|
49 |
+
But the walls between the two are crumbling and Komatsu
|
50 |
+
said he hopes further deregulation will create new
|
51 |
+
opportunities.
|
52 |
+
"We need to find new business chances," Komatsu said. "In some
|
53 |
+
cases these will be securities related, in some cases trust
|
54 |
+
bank related. That's the kind of deregulation we want."
|
55 |
+
Until such changes occur, Sumitomo will focus on such
|
56 |
+
domestic securities business as profitable government bond
|
57 |
+
dealing and strengthening relations with Meiko Securities Co
|
58 |
+
Ltd, in which it holds a five pct share, Komatsu said.
|
59 |
+
He said Sumitomo is cautiously optimistic about entering
|
60 |
+
the securities business here through its Swiss universal bank
|
61 |
+
subsidiary, Banca del Gottardo.
|
62 |
+
The Finance Ministry is expected to grant licences to
|
63 |
+
securities subsidiaries of U.S. Commercial banks soon,
|
64 |
+
following a similar decision for subsidiaries of European
|
65 |
+
universal banks in which the parent holds a less than 50 pct.
|
66 |
+
But Komatsu is reluctant to push hard for a similar
|
67 |
+
decision on a Gottardo subsidiary.
|
68 |
+
"We don't want to make waves. We expect this will be allowed
|
69 |
+
in two or three years," he said.
|
70 |
+
Like other city banks, Sumitomo is also pushing to expand
|
71 |
+
lending to individuals and small and medium businesses to
|
72 |
+
replace disappearing demand from big business, he added.
|
73 |
+
The analysts said Sumitomo will have to devote a lot of
|
74 |
+
time to digesting its most recent initiatives, including the
|
75 |
+
merger with ailing Heiwa Sogo.
|
76 |
+
"It's (Sumitomo) been bold in its strategies," said
|
77 |
+
Kleinwort's Smithson.
|
78 |
+
"After that, it's a question of absorbing and juggling
|
79 |
+
around. It will be the next decade before we see if the
|
80 |
+
strategy is right or wrong."
|
81 |
+
|
82 |
+
|
reuters/test/14844
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
SUBROTO SAYS INDONESIA SUPPORTS TIN PACT EXTENSION
|
2 |
+
Mines and Energy Minister Subroto
|
3 |
+
confirmed Indonesian support for an extension of the sixth
|
4 |
+
International Tin Agreement (ITA), but said a new pact was not
|
5 |
+
necessary.
|
6 |
+
Asked by Reuters to clarify his statement on Monday in
|
7 |
+
which he said the pact should be allowed to lapse, Subroto said
|
8 |
+
Indonesia was ready to back extension of the ITA.
|
9 |
+
"We can support extension of the sixth agreement," he said.
|
10 |
+
"But a seventh accord we believe to be unnecessary."
|
11 |
+
The sixth ITA will expire at the end of June unless a
|
12 |
+
two-thirds majority of members vote for an extension.
|
13 |
+
|
14 |
+
|
reuters/test/14849
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BUNDESBANK ALLOCATES 6.1 BILLION MARKS IN TENDER
|
2 |
+
The Bundesbank accepted bids for 6.1
|
3 |
+
billion marks at today's tender for a 28-day securities
|
4 |
+
repurchase pact at a fixed rate of 3.80 pct, a central bank
|
5 |
+
spokesman said.
|
6 |
+
Banks, which bid for a total 12.2 billion marks liquidity,
|
7 |
+
will be credited with the funds allocated today and must buy
|
8 |
+
back securities pledged on May 6.
|
9 |
+
Some 14.9 billion marks will drain from the market today as
|
10 |
+
an earlier pact expires, so the Bundesbank is effectively
|
11 |
+
withdrawing a net 8.1 billion marks from the market with
|
12 |
+
today's allocation.
|
13 |
+
A Bundesbank spokesman said in answer to enquiries that the
|
14 |
+
withdrawal of funds did not reflect a tightening of credit
|
15 |
+
policy, but was to be seen in the context of plentiful
|
16 |
+
liquidity in the banking system.
|
17 |
+
Banks held an average 59.3 billion marks at the Bundesbank
|
18 |
+
over the first six days of the month, well clear of the likely
|
19 |
+
April minimum reserve requirement of 51 billion marks.
|
20 |
+
The Bundesbank spokesman noted that by bidding only 12.2
|
21 |
+
billion marks, below the outgoing 14.9 billion, banks
|
22 |
+
themselves had shown they felt they had plenty of liquidity.
|
23 |
+
Dealers said the Bundesbank is keen to prevent too much
|
24 |
+
liquidity accruing in the market, as that would blunt the
|
25 |
+
effectiveness of the security repurchase agreement, its main
|
26 |
+
open-market instrument for steering market interest rates. Two
|
27 |
+
further pacts are likely this month over the next two weeks.
|
28 |
+
The Bundesbank is currently steering call money between 3.6
|
29 |
+
and 3.8 pct, although short-term fluctuations outside that
|
30 |
+
range are possible, dealers said.
|
31 |
+
|
32 |
+
|
reuters/test/14852
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BOND CORP STILL CONSIDERING ATLAS MINING BAIL-OUT
|
2 |
+
Bond Corp Holdings Ltd <BONA.S> and Atlas
|
3 |
+
Consolidated Mining and Development Corp <ATLC.MN> are still
|
4 |
+
holding talks on a bail-out package for the troubled mining
|
5 |
+
firm, an Atlas statement said.
|
6 |
+
Atlas, the Philippines' biggest copper producer, said it
|
7 |
+
had been hit by depressed world copper prices. It reported a
|
8 |
+
net loss of 976.38 mln pesos in the year ending December 1986,
|
9 |
+
compared with a net loss of 1.53 billion in 1985.
|
10 |
+
The company said it had been able to cut its losses because
|
11 |
+
its scaled-down copper operations in the central island of Cebu
|
12 |
+
started in the second half of 1986.
|
13 |
+
Atlas said negotiations were continuing on the acquisition
|
14 |
+
by Bond of the company's existing bank loans and their
|
15 |
+
restructuring into a gold loan.
|
16 |
+
A memorandum of understanding signed by the two sides in
|
17 |
+
October last year said Bond would acquire Atlas' total loans of
|
18 |
+
275 mln dlrs, to be repaid by the mining company in gold.
|
19 |
+
Atlas said the two sides were also discussing equity
|
20 |
+
infusion into Atlas and the creation of a development fund for
|
21 |
+
further exploration and development of the company's gold
|
22 |
+
properties in the central province of Masbate.
|
23 |
+
Wilson Banks, general manager of <Bond Corp International
|
24 |
+
Ltd> in Hong Kong, told Reuters the Atlas statement on the
|
25 |
+
negotiations was "reasonably accurate."
|
26 |
+
Banks said Bond Corp was seriously considering several
|
27 |
+
investments in the Philippines but did not give details.
|
28 |
+
In its statement, Atlas said development of the pre-World
|
29 |
+
War Two underground mines in Masbate had been accelerated and
|
30 |
+
the ore tonnage had increased, extending the operation's life
|
31 |
+
at least until 1993.
|
32 |
+
|
33 |
+
|
reuters/test/14854
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CHINA INDUSTRIAL OUTPUT RISES IN FIRST QUARTER
|
2 |
+
China's industrial output rose 14.1 pct
|
3 |
+
in the first quarter of 1987 against the same 1986 period, the
|
4 |
+
People's Daily said.
|
5 |
+
Its overseas edition said the growth rate, which compares
|
6 |
+
with a target of seven pct for the whole of 1987, was "rather
|
7 |
+
high" but the base in the first quarter of 1986 was on the low
|
8 |
+
side. Industrial output grew 4.4 pct in the first quarter of
|
9 |
+
1986.
|
10 |
+
It said China's industrial production this year has been
|
11 |
+
normal but product quality and efficiency need further
|
12 |
+
improvement. It gave no further details.
|
13 |
+
|
14 |
+
|
reuters/test/14858
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JAPAN MINISTRY SAYS OPEN FARM TRADE WOULD HIT U.S.
|
2 |
+
Japan's Agriculture Ministry, angered by
|
3 |
+
U.S. Demands that Japan open its farm products market, will
|
4 |
+
tell U.S. Officials at talks later this month that
|
5 |
+
liberalisation would harm existing U.S. Farm exports to Japan,
|
6 |
+
a senior ministry official said.
|
7 |
+
"Imports from the U.S. Would drop due to active sales drives
|
8 |
+
by other suppliers," the official, who declined to be named,
|
9 |
+
said. "Japan is the largest customer for U.S. Farm products and
|
10 |
+
it is not reasonable for the U.S. To demand Japan liberalise
|
11 |
+
its farm import market," he said.
|
12 |
+
Agriculture Minister Mutsuki Kato has said if the U.S.
|
13 |
+
Insists Japan open its protected rice market it will also open
|
14 |
+
its wheat market, where volume and origin are regulated to
|
15 |
+
protect local farmers.
|
16 |
+
Australia and Canada could then increase their wheat
|
17 |
+
exports as they are more competitive than the U.S., He said.
|
18 |
+
End-users would also buy other origins, grain traders said.
|
19 |
+
U.S. Agriculture Secretary Richard Lyng, who is due to
|
20 |
+
visit Japan for talks between April 16-27, has said he will ask
|
21 |
+
Japan to offer a share of its rice market to U.S. Suppliers and
|
22 |
+
remove quotas on U.S. Beef and citrus imports.
|
23 |
+
Other countries are already cutting into the U.S. Market
|
24 |
+
share here. Australia, the largest beef supplier to Japan, has
|
25 |
+
been trying to boost exports prior to the expiry of a four-year
|
26 |
+
beef accord next March 31.
|
27 |
+
Imports of U.S. Corn have fallen due to increased sales
|
28 |
+
from China and South America, while Japanese soybean imports
|
29 |
+
from Brazil are expected to rise sharply this year, although
|
30 |
+
the U.S. Will remain the largest supplier.
|
31 |
+
U.S. Feedgrain sales will also drop if Japan opens up its
|
32 |
+
beef imports, since Japan depends almost entirely on feedgrain
|
33 |
+
imports, mainly from the U.S., Japanese officials said.
|
34 |
+
An indication of the U.S. Position came last December when
|
35 |
+
Under Secretary of Agriculture Daniel Amstutz said Japan has
|
36 |
+
the potential to provide one of the largest boosts to U.S.
|
37 |
+
Agricultural exports, with the beef market alone representing
|
38 |
+
some one billion dlrs in new business.
|
39 |
+
The U.S. Has also asked the General Agreement on Tariffs
|
40 |
+
and Trade to investigate the legality of Japanese import
|
41 |
+
controls on 12 other farm products, including fruit juices,
|
42 |
+
purees and pulp, tomato juice, ketchup and sauce, peanuts,
|
43 |
+
prepared beef products and miscellaneous beans.
|
44 |
+
To help calm heated trade relations with the U.S., Japan's
|
45 |
+
top business group Keidanren has urged the government to remove
|
46 |
+
residual import restrictions on agricultural products.
|
47 |
+
But Agriculture Minister Kato has ruled out any emotional
|
48 |
+
reaction, and the senior ministry official said the farm issue
|
49 |
+
should not become a scapegoat for trade pressure in the
|
50 |
+
industrial sector.
|
51 |
+
"Japan is the largest buyer of U.S. Farm products, and these
|
52 |
+
issues should not be discussed on the same table," the official
|
53 |
+
said.
|
54 |
+
|
55 |
+
|
reuters/test/14859
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
AMATIL PROPOSES TWO-FOR-FIVE BONUS SHARE ISSUE
|
2 |
+
Amatil Ltd <AMAA.S> said it proposes to
|
3 |
+
make a two-for-five bonus issue out of its revaluation reserve
|
4 |
+
to shareholders registered May 26.
|
5 |
+
Shareholders will be asked to approve the issue and an
|
6 |
+
increase in authorised capital to 175 mln shares from 125 mln
|
7 |
+
at a general meeting on May 1, it said in a statement.
|
8 |
+
The new shares will rank for dividends declared after
|
9 |
+
October 31. Amatil, in which B.A.T. Industries Plc <BTI.L>
|
10 |
+
holds a 41 pct stake, said it does not expect to maintain its
|
11 |
+
latest annual dividend rate of 29 cents a share on the enlarged
|
12 |
+
capital.
|
13 |
+
|
14 |
+
|
reuters/test/14860
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BOWATER 1986 PRETAX PROFITS RISE 15.6 MLN STG
|
2 |
+
Shr 27.7p vs 20.7p
|
3 |
+
Div 6.0p vs 5.5p making 10.0p vs 9.25p
|
4 |
+
Turnover 1.34 billion stg vs 1.29 billion
|
5 |
+
Pretax profit 48.0 mln vs 32.4 mln
|
6 |
+
Tax 14.4 mln vs 6.9 mln
|
7 |
+
Company name is Bowater Industries Plc <BWTR.L>
|
8 |
+
Trading profit 63.4 mln vs 45.1 mln
|
9 |
+
Trading profit includes -
|
10 |
+
Packaging and associated products 23.2 mln vs 14.2 mln
|
11 |
+
Merchanting and services 18.4 mln vs 9.6 mln
|
12 |
+
Tissue and timber products 9.0 mln vs 5.8 mln
|
13 |
+
Interest debit 15.4 mln vs 12.7 mln
|
14 |
+
Minority interests 7.0 mln debit vs 6.2 mln debit
|
15 |
+
Extraordinary items 15.4 mln credit vs 11.9 mln debit
|
16 |
+
|
17 |
+
|
reuters/test/14861
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
U.K. MONEY MARKET DEFICIT FORECAST AT 250 MLN STG
|
2 |
+
The Bank of England said it forecast a
|
3 |
+
shortage of around 250 mln stg in the money market today.
|
4 |
+
Among the main factors affecting liquidity, bills maturing
|
5 |
+
in official hands and the take-up of treasury bills will drain
|
6 |
+
some 505 mln stg, while bills for repurchase by the market will
|
7 |
+
remove around 194 mln. In addition, a rise in note circulation
|
8 |
+
and bankers' balances below target will each drain around 110
|
9 |
+
mln stg.
|
10 |
+
Partly offsetting these outflows, exchequer transactions
|
11 |
+
will add some 690 mln stg to the system today.
|
12 |
+
|
13 |
+
|
reuters/test/14862
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
SOUTH KOREA MOVES TO SLOW GROWTH OF TRADE SURPLUS
|
2 |
+
South Korea's trade surplus is growing too
|
3 |
+
fast and the government has started taking steps to slow it
|
4 |
+
down, Deputy Prime Minister Kim Mahn-je said.
|
5 |
+
He told a press conference the government planned to
|
6 |
+
increase investment, speed up the opening of the local market
|
7 |
+
to foreign imports and gradually adjust its currency to hold
|
8 |
+
the surplus "at a proper level."
|
9 |
+
But he said the government would not allow the won to
|
10 |
+
appreciate too much in a short period of time. South Korea has
|
11 |
+
been under pressure from Washington to revalue the won.
|
12 |
+
The U.S. Wants South Korea to cut its trade surplus with
|
13 |
+
the U.S., Which rose to 7.4 billion dlrs in 1986 from 4.3
|
14 |
+
billion dlrs in 1985.
|
15 |
+
Kim, who is also economic planning minister, said prospects
|
16 |
+
were bright for the South Korean economy, but the government
|
17 |
+
would try to hold the current account surplus to around five
|
18 |
+
billion dlrs a year for the next five years.
|
19 |
+
"Our government projections of eight pct GNP growth, five
|
20 |
+
billion dlrs of (current account) surplus and 12 pct growth in
|
21 |
+
exports all seemed to be reasonable early this year. But now
|
22 |
+
the surplus is growing faster than we expected," he said.
|
23 |
+
Trade ministry officials said South Korea's exports rose 35
|
24 |
+
pct to 9.34 billion dlrs in the first three months of this
|
25 |
+
year, while imports rose only 8.5 pct to 8.2 billion dlrs.
|
26 |
+
Kim said the swing of South Korea's current account to a
|
27 |
+
surplus of 4.65 billion dlrs in 1986 from an 890 mln dlr
|
28 |
+
deficit in 1985 was very significant. The surplus enabled the
|
29 |
+
country to reduce its foreign debt last year for the first
|
30 |
+
time.
|
31 |
+
South Korea's foreign debt, which fell to 44.5 billion dlrs
|
32 |
+
in 1986 from 46.8 billion in 1985, is still among the largest
|
33 |
+
in Asia.
|
34 |
+
"This huge amount of our foreign debt has been one of the
|
35 |
+
major constraints on our development... Last year was a major
|
36 |
+
turning point for the Korean economy," Kim said.
|
37 |
+
Kim said his government plannned to reduce the ratio of
|
38 |
+
foreign debt to the country's GNP to about 20 pct in 1991, from
|
39 |
+
about 50 pct in 1986.
|
40 |
+
"The government, however, does not want to accelerate
|
41 |
+
reducing the debt by making an excessive trade surplus," he
|
42 |
+
said.
|
43 |
+
Kim said a sudden rise in the surplus would cause inflation
|
44 |
+
and lead to trade friction with Seoul's major trading partners,
|
45 |
+
particularly the United States.
|
46 |
+
"We need a surplus because we have to reduce our debt, but
|
47 |
+
we are taking measures to hold the size of the surplus at a
|
48 |
+
proper level," Kim said.
|
49 |
+
|
50 |
+
|
reuters/test/14863
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FINNS AND CANADIANS TO STUDY MTBE PRODUCTION PLANT
|
2 |
+
Finland's national oil company Neste Oy
|
3 |
+
<NEOY.HE> said in a statement it had agreed with Canadian firms
|
4 |
+
to study the feasibility of building a plant in Edmonton,
|
5 |
+
Canada, to produce a replacement for lead in petrol.
|
6 |
+
The prospective plant would cost an estimated 270 mln
|
7 |
+
Canadian dlrs and would produce methyl tertiary butyl ether
|
8 |
+
(MTBE) from raw materials available locally, it said.
|
9 |
+
The partners in the study are Neste Oy, Celanese Canada
|
10 |
+
Inc, Hoechst Celanese Corporation and Trade Mountain Pipe Line
|
11 |
+
Company Ltd, of Vancouver, B.C.
|
12 |
+
The Edmonton site was suitable because of the raw materials
|
13 |
+
availability, the proximity to pipeline transportation and the
|
14 |
+
important capital and operating advantages gained by locating
|
15 |
+
on an existing Celanese Canada site, the statement said.
|
16 |
+
The partners would look into the feasibility of a plant
|
17 |
+
producing 500,000 tonnes per annum of MTBE, an octane enhancer
|
18 |
+
that can replace tetra ethyl lead.
|
19 |
+
Most of the MTBE would be targeted for the United States
|
20 |
+
where lead levels in gasoline are being lowered because of
|
21 |
+
health concerns, the statement added.
|
22 |
+
Canadian lead limits are currently 11 times as high as the
|
23 |
+
U.S. Limit but lead is scheduled for virtual elimination in
|
24 |
+
Canada by 1993, which should create a Canadian demand for MTBE,
|
25 |
+
it said.
|
26 |
+
Finland's Neste Oy, whose turnover last year was over five
|
27 |
+
billion dlrs, has extensive experience with MTBE. It has a
|
28 |
+
major investment in an MTBE plant in Saudi Arabia.
|
29 |
+
The Edmonton, Alberta plant would be scheduled to go on
|
30 |
+
stream in late 1989, the statement said.
|
31 |
+
|
32 |
+
|
reuters/test/14865
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CRA SOLD FORREST GOLD FOR 76 MLN DLRS - WHIM CREEK
|
2 |
+
<Whim Creek Consolidated NL> said the
|
3 |
+
consortium it is leading will pay 76.55 mln dlrs for the
|
4 |
+
acquisition of CRA Ltd's <CRAA.S> <Forrest Gold Pty Ltd> unit,
|
5 |
+
reported yesterday.
|
6 |
+
CRA and Whim Creek did not disclose the price yesterday.
|
7 |
+
Whim Creek will hold 44 pct of the consortium, while
|
8 |
+
<Austwhim Resources NL> will hold 27 pct and <Croesus Mining
|
9 |
+
NL> 29 pct, it said in a statement.
|
10 |
+
As reported, Forrest Gold owns two mines in Western
|
11 |
+
Australia producing a combined 37,000 ounces of gold a year. It
|
12 |
+
also owns an undeveloped gold project.
|
13 |
+
|
14 |
+
|
reuters/test/14867
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
GERMAN INDUSTRIAL EMPLOYMENT SEEN STAGNATING
|
2 |
+
The number of workers employed in
|
3 |
+
the West German industrial sector stagnated in the last quarter
|
4 |
+
of 1986 as a 50,000 increase in overall employment benefited
|
5 |
+
only the services branch, the DIW economic institute said.
|
6 |
+
A DIW report added the general downturn in the economy
|
7 |
+
since last Autumn had had a negative effect on the willingness
|
8 |
+
of firms to take on workers. It referred to a marked downturn
|
9 |
+
in the number of workers taken on in the capital goods sector.
|
10 |
+
New orders for manufacturing industry goods have mostly
|
11 |
+
fallen or stagnated in recent months, but data for February
|
12 |
+
finally showed a reversal of the trend, with a 1.9 pct rise.
|
13 |
+
|
14 |
+
|
reuters/test/14872
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BOWATER INDUSTRIES PROFIT EXCEED EXPECTATIONS
|
2 |
+
Bowater Industries Plc <BWTR.L> 1986
|
3 |
+
pretax profits of 48.0 mln stg exceeded market expectations of
|
4 |
+
around 40 mln and pushed the company's shares up sharply to a
|
5 |
+
high of 491p from 468p last night, dealers said.
|
6 |
+
The shares later eased back to 481p. Bowater reported a
|
7 |
+
32.4 mln stg profit in 1985.
|
8 |
+
The company said in a statement accompanying the results
|
9 |
+
that the underlying trend showed improvement and it intended to
|
10 |
+
expand further by developing existing businesses and seeking
|
11 |
+
new opportunities.
|
12 |
+
It added that it had appointed David Lyon, currently
|
13 |
+
managing director of Redland Plc <RDLD.L> as its new chief
|
14 |
+
executive.
|
15 |
+
Analysts noted that Bowater's profits of 18.9 mln stg from
|
16 |
+
13.2 mln previously had been given a boost by pension benefits
|
17 |
+
of 4.5 mln stg.
|
18 |
+
Profit from Australia and the Far East showed the greatest
|
19 |
+
percentage rise, jumping 55.0 pct to 15.5 mln from 10.0 mln,
|
20 |
+
while the profit from U.K. Operations rose 30.7 pct to 24.7
|
21 |
+
mln, and Europe, 42.9 pct to 11.0 mln.
|
22 |
+
|
23 |
+
|
reuters/test/14873
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
CITIBANK NORWAY UNIT LOSES SIX MLN CROWNS IN 1986
|
2 |
+
Citibank A/S <CCI.N>, the Norwegian
|
3 |
+
subsidiary of the U.S.-based bank, said it made a net loss of
|
4 |
+
just over six mln crowns in 1986 -- although foreign bankers
|
5 |
+
said they expect it to show 1987 profits after two lean years.
|
6 |
+
Citibank's Oslo treasury head Bjoern Sejerstad told
|
7 |
+
Reuters, Citibank, one of seven foreign bank subsidiaries
|
8 |
+
operating in Norway, lost money because of restructuring for
|
9 |
+
investment banking away from commercial banking and an economic
|
10 |
+
slump in Norway following last year's plunge in oil prices.
|
11 |
+
Foreign banks have been allowed to operate susbidiaries in
|
12 |
+
Norway since 1985.
|
13 |
+
Foreign banking analysts in Oslo said access to Norway's
|
14 |
+
second-hand securities and equities markets, to be approved
|
15 |
+
later this spring, and lower primary reserve requirements would
|
16 |
+
make profit this year.
|
17 |
+
Citibank lost 490,000 crowns in Norway in 1985, but
|
18 |
+
Sejerstad said a profit was likely this year because of planned
|
19 |
+
liberalisation and better economic performance, helped by a
|
20 |
+
steadier oil price of around 18 dlrs a barrel.
|
21 |
+
Earlier this year, Chase Manhattan Bank's <CMB.N>
|
22 |
+
subsidiary decided to stop foreign exchange trading after heavy
|
23 |
+
losses and focus instead on fee-based merchant banking.
|
24 |
+
|
25 |
+
|
reuters/test/14875
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
VIEILLE MONTAGNE SAYS 1986 CONDITIONS UNFAVOURABLE
|
2 |
+
A sharp fall in the dollar price of
|
3 |
+
zinc and the depreciation of the U.S. Currency created
|
4 |
+
unfavourable economic conditions for Vieille Montagne SA
|
5 |
+
<VMNB.BR> in 1986.
|
6 |
+
It said in a statement that the two factors led to a
|
7 |
+
squeeze on refining margins and an 18.24 pct fall in sales and
|
8 |
+
services income despite an unchanged level of activity.
|
9 |
+
Vieille Montagne, which is actively pursuing a
|
10 |
+
restructuring program, reported a 198 mln franc net loss, after
|
11 |
+
187 mln francs in provisions for the closure of an electrolysis
|
12 |
+
plant, compared with a 250 mln franc net profit in 1985.
|
13 |
+
|
14 |
+
|
reuters/test/14876
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
VIEILLE MONTAGNE REPORTS LOSS, DIVIDEND NIL
|
2 |
+
1986 Year
|
3 |
+
Net loss after exceptional charges 198 mln francs vs profit
|
4 |
+
250 mln
|
5 |
+
Exceptional provisions for closure of Viviez electrolysis
|
6 |
+
Plant 187 mln francs vs exceptional gain 22 mln
|
7 |
+
Sales and services 16.51 billion francs vs 20.20 billion
|
8 |
+
Proposed net dividend on ordinary shares nil vs 110 francs
|
9 |
+
Company's full name is Vieille Montagne SA <VMNB.BR>.
|
10 |
+
|
11 |
+
|
reuters/test/14877
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
EC MAINLY FOR TIN EXTENSION, NO U.K. STAND TAKEN
|
2 |
+
European Community (EC) members of the
|
3 |
+
International Tin Council, except Britain, have said they are
|
4 |
+
prepared to back an extension of the International Tin
|
5 |
+
Agreement, an EC spokesman said.
|
6 |
+
He said at a meeting of EC states' representatives here
|
7 |
+
yesterday, Britain undertook to communicate its own decision to
|
8 |
+
its partners today. It said it was not ready yesterday to take
|
9 |
+
a stand but did not say why.
|
10 |
+
He added nine other EC states backed an extension. Spain
|
11 |
+
and Portugal, which are not members of the International Tin
|
12 |
+
Council, raised no objections to a common EC stance in favour.
|
13 |
+
|
14 |
+
|
reuters/test/14881
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JAPAN GIVEN LITTLE HOPE OF AVOIDING U.S. SANCTIONS
|
2 |
+
A top U.S. Official said Japan has little
|
3 |
+
chance of convincing the U.S. To drop threatened trade
|
4 |
+
sanctions, despite the efforts of a Japanese team that left for
|
5 |
+
Washington today.
|
6 |
+
Michael Armacost, Under Secretary of State for Political
|
7 |
+
Affairs, was asked at a press conference whether Japan's moves
|
8 |
+
to boost its domestic economy and open its markets could
|
9 |
+
persuade the U.S. Not to impose tariffs on Japanese imports
|
10 |
+
said, and replied: "...It is probably too early for the figures
|
11 |
+
to demonstrate that the situation has turned around and to
|
12 |
+
permit the result you have described."
|
13 |
+
Armacost said the U.S. Hopes Japan will take steps to lift
|
14 |
+
its domestic economy and reduce dependence on exports, remove
|
15 |
+
barriers to imports and settle outstanding trade issues.
|
16 |
+
"There are obvious problems at the moment in the trade area,
|
17 |
+
but we do not wish those problems to divert attention from
|
18 |
+
important areas of cooperation that continue to exist on
|
19 |
+
security and political issues," he said.
|
20 |
+
"The question is whether through cooperative actions between
|
21 |
+
our governments we can reduce the (trade) imbalance or whether
|
22 |
+
Congress takes action to reduce it through protectionist
|
23 |
+
legislation," he said.
|
24 |
+
|
25 |
+
|
reuters/test/14882
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
THAI ZINC EXPORTS FALL IN MARCH
|
2 |
+
Thai zinc ingot exports fell to 882
|
3 |
+
tonnes in March from 1,764 in February and 3,008 in March 1986,
|
4 |
+
the Mineral Resources Department said.
|
5 |
+
A spokesman for Padaeng Industry Co Ltd, the country's sole
|
6 |
+
exporter, attributed the decline to the company's lower stocks,
|
7 |
+
which averaged 5,000 tonnes in the first quarter against 16,000
|
8 |
+
tonnes in late 1985 when it began exporting.
|
9 |
+
The department said major buyers included China, Japan, the
|
10 |
+
Philippines, South Korea, Singapore and Taiwan.
|
11 |
+
Thailand exported 4,842 tonnes of zinc ingots during the
|
12 |
+
first quarter, down from 14,937 a year ago.
|
13 |
+
|
14 |
+
|
reuters/test/14885
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
EC SUGAR TENDER HARD TO PREDICT - LONDON TRADE
|
2 |
+
The outcome of today's European Community
|
3 |
+
(EC) white sugar tender is extremely difficult to predict after
|
4 |
+
last week's substantial award of 102,350 tonnes at the highest
|
5 |
+
ever rebate of 46.864 European currency units (Ecus) per 100
|
6 |
+
kilos, traders said.
|
7 |
+
Some said they believed the tonnage would probably be
|
8 |
+
smaller, at around 60,000 tonnes, but declined to give a view
|
9 |
+
on the likely restitution. Last week, the European Commission
|
10 |
+
accepted 785,000 tonnes of sugar into intervention by operators
|
11 |
+
protesting about low rebates. This might be a determining
|
12 |
+
factor in today's result, they added.
|
13 |
+
|
14 |
+
|
reuters/test/14886
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
NORTH YEMEN CALLS SUGAR BUYING TENDER - TRADE
|
2 |
+
North Yemen has called a buying tender
|
3 |
+
for Saturday for the purchase of 30,000 tonnes of white sugar
|
4 |
+
for arrival in June, traders said.
|
5 |
+
|
6 |
+
|
reuters/test/14888
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ANHEUSER-BUSCH JOINS BID FOR SAN MIGUEL
|
2 |
+
Anheuser-Busch Companies Inc <BUD.N> has
|
3 |
+
joined several other foreign bidders for sequestered shares of
|
4 |
+
the Philippines' largest food and beverage maker San Miguel
|
5 |
+
Corp <SANM.MN>, the head of a government panel which controls
|
6 |
+
the shares told Reuters.
|
7 |
+
Ramon Diaz, Secretary of the Presidential Commission on
|
8 |
+
Good Government (PCGG), said Anheuser-Busch had told the
|
9 |
+
government it was interested in buying 14 mln "B" shares of San
|
10 |
+
Miguel. He did not disclose the offered price.
|
11 |
+
Diaz said Australian brewer Alan Bond's Bond Corp Holdings
|
12 |
+
Ltd had offered 150 pesos per share for the "B" shares.
|
13 |
+
Diaz said New York investment bank Allen and Co Inc had
|
14 |
+
earlier said it was interested in buying all 38.1 mln
|
15 |
+
sequestered shares. He told Reuters last month Elders IXL Ltd
|
16 |
+
<ELXA.S>, the Melbourne-based brewing company, had also bid for
|
17 |
+
the "B" shares.
|
18 |
+
The Hong Kong Economic Journal last month quoted a
|
19 |
+
spokesman of Australian stock broker Jacksons Ltd as saying
|
20 |
+
that <Barwon Farmlands Ltd>, an Australian firm owned 30 pct by
|
21 |
+
<Ariadne Australia Ltd>, was planning a Filipino branch in
|
22 |
+
order to buy the entire block of 38.1 mln shares.
|
23 |
+
Anheuser-Busch last year made a 150 mln dlr bid to buy <San
|
24 |
+
Miguel Brewery Ltd>, a Hong Kong listed company which is 69.65
|
25 |
+
pct owned by <Neptunia Corp Ltd>, a San Miguel Corp subsidiary.
|
26 |
+
The talks broke down last June after the two sides said
|
27 |
+
they could not agree on the terms of the sale.
|
28 |
+
|
29 |
+
|
reuters/test/14890
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ECONOMIC SPOTLIGHT - AUSTRALIAN MARKETS BOOMING
|
2 |
+
Australian markets are booming as foreign
|
3 |
+
fund managers redirect capital away from the United States and
|
4 |
+
other traditional markets, analysts said.
|
5 |
+
High short-term interest rates, a bullish stock market and
|
6 |
+
an increasingly stable currency reflect a massive inflow of
|
7 |
+
fresh funds in the last two months, largely from Japanese and
|
8 |
+
U.S. Investors, analysts polled by Reuters said.
|
9 |
+
Fund managers want quality markets to park their cash in
|
10 |
+
and have settled on Australia, Britain and Canada as they
|
11 |
+
diversify from volatile U.S. Dollar instruments, they said.
|
12 |
+
A one percentage point fall in key 10-year bonds rates in
|
13 |
+
the past month, record share prices and a 10-month high for the
|
14 |
+
currency of 0.71 U.S. Dlrs all illustrated the inflow.
|
15 |
+
Official figures on the latest inflow of investment capital
|
16 |
+
are not available, but brokers said they received almost daily
|
17 |
+
inquiries from Japan and the United States.
|
18 |
+
"These people have got trillions of dollars sloshing about
|
19 |
+
and they don't know what to do with it. Some of that is ending
|
20 |
+
up here with the attraction of high interest rates and
|
21 |
+
reasonable currency stability," National Australia Bank Ltd
|
22 |
+
economist Brian Hamley said.
|
23 |
+
"There is a 'flight to quality'," Hamley said. "Australia may
|
24 |
+
not be in the best (economic) position, but there aren't too
|
25 |
+
many other countries where you'd want to put your money."
|
26 |
+
The stronger Australian dollar was also attracting
|
27 |
+
investors taking advantage of an appreciating currency against
|
28 |
+
the volatility of the U.S. Unit, analysts said.
|
29 |
+
"We're looking a more favoured market than perhaps the U.S.
|
30 |
+
Where some people would be concerned about the value of the
|
31 |
+
U.S. Dollar," Lloyds Bank NZA Ltd chief economist Will Buttrose
|
32 |
+
said. "Why not put the money in Australia where entry is cheap
|
33 |
+
and the currency looks stable?"
|
34 |
+
But turning that capital into more permanent productive
|
35 |
+
investment depends on government economic policy, he said.
|
36 |
+
"It will only disappear if people lose confidence in the
|
37 |
+
direction in the economy," Buttrose said, adding that offshore
|
38 |
+
investors would carefully watch the government's promised tough
|
39 |
+
economic statement on May 14.
|
40 |
+
While happy to invest in bonds and other vehicles yielding
|
41 |
+
interest unobtainable elsewhere, fund managers could just as
|
42 |
+
easily reverse the flow -- particularly the Japanese, who were
|
43 |
+
badly hurt in the past by rapid falls in the Australian dollar
|
44 |
+
and hefty jumps in bond rates, analysts said.
|
45 |
+
"It will remain very edgy money. If something was not to be
|
46 |
+
delivered, if the statement wasn't considered tough enough, one
|
47 |
+
might see a substantial outflow," Buttrose said.
|
48 |
+
Offshore investors are eager to see Australia take tough
|
49 |
+
economic decisions to curb its 100 billion dlr foreign debt and
|
50 |
+
stubborn current account deficit, analysts said.
|
51 |
+
"They are giving us the benefit of the doubt and I think
|
52 |
+
they would like to leave the money here," Buttrose said.
|
53 |
+
Reserve Bank policy has also reflected the increased
|
54 |
+
interest in investment in Australia and the need to shield
|
55 |
+
Japanese investors from rapid currency fluctuations.
|
56 |
+
Reserve Governor Bob Johnston last week acknowledged an
|
57 |
+
element of targeting the rate against the yen in currency
|
58 |
+
policy when he said authorities could not take their "eyes off
|
59 |
+
the yen" because of the crucial role of Japanese investors.
|
60 |
+
Analysts said they believed the Reserve Bank had worked
|
61 |
+
successfully in recent months to keep the Australian dollar
|
62 |
+
within the range of 100 to 103 yen.
|
63 |
+
Apart from its recovery against a weak U.S. Dollar, the
|
64 |
+
Australian dollar has also risen almost three pct on a
|
65 |
+
trade-weighted basis in the last three weeks.
|
66 |
+
Offshore buying has also played a role in the booming
|
67 |
+
Australian share market. It has followed Wall Street and other
|
68 |
+
markets, but is also setting its own trend in response to the
|
69 |
+
weight of both domestic and offshore funds pouring into
|
70 |
+
equities, particularly in the gold sector.
|
71 |
+
The key all ordinaries index rose to a record 1,758.3
|
72 |
+
today, nearly 20 pct above its level at the end of 1986, while
|
73 |
+
the gold index has nearly doubled to a record 3,081.0 in the
|
74 |
+
same period.
|
75 |
+
The property sector is also sought after, with Japanese
|
76 |
+
companies that have invested heavily in the United States in
|
77 |
+
recent years turning their attention to undervalued real
|
78 |
+
estate, particularly in the tourism field.
|
79 |
+
Analysts pointed to the recent sale of Sydney's five-star
|
80 |
+
Regent Hotel to Japanese interests for more than 145 mln dlrs
|
81 |
+
as indicative of the type of property being sought.
|
82 |
+
"They think they find good value real estate here which,
|
83 |
+
with long term and fixed capital investment, is the kind of
|
84 |
+
investment Australia needs," Buttrose added.
|
85 |
+
|
86 |
+
|
reuters/test/14891
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ECONOMIC SPOTLIGHT - KUWAITI ECONOMY
|
2 |
+
Kuwait's oil-reliant and debt-ridden
|
3 |
+
economy has started to pull out of a nosedive but oil prices
|
4 |
+
will determine the pace of recovery, bankers and economists
|
5 |
+
say.
|
6 |
+
Crucial will be the ability of the 13-member OPEC to hold
|
7 |
+
oil prices around a new benchmark of 18 dlrs a barrel in the
|
8 |
+
northern hemisphere summer when demand usually slackens.
|
9 |
+
Bankers estimate the economy, measured in terms of gross
|
10 |
+
domestic product (gdp), shrank 19 pct in real terms last year
|
11 |
+
after contracting 8.1 pct the year before.
|
12 |
+
This was after taking into account inflation in consumer
|
13 |
+
prices of 1.5 pct in 1985, slowing to 1.0 pct in 1986.
|
14 |
+
Factors depressing economic activity include the
|
15 |
+
6-1/2-year-old Iran-Iraq war on Kuwait's doorstep, which
|
16 |
+
threatens the emirate's vital oil export lifeline through the
|
17 |
+
Gulf and has sapped business confidence.
|
18 |
+
But sentiment received a much-needed boost in September
|
19 |
+
when, after a series of piecemeal steps to combat a debt crisis
|
20 |
+
caused by the 1982 crash of local stock market, a comprehensive
|
21 |
+
new debt settlement program was introduced.
|
22 |
+
The share crash, result of a speculative spree in forward
|
23 |
+
trading, left 95 billion dlrs of post-dated cheques in default.
|
24 |
+
The cheques were also used as collateral for consumer
|
25 |
+
spending, thus generating an informal credit system.
|
26 |
+
Much of the debt has been watered down but big sums are
|
27 |
+
still owed by individuals and companies.
|
28 |
+
There was some 4.4 billion dinars (about 15.7 billion dlrs)
|
29 |
+
in outstanding bank credit at the end of 1986, of which
|
30 |
+
one-quarter to one-third was estimated by bankers to rank as
|
31 |
+
bad or doubtful debt. But the government has repeatedly said it
|
32 |
+
will not allow any banks to go under.
|
33 |
+
The new debt settlement scheme entails a rescheduling of
|
34 |
+
problem credit over 10 to 15 years, depending on whether
|
35 |
+
debtors have regular cash flows or not.
|
36 |
+
Banks' shareholders and depositors will have their rights
|
37 |
+
guaranteed by the government -- an edict of vital significance
|
38 |
+
in a country of only 1.7 mln people where the financial sector
|
39 |
+
is the biggest after oil.
|
40 |
+
Kuwait is better placed than any other OPEC country to ride
|
41 |
+
out the oil glut, bankers and economists say.
|
42 |
+
Kuwait has an OPEC quota of 948,000 barrels per day (bpd)
|
43 |
+
compared with production capacity of 4.0 mln bpd mentioned last
|
44 |
+
year by Oil Minister Sheikh Ali al-Khalifa al-Sabah.
|
45 |
+
But strategic diversification into downstream operations in
|
46 |
+
Europe several years ago and a hefty refining investment at
|
47 |
+
home gives it guaranteed markets abroad and enables it to sell
|
48 |
+
over one-half of its output as high-grade refined oil products.
|
49 |
+
Oil industry sources say Kuwait is able to get an average
|
50 |
+
2.00 dlrs a barrel more by selling oil in the form of processed
|
51 |
+
product such as gas oil, kerosene and naphtha, rather than as
|
52 |
+
crude.
|
53 |
+
Bankers say the rebound in oil prices is the major reason
|
54 |
+
for cautious optimism. Other reasons are low domestic
|
55 |
+
inflation, a bottoming out of the fall in imports in recent
|
56 |
+
years and signs government spending on productive sectors will
|
57 |
+
remain steady.
|
58 |
+
External accounts are in good shape, with an estimated 1.8
|
59 |
+
billion dinar current account surplus in 1986, 16 pct below
|
60 |
+
that for 1985, but still an achievement in the recession-hit
|
61 |
+
Gulf.
|
62 |
+
Kuwait's petrodollar reserves in mid-1986 were put
|
63 |
+
officially at over 80 billion dlrs, earning investment income
|
64 |
+
of the equivalent of about 3.65 billion dlrs a year.
|
65 |
+
But for the first time since the end of the oil boom, these
|
66 |
+
reserves may not be enough to prevent a "real" budget deficit for
|
67 |
+
the 1986/87 fiscal year ending June 30, bankers say.
|
68 |
+
In a budget portrayed by bankers as mildly contractionary,
|
69 |
+
revenues for 1986/87 were cut 38.6 pct and spending 11 pct,
|
70 |
+
doubling the nominal deficit to 1.33 billion dinars.
|
71 |
+
This left out income from state reserves, usually excluded
|
72 |
+
in official budget accounting, which are forecast by bankers at
|
73 |
+
up to 1.0 billion dinars in 1986/87, resulting in some
|
74 |
+
shortfall.
|
75 |
+
Bankers say it is too early to venture a forecast for
|
76 |
+
economic growth this year or next.
|
77 |
+
"It depends on oil prices," one said. "This summer is
|
78 |
+
important."
|
79 |
+
Cabinet Affairs Minister Rashid al-Rashid said last Sunday
|
80 |
+
the cabinet has ratified recommendations to rationalise state
|
81 |
+
spending in favour of productive sectors and reactivate the
|
82 |
+
economy.
|
83 |
+
He gave no details but bankers say these are expected to be
|
84 |
+
spelled out in the 1987/88 budget, possibly in June.
|
85 |
+
|
86 |
+
|
reuters/test/14892
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MALAYSIA MAY NOT MEET 1987 OIL PALM TARGET
|
2 |
+
Malaysia is unlikely to meet its
|
3 |
+
targeted output of five mln tonnes of oil palm in calendar
|
4 |
+
1987, oil palm growers told Reuters.
|
5 |
+
Output in 1987 is expected to reach around 4.5 mln tonnes,
|
6 |
+
unchanged from 1986, because of drought, low use of fertiliser
|
7 |
+
and overstressed palms, they said.
|
8 |
+
The growers were asked for their reaction to an Oil World
|
9 |
+
newsletter report that Malaysia's oil palm output is likely to
|
10 |
+
drop sharply this year.
|
11 |
+
Palm oil now sells at around 700 ringgit a tonne, or about
|
12 |
+
115 ringgit less than soybean oil, but Malaysia must sell more
|
13 |
+
palm oil to prevent a stock buildup that could damage the
|
14 |
+
industry, a leading grower told Reuters.
|
15 |
+
The country's palm oil stocks now total some 500,000 tonnes
|
16 |
+
against about 800,000 last March, the growers said.
|
17 |
+
The growers expect palm oil prices to ease later this year
|
18 |
+
due to pressure from South American and U.S. Soybean output.
|
19 |
+
The current South American oilseed harvest, mainly soybean,
|
20 |
+
is likely to be around 25.7 mln tonnes against the previous
|
21 |
+
21.7 mln tonne crop, they said.
|
22 |
+
In addition, new U.S. Soybean plantings are also expected
|
23 |
+
to enter the market around November when Malaysian palm oil
|
24 |
+
output peaks.
|
25 |
+
They said new planting of palms is also likely to slow,
|
26 |
+
with some 50,000 hectares expected to be planted with new trees
|
27 |
+
against 100,000 in 1986, although the effects of this reduction
|
28 |
+
will not be felt for about another three years.
|
29 |
+
|
30 |
+
|
reuters/test/14899
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JARDINE MATHESON SAID IT SETS TWO-FOR-FIVE BONUS ISSUE REPLACING "B" SHARES
|
2 |
+
JARDINE MATHESON SAID IT SETS TWO-FOR-FIVE BONUS ISSUE REPLACING "B" SHARES
|
3 |
+
|
4 |
+
|
reuters/test/14900
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MONIER SAYS BRITAIN'S REDLAND MAY BID FOR IT
|
2 |
+
Diversified building materials group
|
3 |
+
Monier Ltd <MNRA.S> said talks are taking place which may lead
|
4 |
+
to Britain's Redland Plc <RDLD.L> making an offer for the
|
5 |
+
Monier shares it does not already hold, chairman Bill Locke
|
6 |
+
said.
|
7 |
+
Redland already holds about 49 pct of Monier's 156.28 mln
|
8 |
+
issued shares, he said in a brief notice to the Australian
|
9 |
+
Stock Exchange.
|
10 |
+
Locke said shareholders would be advised as soon as the
|
11 |
+
discussions progressed and recommended that they keep their
|
12 |
+
shares.
|
13 |
+
Monier shares were trading at a 1987 high of 3.10 dlrs
|
14 |
+
today, up from the previous peak of 2.80 at yesterday's close,
|
15 |
+
and well above the 1987 low of 2.18 dlrs.
|
16 |
+
Monier is the largest concrete roof tile manufacturer in
|
17 |
+
Australia, the U.S. And New Zealand and the world's largest
|
18 |
+
marketer of fly ash, according to its annual report for 1985/86
|
19 |
+
ended June 30.
|
20 |
+
It recently reported first-half 1986/87 net fell to 15.02
|
21 |
+
mln dlrs from 17.09 mln a year earlier due to the Australian
|
22 |
+
housing downturn, although foreign earnings rose.
|
23 |
+
|
24 |
+
|
reuters/test/14903
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ISUZU PLANS NO INTERIM DIVIDEND
|
2 |
+
Isuzu Motor Ltd <ISUM.T> will pay no
|
3 |
+
dividend for the first half year ending April 30, 1987, as the
|
4 |
+
company is expected to mark a 12 billion yen parent company
|
5 |
+
current loss in the first half due to slow exports caused by
|
6 |
+
the yen's appreciation, a company spokesman said.
|
7 |
+
The company has paid no dividend since the year ended
|
8 |
+
October 31, 1983, when it paid five yen.
|
9 |
+
It had a 4.44 billion yen current profit in the first half
|
10 |
+
of 1985/86.
|
11 |
+
|
12 |
+
|
reuters/test/14904
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JAPANESE OFFICIAL TAKES DATA TO MICROCHIP TALKS
|
2 |
+
Ministry of International Trade and
|
3 |
+
Industry (MITI) Vice Minister Makoto Kuroda leaves for
|
4 |
+
Washington today with data he hopes will refute U.S. Charges
|
5 |
+
Japan has violated a pact on microchip trade.
|
6 |
+
A three-man Japanese trade team is already in Washington
|
7 |
+
laying the groundwork for talks between Kuroda and Deputy U.S.
|
8 |
+
Trade Representative Michael Smith aimed at persuading the U.S.
|
9 |
+
Not to impose tariffs on certain Japanese products.
|
10 |
+
But Kuroda said he is taking no new proposals. "I have
|
11 |
+
nothing in my briefcase except an explanation of the current
|
12 |
+
situation," Kuroda told the daily newspaper Asahi Shimbun.
|
13 |
+
Kuroda said the U.S. Decision was based on incorrect data
|
14 |
+
and an exaggerated sense of MITI's power to control market
|
15 |
+
forces. "The U.S. Has excessive expectations. To stabilise
|
16 |
+
supply-demand relations which have been disrupted by excess
|
17 |
+
inventories since 1985 will take some time," he said.
|
18 |
+
Kuroda also laid part of the blame for low U.S. Chip sales
|
19 |
+
in Japan on a lack of effort by American firms here.
|
20 |
+
He said if he fails in talks tomorrow and Friday to
|
21 |
+
forestall sanctions, he will seek further talks with U.S. Trade
|
22 |
+
Representative Clayton Yeutter. U.S. Officials said this week's
|
23 |
+
talks are unlikely to delay imposition of tariffs.
|
24 |
+
|
25 |
+
|
reuters/test/14907
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BELL GROUP CONFIRMS STANDARD CHARTERED STAKE
|
2 |
+
The Bell Group Ltd <BLLA.S> said it now
|
3 |
+
holds 14.9 pct of the issued capital of Standard Chartered Plc
|
4 |
+
<STCH.L> after acquiring further shares.
|
5 |
+
The one-sentence statement from Bell's headquarters
|
6 |
+
confirmed what its brokers Warburg Securities told Reuters in
|
7 |
+
London yesterday.
|
8 |
+
Bell previously held 10 pct of Standard.
|
9 |
+
Bell chairman Robert Holmes a Court, who is also a director
|
10 |
+
of Standard, was not available for comment on his company's
|
11 |
+
intentions in boosting its holding and other company officials
|
12 |
+
contacted here by Reuters declined to comment.
|
13 |
+
|
14 |
+
|
reuters/test/14909
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
NIPPON STEEL DENIES CHINA SEEKING JAPANESE PLANTS
|
2 |
+
Nippon Steel Corp <NSTC.T> denied local
|
3 |
+
newspaper reports that China has been seeking to buy steel
|
4 |
+
plants from Japanese firms which plan to suspend output under
|
5 |
+
the recently announced rationalisation program.
|
6 |
+
The Mainichi Shimbun quoted Nippon Steel as saying that
|
7 |
+
China's State Planning Commission and some Chinese firms have
|
8 |
+
asked Japanese makers to sell them steel works and rolling
|
9 |
+
mills to expand steelmaking cheaply. It named no sources.
|
10 |
+
A Nippon Steel spokesman told Reuters that China has made
|
11 |
+
no such official request, and the company was not considering
|
12 |
+
such sales at the moment.
|
13 |
+
But Mainichi quoted Nippon Steel officials as saying if
|
14 |
+
prices are reasonable, they would export their used mills to
|
15 |
+
China.
|
16 |
+
The paper said China's crude steel output totalled 52 mln
|
17 |
+
tonnes in calendar 1986 and that it plans to increase to 80 mln
|
18 |
+
by 1996.
|
19 |
+
Japan's steel industry rationalisation plan is aimed at
|
20 |
+
cutting production capacity sharply over the next few years.
|
21 |
+
|
22 |
+
|
reuters/test/14911
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JARDINE MATHESON REPLACES "B" SHARE BY BONUS ISSUE
|
2 |
+
Jardine Matheson Holdings Ltd
|
3 |
+
<JARD.HK> said it will withdraw the previously announced
|
4 |
+
four-for-one bonus issue of "B" shares and replace it by a
|
5 |
+
two-for-five bonus issue of ordinary shares.
|
6 |
+
A statement said the firm expects to pay total dividends
|
7 |
+
for 1987 of not less than 40 cents a share on the expanded
|
8 |
+
capital.
|
9 |
+
Jardine Matheson decided to withdraw its issue because of a
|
10 |
+
joint announcement earlier today by Ronald Li, chairman of the
|
11 |
+
Stock Exchange of Hong Kong, and Securities Commissioner Ray
|
12 |
+
Astin, that the listings of new "B" shares would be barred.
|
13 |
+
The official announcement said this will include the
|
14 |
+
proposal by Jardine Matheson.
|
15 |
+
But the Jardine statement quoted chairman Simon Keswick as
|
16 |
+
saying: "We continue to believe that the issuing of "B" shares
|
17 |
+
would benefit shareholders, and regret that they will not be
|
18 |
+
given the opportunity to vote on the matter at this stage."
|
19 |
+
Keswick said the "B" share issue will benefit Jardine
|
20 |
+
Matheson's shareholders by giving the firm flexibility to issue
|
21 |
+
ordinary shares for expansion in future without diluting
|
22 |
+
existing shareholders' voting rights.
|
23 |
+
However, he added: "We certainly welcome (the Secretary for
|
24 |
+
Monetary Affairs) David Nendick's referral of this very
|
25 |
+
important matter to the Standing Committee on Company Law
|
26 |
+
Reform and are hopeful that the process will lead to the
|
27 |
+
development of general principles which can be embraced by all
|
28 |
+
constituents of the Hong Kong market."
|
29 |
+
|
30 |
+
|
reuters/test/14912
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
JAPAN GIVEN LITTLE HOPE OF AVOIDING U.S. SANCTIONS
|
2 |
+
A top U.S. Official said Japan has little
|
3 |
+
chance of persuading the U.S. to drop threatened trade
|
4 |
+
sanctions, despite the efforts of a Japanese team that left for
|
5 |
+
Washington today.
|
6 |
+
Michael Armacost, Under Secretary of State for Political
|
7 |
+
Affairs, was asked at a press conference whether Japan's moves
|
8 |
+
to boost its domestic economy and open its markets could
|
9 |
+
persuade the U.S. Not to impose tariffs on Japanese imports
|
10 |
+
said, and replied: "...It is probably too early for the figures
|
11 |
+
to demonstrate that the situation has turned around and to
|
12 |
+
permit the result you have described."
|
13 |
+
Armacost said the U.S. Hopes Japan will take steps to lift
|
14 |
+
its domestic economy and reduce dependence on exports, remove
|
15 |
+
barriers to imports and settle outstanding trade issues.
|
16 |
+
"There are obvious problems at the moment in the trade area,
|
17 |
+
but we do not wish those problems to divert attention from
|
18 |
+
important areas of cooperation that continue to exist on
|
19 |
+
security and political issues," he said.
|
20 |
+
"The question is whether through cooperative actions between
|
21 |
+
our governments we can reduce the (trade) imbalance or whether
|
22 |
+
Congress takes action to reduce it through protectionist
|
23 |
+
legislation," he said.
|
24 |
+
|
25 |
+
|
reuters/test/14913
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
BANK OF JAPAN INTERVENES SOON AFTER TOKYO OPENING
|
2 |
+
The Bank of Japan bought a small amount of
|
3 |
+
dollars shortly after the opening at around 145.30 yen, dealers
|
4 |
+
said.
|
5 |
+
The central bank intervened as a medium-sized trading house
|
6 |
+
sold dollars, putting pressure on the U.S. Currency, they said.
|
7 |
+
The dollar was also supported by a major electrical
|
8 |
+
consumer goods company, which was a speculative dollar buyer at
|
9 |
+
around 145.25 yen, they added.
|
10 |
+
The dollar opened at 145.33 yen against 145.60/70 in New
|
11 |
+
York and 145.25 at the close here yesterday.
|
12 |
+
|
13 |
+
|
reuters/test/14918
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
INDONESIAN INFLATION RATE 8.8 PCT IN 1986/87
|
2 |
+
Inflation was by 8.8 pct in Indonesia
|
3 |
+
during fiscal 1986/87 to March 31, compared to 5.66 pct the
|
4 |
+
previous year, Information Minister Harmoko said after a
|
5 |
+
cabinet session to discuss the economic situation.
|
6 |
+
|
7 |
+
|
reuters/test/14919
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
U.K. MONEY MARKET GIVEN 53 MLN STG ASSISTANCE
|
2 |
+
The Bank of England said it provided the
|
3 |
+
money market with 53 mln stg assistance in the morning session.
|
4 |
+
This compares with the bank's estimate of a shortage in the
|
5 |
+
system of around 300 mln stg which it earlier revised up from
|
6 |
+
250 mln.
|
7 |
+
The central bank made outright purchases of bank bills
|
8 |
+
comprising 46 mln stg in band three at 9-3/4 pct and seven mln
|
9 |
+
stg in band four at 9-11/16 pct.
|
10 |
+
|
11 |
+
|
reuters/test/14921
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
SAN MIGUEL DEAL HIT BY MORE LAWSUITS
|
2 |
+
A bid by San Miguel Corp (SMC) <SANM.MN>
|
3 |
+
to buy back 38.1 mln sequestered shares from United Coconut
|
4 |
+
Planters Bank (UCPB) has been hit by two new lawsuits, sources
|
5 |
+
in the Philippine food and brewery company said.
|
6 |
+
A Manila court yesterday issued an injunction barring UCPB
|
7 |
+
from selling the shares, which represent 31 pct of SMC's
|
8 |
+
outstanding capital stock of 121 mln shares, until hearings on
|
9 |
+
April 21 on a petition filed by Eduardo Cojuangco, a former
|
10 |
+
chairman of both SMC and UCPB.
|
11 |
+
Cojuangco said the Coconut Industry Investment Fund (CIIF)
|
12 |
+
and 1.4 mln farmers were the rightful owners of the shares.
|
13 |
+
Cojuangco said the shares were held in trust by UCPB and
|
14 |
+
represented a blue chip investment. His petition said UCPB's
|
15 |
+
plans to sell the shares to SMC were "a serious breach of
|
16 |
+
fiduciary duties."
|
17 |
+
The SMC sources said the proposed share sale could also be
|
18 |
+
held up by a second derivative suit filed before the Securities
|
19 |
+
and Exchange Commission (SEC) by Eduardo de los Angeles, a
|
20 |
+
government nominee on the company's board.
|
21 |
+
De los Angeles, who represents SMC's minority stockholders,
|
22 |
+
asked the SEC to block the transaction, approved last week by
|
23 |
+
the company's board.
|
24 |
+
On April 2 the board sanctioned the repurchase of the
|
25 |
+
sequestered shares for 4.79 billion pesos at 126 pesos per
|
26 |
+
share. De los Angeles told the SEC the company's retained
|
27 |
+
earnings of 1.33 billion pesos would be wiped out by the
|
28 |
+
purchase of the shares and would prevent the declaration of
|
29 |
+
dividends.
|
30 |
+
De los Angeles said the share purchase would also violate
|
31 |
+
an SMC agreement with its creditors to maintain a 2.2-to-1 debt
|
32 |
+
to equity ratio. He quoted SMC's chief financial director Ramon
|
33 |
+
del Rosario as telling the board that the transaction would
|
34 |
+
boost the ratio to 2.5-to-1.
|
35 |
+
In petitioning the SEC, de los Angeles amended an earlier
|
36 |
+
suit two weeks ago in which he charged SMC Chairman Andres
|
37 |
+
Soriano III and nine other directors of violating their duties.
|
38 |
+
De los Angeles' earlier complaint related to SMC assuming
|
39 |
+
last December a 26.5 mln dlr loan contracted by SMC's Hong Kong
|
40 |
+
subsidiary <Neptunia Corp> for a down payment on the shares.
|
41 |
+
The loan assumption was again ratified by last week's board
|
42 |
+
meeting.
|
43 |
+
An arbitration panel set up by President Corazon Aquino to
|
44 |
+
resolve the ownership issue is expected to submit its report by
|
45 |
+
April 15.
|
46 |
+
"The amended suit filed by Eduardo de los Angeles is part of
|
47 |
+
a continuing attempt by certain elements, in complete disregard
|
48 |
+
of the facts and with questionable motives, to delay an early
|
49 |
+
disposition of the sequestered shares," San Miguel Corp said in
|
50 |
+
a statement.
|
51 |
+
"Coming as it does, when San Miguel Corp and UCPB have
|
52 |
+
reached agreement on the price of the shares and the method of
|
53 |
+
payment, this suit is in direct contravention of the
|
54 |
+
government's expressed desire to reach an amicable settlement
|
55 |
+
of the controversy by April 15," the statement added.
|
56 |
+
A San Miguel spokesman said he had no comment on
|
57 |
+
Cojuangco's court petition, adding: "Any statement coming from
|
58 |
+
us might be interpreted as adversarial."
|
59 |
+
Meanwhile, Ramon Diaz, the head of a government panel which
|
60 |
+
sequestered the shares last year, said Soriano was not eligible
|
61 |
+
to buy the major portion of the shares because he was a United
|
62 |
+
States citizen.
|
63 |
+
The sequestered shares are split into 24 mln "A" shares,
|
64 |
+
which can only be owned by Filipinos, and 14 mln "B" shares which
|
65 |
+
are available to foreign buyers.
|
66 |
+
SMC sources said Soriano personally was not among
|
67 |
+
prospective buyers. They said the shares would be purchased by
|
68 |
+
the <A.Soriano> group of companies, SMC, Neptunia and unnamed
|
69 |
+
institutional investors. Soriano was named as one of the buyers
|
70 |
+
in a bid in March 1986 for 33 mln shares controlled by UCPB.
|
71 |
+
The sale was aborted when Diaz's Presidential Commission on
|
72 |
+
Good Government sequestered the shares on suspicion they were
|
73 |
+
owned by Cojuangco, a close associate of former President
|
74 |
+
Ferdinand Marcos. Cojuangco lives in self-imposed exile in the
|
75 |
+
U.S.. The shares grew to 38.1 mln after a 15 pct stock dividend
|
76 |
+
announced last June.
|
77 |
+
"We have no objection to Soriano buying the "B" shares," Diaz
|
78 |
+
told Reuters. "But everything is on hold now."
|
79 |
+
The SMC spokesman said he did not know if the controversy
|
80 |
+
would be resolved before the company's annual stockholders'
|
81 |
+
meeting, scheduled for May 14.
|
82 |
+
San Miguel Corp reported sales revenue of 12.2 billion
|
83 |
+
pesos in 1986, 11 pct above its 10.9 billion peso sales in
|
84 |
+
1985. It said unaudited net profit was in the neighbourhood of
|
85 |
+
700 mln pesos, an increase of about 50 pct over 1985.
|
86 |
+
|
87 |
+
|