This repository was archived by the owner on May 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.xml
3093 lines (3093 loc) · 783 KB
/
data.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<data>
<sentence id="1">
<phrase type="np" id="1" ne="EVENT">Kera\NN</phrase><phrase type="other">untuk\SC amankan\VB</phrase><phrase type="np" id="2" ne="OTHER">pesta\NN olahraga\NN</phrase>
</sentence>
<sentence id="2">
<phrase type="np-sbj" id="3" ne="TITLE|LOCATION">Pemerintah\NNP kota\NNP Delhi\NNP</phrase><phrase type="other">mengerahkan\VB</phrase><phrase type="np" id="4" ne="OTHER">monyet\NN</phrase><phrase type="other">untuk\SC mengusir\VB</phrase><phrase type="np" id="5" ne="OTHER">monyet-monyet\NN lain\JJ</phrase><phrase type="other">yang\SC berbadan\VB lebih\RB kecil\JJ dari\IN arena\NN</phrase><phrase type="np" id="6" ne="FACILITY|OTHER">Pesta\NNP Olahraga\NNP Persemakmuran.\NNP</phrase>
</sentence>
<sentence id="3">
<phrase type="np-sbj" id="7" ne="OTHER">Beberapa\CD laporan\NN</phrase><phrase type="other">menyebutkan\VB</phrase><phrase type="np-sbj" id="8" ne="OTHER|NUM">setidaknya\RB 10\CD monyet\NN</phrase><phrase type="other">ditempatkan\VB di\IN luar\NN arena\NN</phrase><phrase type="np" id="9" ne="THINGS">lomba\NN dan\CC pertandingan\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="10" ne="OTHER">ibukota\NNP India.\NNP</phrase>
</sentence>
<sentence id="4">
<phrase type="np-sbj" id="11" ne="FACILITY|LOCATION" coref="3">Pemkot\NNP Delhi\NNP</phrase><phrase type="other">memiliki\VB</phrase><phrase type="np" id="12" ne="PERSON">28\CD monyet\NN</phrase><phrase type="other">dan\CC berencana\VB mendatangkan\VB</phrase><phrase type="np" id="13" ne="NUM">10\CD monyet\NN sejenis\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="14" ne="OTHER">negara\NNP bagian\NNP Rajasthan.\NNP</phrase>
</sentence>
<sentence id="5">
<phrase type="np" id="15" ne="OTHER">Jumlah\NN monyet\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="16" ne="OTHER|LOCATION" coref="10">ibukota\NNP India\NNP</phrase><phrase type="other">mencapai\VB</phrase><phrase type="np" id="17" ne="OTHER">ribuan,\CD</phrase><phrase type="np-sbj" id="18" ne="OTHER">sebagian\NN besar\NN</phrase><phrase type="other">berada\VB di\IN</phrase><phrase type="np" id="19" ne="OTHER">kantor-kantor\NN pemerintah\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="20" ne="OTHER">hewan\NN ini\PR</phrase><phrase type="other">dianggap\VB mengganggu\VB</phrase><phrase type="np" id="21" ne="OTHER">ketertiban\NN umum.\JJ</phrase>
</sentence>
<sentence id="6">
<phrase type="np" id="22" ne="OTHER">Jenis\NN monyet\NN</phrase><phrase type="other">yang\SC dikerahkan\VB</phrase><phrase type="np" id="23" ne="OTHER" coref="11">pemkot\NN</phrase><phrase type="other">berbadan\VB besar,\JJ berekor\VB panjang,\JJ dan\CC memiliki\VB wajah\NN berwarna\VB hitam.\JJ</phrase>
</sentence>
<sentence id="7">
<phrase type="np-sbj" id="24" ne="OTHER">Monyet\NN ini\PR</phrase><phrase type="other">diikat\VB dengan\IN</phrase><phrase type="np" id="25" ne="OTHER">tali\NN panjang\JJ</phrase><phrase type="other">dan\CC pelatih\NN yang\SC mengawasi\VB</phrase><phrase type="np" id="26" ne="OTHER">mereka\PRP</phrase><phrase type="other">akan\MD melepas\VB</phrase><phrase type="np" id="27" ne="OTHER">tali\NN</phrase><phrase type="other">begitu\SC</phrase><phrase type="np-sbj" id="28" ne="OTHER|THINGS">monyet-monyet\NN kecil\JJ lain\JJ</phrase><phrase type="other">mendekat.\VB</phrase>
</sentence>
<sentence id="8">
<phrase type="np-sbj" id="29" ne="ORGANIZATION|LOCATION">Kantor\NNP berita\NNP AFP\NNP</phrase><phrase type="other">melaporkan\VB stadion\NN</phrase><phrase type="np" id="30" ne="OTHER">tinju\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="31" ne="OTHER">hockey\FW</phrase><phrase type="other">mendapatkan\VB</phrase><phrase type="np" id="32" ne="OTHER">perhatian\NN khusus\JJ</phrase><phrase type="other">karena\SC sering\RB diserbu\VB</phrase><phrase type="np" id="33" ne="OTHER">monyet.\NN</phrase>
</sentence>
<sentence id="9">
<phrase type="np-sbj" id="34" ne="PERSON|OTHER">Monyet\NN besar\JJ</phrase><phrase type="other">akan\MD dikerahkan\VB di\IN</phrase><phrase type="np" id="35" ne="NUM">dua\CD stadion\NN</phrase><phrase type="other">untuk\SC mengusir\VB serbuan\NN</phrase><phrase type="np" id="36" ne="OTHER">monyet\NN kecil\JJ</phrase>
</sentence>
<sentence id="10">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="37" ne="ORGANIZATION|OTHER">Monyet\NN besar\JJ</phrase><phrase type="other">akan\MD dikerahkan\VB di\IN</phrase><phrase type="np" id="38" ne="FACILITY|OTHER">dua\CD stadion\NN tersebut\PR</phrase><phrase type="other">untuk\SC mengusir\VB serbuan\NN</phrase><phrase type="np" id="39" ne="THINGS">monyet\NN kecil,\JJ</phrase><phrase type="other">"\Z kata\VB</phrase><phrase type="np" id="40" ne="PERSON|OTHER">Devender\NNP Prasad,\NNP</phrase><phrase type="other">pejabat\NN</phrase><phrase type="np" id="41" ne="OTHER|LOCATION" coref="23">pemerintah\NNP kota\NNP Delhi\NNP</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="42" ne="ORGANIZATION|OTHER" coref="29">kantor\NNP berita\NNP AFP.\NNP</phrase>
</sentence>
<sentence id="11">
<phrase type="other">Selama\IN</phrase><phrase type="np" id="43" ne="OTHER">bertahun-tahun\CD</phrase><phrase type="np-sbj" id="44" ne="OTHER">monyet\NN</phrase><phrase type="other">mengganggu\VB</phrase><phrase type="np" id="45" ne="OTHER">warga\NN Delhi.\NNP</phrase>
</sentence>
<sentence id="12">
<phrase type="np-sbj" id="46" ne="OTHER" coref="44">Binatang\NN ini\PR</phrase><phrase type="other">menaiki\VB</phrase><phrase type="np" id="47" ne="OTHER">kereta\NN metro\NN</phrase><phrase type="other">dan\CC bahkan\RB berkeliaran\VB di\IN</phrase><phrase type="np" id="48" ne="OTHER|FACILITY">kompleks\NN gedung\NN parlemen.\NN</phrase>
</sentence>
<sentence id="13">
<phrase type="other">Belum\NEG lama\JJ ini\PR</phrase><phrase type="np-sbj" id="49" ne="OTHER">kawanan\NN monyet\NN</phrase><phrase type="other">menyerbu\VB</phrase><phrase type="np" id="50" ne="OTHER|TITLE">kantor\NN perdana\NN menteri\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="51" ne="ORGANIZATION|OTHER">departemen\NN pertahanan.\NN</phrase>
</sentence>
<sentence id="14">
<phrase type="np-sbj" id="52" ne="OTHER" coref="46">Binatang\NN ini\PR</phrase><phrase type="other">tidak\NEG bisa\MD dibunuh\VB karena\SC</phrase><phrase type="np-sbj" id="53" ne="OTHER|LOCATION">masyarakat\NN India\NNP</phrase><phrase type="other">menganggap\VB</phrase><phrase type="np" id="54" ne="OTHER" coref="52">mereka\PRP</phrase><phrase type="other">suci.\JJ</phrase>
</sentence>
<sentence id="15">
<phrase type="other">Selain\CC harus\MD mengusir\VB</phrase><phrase type="np" id="55" ne="OTHER">kawanan\NN monyet,\NN</phrase><phrase type="np-sbj" id="56" ne="OTHER|LOCATION" coref="41">pemkot\NNP Delhi\NNP</phrase><phrase type="other">juga\RB kesulitan\VB mengatasi\VB</phrase><phrase type="np" id="57" ne="TITLE|OTHER">wabah\NN demam\NN berdarah.\NN</phrase>
</sentence>
<sentence id="16">
<phrase type="np" id="58" ne="OTHER">Curah\NN hujan\NN</phrase><phrase type="other">yang\SC tinggi\JJ menyebabkan\VB</phrase><phrase type="np" id="59" ne="OTHER">banyak\CD genangan,\NN</phrase><phrase type="np" id="60" ne="OTHER">tempat\NN ideal\JJ</phrase><phrase type="other">bagi\IN</phrase><phrase type="np" id="61" ne="OTHER">nyamuk\NN aedes\NNP</phrase><phrase type="other">berkembang\VB biak.\VB</phrase>
</sentence>
<sentence id="17">
<phrase type="np-sbj" id="62" ne="ORGANIZATION" coref="56">Pemkot\NN</phrase><phrase type="other">telah\MD menempatkan\VB</phrase><phrase type="np" id="63" ne="OTHER">ikan\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="64" ne="OTHER">berbagai\CD genangan\NN air\NN</phrase><phrase type="other">untuk\SC memangsa\VB</phrase><phrase type="np" id="65" ne="OTHER">telur\NN nyamuk.\NN</phrase>
</sentence>
<sentence id="18">
<phrase type="np-sbj" id="66" ne="TITLE|ORGANIZATION">Miliarder\NN AS\NNP</phrase><phrase type="other">jamu\VB</phrase><phrase type="np" id="67" ne="ORGANIZATION|LOCATION">orang\NN kaya\NN Cina\NNP</phrase>
</sentence>
<sentence id="19">
<phrase type="np" id="68" ne="THINGS">Dua\CD miliarder\NN Amerika\NNP</phrase><phrase type="np" id="69" ne="THINGS">Bill\NNP Gates\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="70" ne="THINGS">Warren\NNP Buffett\NNP</phrase><phrase type="other">akan\MD mengadakan\VB</phrase><phrase type="np" id="71" ne="OTHER">jamuan\NN makan\NN malam\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="72" ne="LOCATION">Beijing\NNP</phrase><phrase type="other">bagi\IN</phrase><phrase type="np" id="73" ne="OTHER">sejumlah\CD orang\NN terkaya\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="74" ne="OTHER">Cina.\NNP</phrase>
</sentence>
<sentence id="20">
<phrase type="np-sbj" id="75" ne="PERSON|OTHER">Gates\NNP dan\CC Buffett\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="76" ne="OTHER" coref="75">mereka\PRP</phrase><phrase type="other">berada\VB di\IN</phrase><phrase type="np" id="77" ne="LOCATION" coref="74">Cina\NNP</phrase><phrase type="other">untuk\SC mempelajari\VB</phrase><phrase type="np" id="78" ne="OTHER">kegiatan\NN amal\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="79" ne="OTHER" coref="77">negara\NN itu.\PR</phrase>
</sentence>
<sentence id="21">
<phrase type="np-sbj" id="80" ne="PERSON">Banyak\CD orang\NN</phrase><phrase type="other">menduga\VB</phrase><phrase type="np" id="81" ne="OTHER" coref="76">mereka\PRP</phrase><phrase type="other">ingin\RB membujuk\VB</phrase><phrase type="np" id="82" ne="OTHER">para\DT tamu\NN</phrase><phrase type="other">agar\SC</phrase><phrase type="np" id="83" ne="OTHER">lebih\RB banyak\CD</phrase><phrase type="other">menyumbang\VB untuk\IN</phrase><phrase type="np" id="84" ne="OTHER">amal.\NN</phrase>
</sentence>
<sentence id="22">
<phrase type="np" id="85" ne="PERSON">Kedua\CD</phrase><phrase type="np" id="86" ne="PERSON">orang\NN terkaya\JJ dunia\NN</phrase><phrase type="other">itu\PR sudah\MD berhasil\VB membujuk\VB</phrase><phrase type="np" id="87" ne="OTHER">banyak\CD orang\NN</phrase><phrase type="other">yang\SC sangat\RB kaya\JJ di\IN</phrase><phrase type="np" id="88" ne="LOCATION">Amerika\NNP</phrase><phrase type="other">agar\SC menyumbangkan\VB separuh\CD kekayaan\NN</phrase><phrase type="np" id="89" ne="OTHER" coref="87">mereka.\PRP</phrase>
</sentence>
<sentence id="23">
<phrase type="other">Ada\VB</phrase><phrase type="np" id="90" ne="OTHER">kerahasiaan\NN</phrase><phrase type="other">mengenai\IN</phrase><phrase type="np" id="91" ne="OTHER">acara\NN itu,\PR</phrase><phrase type="np-sbj" id="92" ne="OTHER">pihak\NN penyelenggara\NN</phrase><phrase type="other">tidak\NEG membeberkan\VB</phrase><phrase type="np" id="93" ne="OTHER">nama-nama\NN tamu.\NN</phrase>
</sentence>
<sentence id="24">
<phrase type="np" id="94" ne="OTHER|NUM">Salah\CD satu\CD orang\NN</phrase><phrase type="other">yang\SC akan\MD menghadiri\VB</phrase><phrase type="np" id="95" ne="OTHER">jamuan\NN makan\NN malam\NN</phrase><phrase type="other">itu\PR adalah\VB</phrase><phrase type="np" id="96" ne="PERSON|OTHER">Chen\NNP Guangbiao,\NNP</phrase><phrase type="np" id="97" ne="OTHER" coref="96">seorang\NND miliarder\NN</phrase><phrase type="other">yang\SC meraup\VB</phrase><phrase type="np" id="98" ne="OTHER">kekayaan\NN</phrase><phrase type="other">dari\IN bisnis\NN mendaur\VB ulang\VB</phrase><phrase type="np" id="99" ne="OTHER">sampah\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="100" ne="ORGANIZATION|OTHER">industri\NN bangunan.\NN</phrase>
</sentence>
<sentence id="25">
<phrase type="np" id="101" ne="PERSON" coref="97">Dia\PRP</phrase><phrase type="other">mengatakan\VB kepada\IN</phrase><phrase type="np" id="102" ne="PERSON">BBC\NNP</phrase><phrase type="other">bahwa\SC</phrase><phrase type="np" id="103" ne="OTHER" coref="101">dia\PRP</phrase><phrase type="other">sudah\MD berencana\VB menyumbangkan\VB seluruh\CD harta\NN</phrase><phrase type="np" id="104" ne="OTHER" coref="103">nya\PRP</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="105" ne="OTHER">amal\NN</phrase><phrase type="other">bila\SC</phrase><phrase type="np" id="106" ne="OTHER" coref="104">dia\PRP</phrase><phrase type="other">meninggal.\VB</phrase>
</sentence>
<sentence id="26">
<phrase type="other">"\Z Beramal\VB dan\CC membantu\VB sudah\MD menjadi\VB</phrase><phrase type="np" id="107" ne="OTHER">bagian\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="108" ne="OTHER|LOCATION">budaya\NN Cina\NNP</phrase><phrase type="other">selama\IN</phrase><phrase type="np" id="109" ne="TIME">5.000\CD tahun.\NN</phrase>
</sentence>
<sentence id="27">
<phrase type="other">Tetapi\CC</phrase><phrase type="np-sbj" id="110" ne="TITLE">kegiatan\NN amal\NN resmi\JJ</phrase><phrase type="other">baru\MD dikembangkan\VB di\IN</phrase><phrase type="np" id="111" ne="LOCATION">Cina\NNP</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="112" ne="TIME|OTHER">30\CD tahun\NN terakhir,\JJ</phrase><phrase type="other">sejak\SC</phrase><phrase type="np" id="113" ne="OTHER">kami\PRP</phrase><phrase type="other">menerapkan\VB</phrase><phrase type="np" id="114" ne="OTHER">reformasi\NN ekonomi.\NN</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="28">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="115" ne="OTHER">Banyak\CD orang\NN</phrase><phrase type="other">baru\MD mulai\MD menjadi\VB kaya\JJ dan\CC</phrase><phrase type="np" id="116" ne="OTHER">kami\PRP</phrase><phrase type="other">baru-baru\RB ini\RB saja\RB bisa\MD memberi\VB</phrase><phrase type="np" id="117" ne="OTHER">makan\NN</phrase><phrase type="np" id="118" ne="OTHER">diri\NN sendiri,\NN</phrase><phrase type="other">"\Z kata\VB</phrase><phrase type="np" id="119" ne="OTHER" coref="106">nya.\PRP</phrase>
</sentence>
<sentence id="29">
<phrase type="other">Menyumbangkan\VB</phrase><phrase type="np" id="120" ne="PERSON">uang\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="121" ne="OTHER">amal\NN</phrase><phrase type="other">belum\NEG begitu\RB berkembang\VB di\IN</phrase><phrase type="np" id="122" ne="LOCATION" coref="111">Cina\NNP</phrase><phrase type="other">sebaik\JJ di\IN</phrase><phrase type="np" id="123" ne="OTHER">banyak\CD negara\NN lain.\JJ</phrase>
</sentence>
<sentence id="30">
<phrase type="other">Kalau\SC</phrase><phrase type="np-sbj" id="124" ne="OTHER|TIME">jamuan\NN makan\NN malam\NN ini\PR</phrase><phrase type="other">bisa\MD dikatakan\VB berhasil,\VB</phrase><phrase type="np-sbj" id="125" ne="OTHER">keberhasilan\NN itu\PR</phrase><phrase type="other">adalah\VB mendorong\VB</phrase><phrase type="np" id="126" ne="OTHER">perdebatan\NN</phrase><phrase type="other">mengenai\IN apa\SC arti\NN beramal\VB bagi\IN yang\SC membutuhkan.\VB</phrase>
</sentence>
<sentence id="31">
<phrase type="other">Kisah\NN</phrase><phrase type="np" id="127" ne="PERSON">pendiri\NN Facebook\NNP</phrase><phrase type="other">dibuat\VB</phrase><phrase type="np" id="128" ne="OTHER">komik\NN</phrase>
</sentence>
<sentence id="32">
<phrase type="other">Kisah\NN</phrase><phrase type="np" id="129" ne="TITLE" coref="127">pendiri\NN Facebook\NNP</phrase><phrase type="np" id="130" ne="PERSON">Mark\NNP Zuckerberg\NNP</phrase><phrase type="other">akan\MD diceritakan\VB dalam\IN</phrase><phrase type="np" id="131" ne="LOCATION|OTHER">sebuah\NND komik\NN biografi.\NN</phrase>
</sentence>
<sentence id="33">
<phrase type="np" id="132" ne="EVENT">Komik\NN</phrase><phrase type="other">dengan\IN judul\NN</phrase><phrase type="np" id="133" ne="LOCATION" coref="130">Mark\NNP Zuckerberg\NNP</phrase><phrase type="other">:\Z</phrase><phrase type="np" id="134" ne="LOCATION|OTHER" coref="133">Pencipta\NN Facebook,\NNP</phrase><phrase type="other">akan\MD tersedia\VB di\IN</phrase><phrase type="np" id="135" ne="OTHER">pasar\NN</phrase><phrase type="other">sebelum\SC</phrase><phrase type="np" id="136" ne="TIME">Desember\NNP 2010,\CD</phrase><phrase type="np" id="137" ne="OTHER">demikian\PR</phrase><phrase type="other">pernyataan\NN</phrase><phrase type="np" id="138" ne="OTHER|LOCATION">penerbit\NNP Bluewater\NNP Productions.\NNP</phrase>
</sentence>
<sentence id="34">
<phrase type="np-sbj" id="139" ne="OTHER|PERSON">Penulis\NNP Jerome\NNP Maida\NNP</phrase><phrase type="other">menyebut\VB</phrase><phrase type="np-sbj" id="140" ne="OTHER|THINGS">kisah\NN Zuckerberg\NNP</phrase><phrase type="other">"\Z mengagumkan\VB "\Z dan\CC "\Z luar\JJ biasa\JJ ".\Z</phrase>
</sentence>
<sentence id="35">
<phrase type="np" id="141" ne="THINGS">Sebuah\NND film\NN</phrase><phrase type="other">mengenai\IN</phrase><phrase type="np" id="142" ne="PERSON">Facebook\NNP</phrase><phrase type="other">dengan\IN judul\NN</phrase><phrase type="np" id="143" ne="PERSON|OTHER">The\NNP Social\NNP Network,\NNP</phrase><phrase type="other">juga\RB akan\MD dirilis\VB pada\IN</phrase><phrase type="np" id="144" ne="OTHER|TIME">tanggal\NN 15\CD Oktober\NNP nanti.\NN</phrase>
</sentence>
<sentence id="36">
<phrase type="other">Film\NN yang\SC ditulis\VB oleh\IN pencipta\NN serial\NN</phrase><phrase type="np" id="145" ne="ORGANIZATION|TITLE">West\NNP Wing\NNP</phrase><phrase type="np" id="146" ne="PERSON">Aaron\NNP Sorkin\NNP</phrase><phrase type="other">dan\CC disutradarai\VB oleh\IN</phrase><phrase type="np" id="147" ne="ORGANIZATION">David\NNP Fincher\NNP</phrase><phrase type="other">yang\SC pernah\MD menggarap\VB film\NN</phrase><phrase type="np" id="148" ne="LOCATION|OTHER|THINGS">Fight\NNP '\NNP s\NNP Club\NNP</phrase><phrase type="other">ini\PR sebenarnya\RB belum\NEG memperoleh\VB izin\NN</phrase><phrase type="np" id="149" ne="FACILITY|OTHER" coref="134">Mark\NNP Zuckerberg.\NNP</phrase>
</sentence>
<sentence id="37">
<phrase type="other">Pemuda\NN berusia\VB</phrase><phrase type="np" id="150" ne="TIME">26\CD tahun\NN</phrase><phrase type="other">ini\PR mengatakan\VB "\Z</phrase><phrase type="np" id="151" ne="OTHER" coref="149">Saya\PRP</phrase><phrase type="other">mengharapkan\VB tidak\NEG ada\VB orang\NN yang\SC membuat\VB</phrase><phrase type="np" id="152" ne="OTHER">film\NN</phrase><phrase type="other">tentang\IN</phrase><phrase type="np" id="153" ne="OTHER" coref="149">saya\PRP</phrase><phrase type="other">ketika\SC</phrase><phrase type="np" id="154" ne="OTHER" coref="153">saya\PRP</phrase><phrase type="other">masih\MD hidup,\VB "\Z kata\VB</phrase><phrase type="np" id="155" ne="OTHER" coref="154">nya\PRP</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="156" ne="OTHER">sebuah\NND konferensi\NN teknologi\NN</phrase><phrase type="np" id="157" ne="TIME">Juni\NNP silam.\NN</phrase>
</sentence>
<sentence id="38">
<phrase type="other">Hingga\IN</phrase><phrase type="np" id="158" ne="TIME">Juli\NNP 2010\CD</phrase><phrase type="np-sbj" id="159" ne="OTHER|NUM">lebih\RB dari\IN 500\CD juta\CD</phrase><phrase type="other">yang\SC terdaftar\VB dalam\IN situs\NN</phrase><phrase type="np" id="160" ne="OTHER">jejaring\NN sosial\JJ</phrase><phrase type="other">tersebut.\PR</phrase>
</sentence>
<sentence id="39">
<phrase type="other">Hanya\RB butuh\VB</phrase><phrase type="np" id="161" ne="TIME">enam\CD tahun\NN</phrase><phrase type="other">bagi\IN</phrase><phrase type="np" id="162" ne="LOCATION" coref="155">Zuckerberg\NNP</phrase><phrase type="other">untuk\SC bisa\MD mencapai\VB</phrase><phrase type="np" id="163" ne="OTHER">kesuksesan\NN</phrase><phrase type="other">seperti\IN</phrase><phrase type="np" id="164" ne="THINGS|OTHER">sekarang\NN ini,\PR</phrase><phrase type="other">setelah\SC sebelum\SC</phrase><phrase type="np" id="165" ne="OTHER">nya\PRP</phrase><phrase type="np" id="166" ne="OTHER" coref="162">dia\PRP</phrase><phrase type="other">meluncurkan\VB</phrase><phrase type="np" id="167" ne="OTHER">situs\NN ini\PR</phrase><phrase type="other">saat\SC masih\MD duduk\VB sebagai\IN</phrase><phrase type="np" id="168" ne="OTHER">mahasiswa\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="169" ne="ORGANIZATION|OTHER">Universitas\NNP Harvard.\NNP</phrase>
</sentence>
<sentence id="40">
<phrase type="np" id="170" ne="TIME">September\NNP silam,\NN</phrase><phrase type="np-sbj" id="171" ne="TIME">majalah\NNP Forbes\NNP</phrase><phrase type="other">memasukkan\VB</phrase><phrase type="np" id="172" ne="OTHER" coref="166">dia\PRP</phrase><phrase type="other">dalam\IN daftar\NN</phrase><phrase type="np" id="173" ne="PERSON">35\CD orang\NN terkaya\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="174" ne="LOCATION">Amerika\NNP Serikat\NNP</phrase><phrase type="other">dengan\SC</phrase><phrase type="np-sbj" id="175" ne="OTHER">total\NN kekayaan\NN</phrase><phrase type="other">diperkirakan\VB mencapai\VB</phrase><phrase type="np" id="176" ne="THINGS|NUM">US\NNP $\SYM 6,4\CD miliar.\CD</phrase>
</sentence>
<sentence id="41">
<phrase type="other">Tetapi\CC langkah\NN</phrase><phrase type="np" id="177" ne="OTHER" coref="172">dia\PRP</phrase><phrase type="other">menuju\VB</phrase><phrase type="np" id="178" ne="OTHER">kesuksesan\NN</phrase><phrase type="other">tidak\NEG lah\RP mulus.\JJ</phrase>
</sentence>
<sentence id="42">
<phrase type="np" id="179" ne="PERSON">Dua\CD orang\NND</phrase><phrase type="np" id="180" ne="PERSON">rekan\NN Zuckerberg\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="181" ne="LOCATION">Harvard\NNP</phrase><phrase type="other">mengklaim\VB ide\NN</phrase><phrase type="np" id="182" ne="OTHER|LOCATION">pembuatan\NN Facebook\NNP</phrase><phrase type="other">datang\VB dari\IN</phrase><phrase type="np" id="183" ne="OTHER" coref="180">mereka.\PRP</phrase>
</sentence>
<sentence id="43">
<phrase type="np" id="184" ne="PERSON" coref="183">Mereka\PRP</phrase><phrase type="other">terlibat\VB dalam\IN</phrase><phrase type="np" id="185" ne="OTHER">sengketa\NN hukum\NN</phrase><phrase type="other">yang\SC berlarut-larut\VB pada\IN</phrase><phrase type="np" id="186" ne="OTHER|TIME">tahun\NN 2008\CD</phrase><phrase type="other">dan\CC diakhiri\VB dengan\IN pembayaran\NN yang\SC dirahasiakan\VB jumlah\NN</phrase><phrase type="np" id="187" ne="OTHER">nya\PRP</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="188" ne="ORGANIZATION|OTHER" coref="184">Cameron\NNP dan\CC Tyler\NNP</phrase><phrase type="other">Winklevoss,\NNP yang\SC</phrase><phrase type="np" id="189" ne="OTHER">kini\NN</phrase><phrase type="other">juga\RB membuat\VB situs\NN</phrase><phrase type="np" id="190" ne="OTHER">jejaring\NN sosial\JJ</phrase><phrase type="other">bernama\VB</phrase><phrase type="np" id="191" ne="OTHER">ConnectU.\NNP</phrase>
</sentence>
<sentence id="44">
<phrase type="other">Perebutan\NN</phrase><phrase type="np" id="192" ne="EVENT">jamrud\NNP Bahia\NNP</phrase><phrase type="other">raksasa\JJ</phrase>
</sentence>
<sentence id="45">
<phrase type="np-sbj" id="193" ne="LOCATION">Jaksa\NN Kalifornia\NNP</phrase><phrase type="other">akan\MD mulai\MD menanyai\VB</phrase><phrase type="np" id="194" ne="OTHER">sejumlah\CD pihak\NN</phrase><phrase type="other">untuk\SC menentukan\VB mengenai\IN</phrase><phrase type="np" id="195" ne="OTHER">kepemilikan\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="196" ne="THINGS">jamrud\NN raksasa,\JJ</phrase><phrase type="other">yang\SC disebut\VB sebagai\IN terbesar.\JJ</phrase>
</sentence>
<sentence id="46">
<phrase type="np" id="197" ne="FACILITY|ORGANIZATION">Jamrud\NNP Bahia\NNP</phrase><phrase type="other">dinamakan\VB sesuai\JJ lokasi\NN penemuan\NN</phrase><phrase type="np" id="198" ne="OTHER">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="199" ne="OTHER|FACILITY">salah\CD satu\CD daerah\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="200" ne="LOCATION">Brasil\NNP</phrase><phrase type="other">memiliki\VB berat\NN</phrase><phrase type="np" id="201" ne="FACILITY|OTHER">380\CD kg.\NND</phrase>
</sentence>
<sentence id="47">
<phrase type="other">Diperkirakan\VB</phrase><phrase type="np-sbj" id="202" ne="TITLE|OTHER">jamrud\NN raksasa\JJ itu\PR</phrase><phrase type="other">bernilai\VB</phrase><phrase type="np" id="203" ne="OTHER|THINGS|NUM">lebih\RB dari\IN US\NNP $\SYM 370\CD juta\CD</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="204" ne="OTHER|NUM|THINGS">setidaknya\RB enam\CD orang\NN</phrase><phrase type="other">mengklaim\VB kepemilikan\NN</phrase><phrase type="np" id="205" ne="OTHER">hak\NN</phrase><phrase type="other">atas\IN</phrase><phrase type="np" id="206" ne="OTHER">batu\NN tersebut.\PR</phrase>
</sentence>
<sentence id="48">
<phrase type="np-sbj" id="207" ne="ORGANIZATION" coref="193">Jaksa\NN</phrase><phrase type="other">akan\MD mendengarkan\VB</phrase><phrase type="np" id="208" ne="OTHER">semua\CD pihak\NN</phrase><phrase type="other">yang\SC mengklaim\VB</phrase><phrase type="np" id="209" ne="OTHER">permata\NN itu,\PR</phrase><phrase type="other">sebelum\SC memutuskan\VB kasus\NN</phrase><phrase type="np" id="210" ne="OTHER">nya\PRP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="211" ne="TIME|OTHER">Oktober\NNP nanti.\NN</phrase>
</sentence>
<sentence id="49">
<phrase type="np" id="212" ne="OTHER|NUM">Salah\CD satu\CD</phrase><phrase type="other">dari\IN pihak\NN yang\SC berselisih,\VB adalah\VB</phrase><phrase type="np" id="213" ne="PERSON">Anthony\NNP Thomas\NNP</phrase><phrase type="np" id="214" ne="OTHER" coref="213">ahli\NN konstruksi\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="215" ne="LOCATION">Kalifornia\NNP</phrase><phrase type="other">yang\SC mengatakan\VB</phrase><phrase type="np" id="216" ne="OTHER" coref="214">dia\PRP</phrase><phrase type="other">telah\MD membayar\VB kepada\IN</phrase><phrase type="np" id="217" ne="NUM|THINGS">dua\CD orang\NND</phrase><phrase type="np" id="218" ne="THINGS">agen\NN permata\NN</phrase><phrase type="other">Brasil\NNP</phrase><phrase type="np" id="219" ne="OTHER|THINGS|NUM">senilai\NN US\NNP $\SYM 60.000\CD</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="220" ne="OTHER">jamrud\NN tersebut\PR</phrase><phrase type="other">tak\NEG lama\JJ setelah\SC ditemukan\VB</phrase><phrase type="np" id="221" ne="TIME|OTHER">sembilan\CD tahun\NN lalu.\NN</phrase>
</sentence>
<sentence id="50">
<phrase type="np-sbj" id="222" ne="PERSON" coref="214">Thomas\NNP</phrase><phrase type="other">mengatakan\VB telah\MD mengatur\VB agar\SC</phrase><phrase type="np-sbj" id="223" ne="OTHER">batu\NN itu\PR</phrase><phrase type="other">dikirim\VB melalui\IN</phrase><phrase type="np" id="224" ne="OTHER">kapal\NN</phrase><phrase type="other">ke\IN kediaman\NN</phrase><phrase type="np" id="225" ne="OTHER" coref="222">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="226" ne="ORGANIZATION|OTHER">San\NNP Jose,\NNP</phrase><phrase type="other">tetapi\CC tak\NEG pernah\MD muncul.\VB</phrase>
</sentence>
<sentence id="51">
<phrase type="np" id="227" ne="OTHER" coref="225">Dia\PRP</phrase><phrase type="other">percaya\VB</phrase><phrase type="np-sbj" id="228" ne="OTHER">batu\NN itu\PR</phrase><phrase type="other">telah\MD dicuri\VB untuk\SC dijual\VB kembali\RB dengan\IN</phrase><phrase type="np" id="229" ne="OTHER">harga\NN yang\SC lebih\RB mahal.\JJ</phrase>
</sentence>
<sentence id="52">
<phrase type="np-sbj" id="230" ne="PERSON" coref="227">Thomas\NNP</phrase><phrase type="np" id="231" ne="OTHER|PERSON">hanya\RB salah\CD satu\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="232" ne="PERSON">enam\CD pihak\NN</phrase><phrase type="other">yang\SC mengklaim\VB sebagai\IN pemilik\NN</phrase><phrase type="np" id="233" ne="ORGANIZATION|OTHER">jamrud\NN raksasa\JJ itu.\PR</phrase>
</sentence>
<sentence id="53">
<phrase type="np" id="234" ne="THINGS">Satu\CD masalah\NN</phrase><phrase type="other">yang\SC dihadapi\VB adalah\VB</phrase><phrase type="np" id="235" ne="OTHER" coref="230">dia\PRP</phrase><phrase type="other">kehilangan\VB</phrase><phrase type="np" id="236" ne="OTHER">tanda\NN terima\NN</phrase><phrase type="other">akibat\IN kebakaran\NN yang\SC melanda\VB rumah\NN</phrase><phrase type="np" id="237" ne="OTHER" coref="235">nya.\PRP</phrase>
</sentence>
<sentence id="54">
<phrase type="np-sbj" id="238" ne="OTHER">Jamrud\NN itu\PR</phrase><phrase type="other">akhirnya\RB sampai\VB ke\IN</phrase><phrase type="np" id="239" ne="OTHER">Amerika,\NNP</phrase><phrase type="other">meskipun\SC setibanya\SC di\IN</phrase><phrase type="np" id="240" ne="LOCATION" coref="239">Amerika\NNP</phrase><phrase type="other">tidak\NEG jelas\JJ siapa\SC pemilik\NN</phrase><phrase type="np" id="241" ne="OTHER">nya.\PRP</phrase>
</sentence>
<sentence id="55">
<phrase type="np" id="242" ne="THINGS">Satu\CD hal\NN</phrase><phrase type="other">yang\SC diketahui\VB</phrase><phrase type="np-sbj" id="243" ne="OTHER">batu\NN itu\PR</phrase><phrase type="other">sempat\MD disimpan\VB di\IN</phrase><phrase type="np" id="244" ne="OTHER">lemari\NN besi\NN bank\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="245" ne="LOCATION">New\NNP Orleans\NNP</phrase><phrase type="other">yang\SC terkena\VB</phrase><phrase type="np" id="246" ne="OTHER">banjir\NN</phrase><phrase type="other">ketika\SC</phrase><phrase type="np-sbj" id="247" ne="OTHER" coref="245">daerah\NN itu\PR</phrase><phrase type="other">diterjang\VB</phrase><phrase type="np" id="248" ne="PERSON|OTHER">Badai\NNP Katrina,\NNP</phrase><phrase type="other">sehingga\SC</phrase><phrase type="np-sbj" id="249" ne="OTHER" coref="243">batu\NN berharga\JJ</phrase><phrase type="other">terendam\VB di\IN</phrase><phrase type="np" id="250" ne="OTHER">dalam\NN air\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="251" ne="OTHER">beberapa\CD bulan.\NN</phrase>
</sentence>
<sentence id="56">
<phrase type="np-sbj" id="252" ne="OTHER|PERSON">Jamrud\NNP Bahia\NNP</phrase><phrase type="other">kemudian\RB dibawa\VB ke\IN</phrase><phrase type="np" id="253" ne="PERSON">Las\NNP Vegas\NNP</phrase><phrase type="other">untuk\SC dilihat\VB oleh\IN</phrase><phrase type="np" id="254" ne="OTHER">calon\NN pembeli\NN</phrase><phrase type="other">namun\CC disita\VB oleh\IN polisi\NN</phrase><phrase type="np" id="255" ne="LOCATION|OTHER">Los\NNP Angeles.\NNP</phrase>
</sentence>
<sentence id="57">
<phrase type="np-sbj" id="256" ne="THINGS">Badut\NN politikus\NN</phrase><phrase type="other">ditantang\VB baca\VB tulis\VB</phrase>
</sentence>
<sentence id="58">
<phrase type="np" id="257" ne="PERSON" coref="256">Seorang\NND badut\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="258" ne="LOCATION">Brasil\NNP</phrase><phrase type="other">yang\SC mempunyai\VB</phrase><phrase type="np" id="259" ne="OTHER">peluang\NN besar\JJ</phrase><phrase type="other">meraih\VB</phrase><phrase type="np" id="260" ne="OTHER">kursi\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="261" ne="OTHER">parlemen\NN</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="262" ne="OTHER|TIME">pemilihan\NN Minggu\NNP 3/\CD 10\CD</phrase><phrase type="other">-\Z ditantang\VB untuk\SC membuktikan\VB bahwa\SC</phrase><phrase type="np" id="263" ne="OTHER" coref="257">dia\PRP</phrase><phrase type="other">bisa\MD membaca\VB dan\CC menulis.\VB</phrase>
</sentence>
<sentence id="59">
<phrase type="np-sbj" id="264" ne="EVENT">Jajak\NN pendapat\NN</phrase><phrase type="other">memperlihatkan\VB</phrase><phrase type="np" id="265" ne="EVENT" coref="263">badut\NN itu,\PR</phrase><phrase type="np" id="266" ne="EVENT" coref="265">Tiririca,\NNP</phrase><phrase type="other">akan\MD meraih\VB</phrase><phrase type="np" id="267" ne="OTHER|NUM">lebih\RB dari\IN satu\CD juta\CD suara.\NN</phrase>
</sentence>
<sentence id="60">
<phrase type="other">Namun\CC</phrase><phrase type="np" id="268" ne="OTHER">hakim\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="269" ne="LOCATION">Sao\NNP Paulo\NNP</phrase><phrase type="other">menuntut\VB</phrase><phrase type="np" id="270" ne="OTHER" coref="266">dia\PRP</phrase><phrase type="other">untuk\SC memperlihatkan\VB bisa\MD memenuhi\VB persyaratan\NN baca\VB tulis.\VB</phrase>
</sentence>
<sentence id="61">
<phrase type="np-sbj" id="271" ne="OTHER|LOCATION">Sejumlah\CD surat\NN kabar\NN Brasil\NNP</phrase><phrase type="other">melaporkan\VB</phrase><phrase type="np" id="272" ne="PERSON" coref="270">Tiririca\NNP</phrase><phrase type="other">-\Z sama\JJ seperti\IN</phrase><phrase type="np" id="273" ne="PERSON|OTHER">satu\CD dari\IN sepuluh\CD warga\NN Brasil\NNP</phrase><phrase type="other">buta\JJ aksara.\JJ</phrase>
</sentence>
<sentence id="62">
<phrase type="np" id="274" ne="PERSON" coref="272">Tiririca\NNP</phrase><phrase type="other">-\Z yang\SC dalam\IN</phrase><phrase type="np" id="275" ne="ORGANIZATION|OTHER">bahasa\NN sehari-hari\NN Portugis\NNP</phrase><phrase type="other">arti\NN</phrase><phrase type="np" id="276" ne="ORGANIZATION" coref="274">nya\PRP</phrase><phrase type="other">tukang\NN mengeluh\VB menjadi\VB</phrase><phrase type="np" id="277" ne="OTHER">sensasi\NN besar\JJ</phrase><phrase type="other">selama\IN</phrase><phrase type="np" id="278" ne="OTHER">kampanye\NN pemilihan.\NN</phrase>
</sentence>
<sentence id="63">
<phrase type="other">Video\NN kampanye\NN</phrase><phrase type="np" id="279" ne="EVENT" coref="276">nya\PRP</phrase><phrase type="other">yang\SC kocak\JJ berhasil\VB meraih\VB</phrase><phrase type="np" id="280" ne="PERSON">jutaan\CD penonton\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="281" ne="OTHER">YouTube.\NNP</phrase>
</sentence>
<sentence id="64">
<phrase type="np" id="282" ne="OTHER" coref="279">Dia\PRP</phrase><phrase type="other">antara\IN lain\JJ menggunakan\VB slogan\NN "\Z Tidak\NEG bisa\MD lebih\RB buruk\JJ lagi\RB "\Z dan\CC "\Z Apa\WH yang\SC dilakukan\VB wakil\NN</phrase><phrase type="np" id="283" ne="TITLE">anda\PRP</phrase><phrase type="other">?\Z Sungguh\RB</phrase><phrase type="np" id="284" ne="OTHER" coref="282">saya\PRP</phrase><phrase type="other">tidak\NEG tahu.\VB Tapi\CC pilih\VB lah\RP</phrase><phrase type="np" id="285" ne="OTHER" coref="284">saya\PRP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="286" ne="OTHER" coref="285">saya\PRP</phrase><phrase type="other">akan\MD mencari\VB tahu\VB untuk\IN</phrase><phrase type="np" id="287" ne="OTHER" coref="283">anda.\PRP</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="65">
<phrase type="np-sbj" id="288" ne="PERSON">Hakim\NN</phrase><phrase type="other">memutuskan\VB untuk\SC menggelar\VB</phrase><phrase type="np" id="289" ne="OTHER">ujian\NN aksara\NN</phrase><phrase type="other">setelah\SC</phrase><phrase type="np-sbj" id="290" ne="OTHER|PERSON">majalah\NNP Epoca\NNP</phrase><phrase type="other">menayangkan\VB</phrase><phrase type="np" id="291" ne="OTHER">video\NN</phrase><phrase type="other">di\IN situs\NN</phrase><phrase type="np" id="292" ne="THINGS">nya\PRP</phrase><phrase type="other">yang\SC memperlihatkan\VB</phrase><phrase type="np-sbj" id="293" ne="OTHER" coref="286">Tiririca\NNP</phrase><phrase type="other">tampak\VB kesulitan\VB membaca.\VB</phrase>
</sentence>
<sentence id="66">
<phrase type="np-sbj" id="294" ne="ORGANIZATION">Komisi\NN pemilihan\NN</phrase><phrase type="other">mengatakan\VB sudah\MD terlambat\VB untuk\SC menghentikan\VB pencalonan\NN</phrase><phrase type="np" id="295" ne="OTHER" coref="293">nya\PRP</phrase><phrase type="other">namun\CC</phrase><phrase type="np" id="296" ne="OTHER" coref="295">dia\PRP</phrase><phrase type="other">bisa\MD diberhentikan\VB setelah\SC</phrase><phrase type="np" id="297" ne="OTHER">pemilihan\NN nanti\NN</phrase><phrase type="other">jika\SC gagal\VB memperlihatkan\VB kemampuan\NN membaca.\VB</phrase>
</sentence>
<sentence id="67">
<phrase type="np" id="298" ne="THINGS">Calon\NN selebriti\NN</phrase>
</sentence>
<sentence id="68">
<phrase type="other">Tiririca,\NNP yang\SC nama\NN asli\JJ</phrase><phrase type="np" id="299" ne="OTHER" coref="296">nya\PRP</phrase><phrase type="np" id="300" ne="ORGANIZATION|PERSON">Francisco\NNP Everardo\NNP Oliveira\NNP Silva\NNP</phrase><phrase type="other">-\Z mulai\MD bekerja\VB di\IN</phrase><phrase type="np" id="301" ne="OTHER">sirkus\NN</phrase><phrase type="other">sejak\SC berusia\VB</phrase><phrase type="np" id="302" ne="TIME">delapan\CD tahun\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="303" ne="OTHER">negara\NN bagian\NN miskin,\JJ</phrase><phrase type="np" id="304" ne="OTHER" coref="303">Ceara.\NNP</phrase>
</sentence>
<sentence id="69">
<phrase type="other">Dengan\IN pengalaman\NN</phrase><phrase type="np" id="305" ne="OTHER" coref="300">nya,\PRP</phrase><phrase type="np" id="306" ne="OTHER" coref="305">dia\PRP</phrase><phrase type="np" id="307" ne="OTHER">kini\NN</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="308" ne="OTHER">salah\CD seorang\CD pelawak\NN</phrase><phrase type="other">yang\SC terkenal\VB di\IN</phrase><phrase type="np" id="309" ne="OTHER">TV.\NN</phrase>
</sentence>
<sentence id="70">
<phrase type="np" id="310" ne="PERSON" coref="306">Dia\PRP</phrase><phrase type="other">merupakan\VB</phrase><phrase type="np" id="311" ne="OTHER|THINGS">salah\CD seorang\CD dari\IN puluhan\CD calon\NN</phrase><phrase type="other">yang\SC berasal\VB dari\IN dunia\NN</phrase><phrase type="np" id="312" ne="OTHER">olahraga\NN maupun\CC pertunjukan,\NN</phrase><phrase type="other">yang\SC berjuang\VB untuk\SC merebut\VB</phrase><phrase type="np" id="313" ne="OTHER">kursi\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="314" ne="OTHER">majelis\NN rendah\NN parlemen\NN</phrase><phrase type="other">dengan\SC bersaing\VB melawan\VB politikus\NN berpengalaman.\VB</phrase>
</sentence>
<sentence id="71">
<phrase type="other">Seluruhnya\RB tercatat\VB</phrase><phrase type="np" id="315" ne="NUM">6.000\CD calon\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="316" ne="NUM">27\CD partai\NN</phrase><phrase type="other">untuk\SC meraih\VB</phrase><phrase type="np" id="317" ne="THINGS">513\CD kursi\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="318" ne="OTHER">parlemen.\NN</phrase>
</sentence>
<sentence id="72">
<phrase type="np" id="319" ne="PERSON|OTHER">Calon\NN lain\JJ</phrase><phrase type="other">yang\SC diduga\VB akan\MD meraih\VB</phrase><phrase type="np" id="320" ne="OTHER">kursi\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="321" ne="OTHER">parlemen\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="322" ne="OTHER">kemenangan\NN mutlak\JJ</phrase><phrase type="other">adalah\VB</phrase><phrase type="np" id="323" ne="OTHER">Romario,\NNP</phrase><phrase type="other">yang\SC merupakan\VB</phrase><phrase type="np" id="324" ne="OTHER">salah\CD seorang\CD</phrase><phrase type="np" id="325" ne="EVENT">bintang\NN sepak\NN bola\NN</phrase><phrase type="other">Brasil\NNP saat\SC meraih\VB</phrase><phrase type="np" id="326" ne="PERSON|OTHER">Piala\NNP Dunia\NNP 1994.\CD</phrase>
</sentence>
<sentence id="73">
<phrase type="np-sbj" id="327" ne="OTHER">Para\DT pengamat\NN</phrase><phrase type="other">mengatakan\VB popularitas\NN</phrase><phrase type="np" id="328" ne="OTHER">para\DT selebriti\NN</phrase><phrase type="other">mencerminkan\VB</phrase><phrase type="np" id="329" ne="OTHER">kebingungan\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="330" ne="OTHER">politik\NN utama\JJ</phrase><phrase type="other">karena\IN maraknya\NN</phrase><phrase type="np" id="331" ne="OTHER">sejumlah\CD skandal\NN korupsi.\NN</phrase>
</sentence>
<sentence id="74">
<phrase type="np" id="332" ne="OTHER">Ibu,\NN bayi\NN dan\CC parlemen\NN</phrase>
</sentence>
<sentence id="75">
<phrase type="other">Seorang\NND anggota\NN</phrase><phrase type="np" id="333" ne="TITLE|LOCATION">Parlemen\NNP Eropa\NNP</phrase><phrase type="other">asal\IN</phrase><phrase type="np" id="334" ne="LOCATION">Italia\NNP</phrase><phrase type="other">menghadiri\VB</phrase><phrase type="np" id="335" ne="OTHER">sidang\NN parlemen\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="336" ne="LOCATION">Strasbourg\NNP</phrase><phrase type="other">dengan\SC menggendong\VB anak\NN bayi\NN</phrase><phrase type="np" id="337" ne="OTHER">nya.\PRP</phrase>
</sentence>
<sentence id="76">
<phrase type="np-sbj" id="338" ne="PERSON">Licia\NNP Ronzulli\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="339" ne="OTHER" coref="338">ia\PRP</phrase><phrase type="other">ingin\RB menunjukkan\VB berat\JJ</phrase><phrase type="np" id="340" ne="OTHER">nya\PRP</phrase><phrase type="other">beban\NN yang\SC ditanggung\VB</phrase><phrase type="np" id="341" ne="OTHER">kaum\NN perempuan\NN</phrase><phrase type="other">untuk\SC menjalani\VB</phrase><phrase type="np" id="342" ne="OTHER">karir\NN</phrase><phrase type="other">sekaligus\RB mengasuh\VB</phrase><phrase type="np" id="343" ne="OTHER">anak.\NN</phrase>
</sentence>
<sentence id="77">
<phrase type="np-sbj" id="344" ne="OTHER|TITLE">Para\DT anggota\NN parlemen\NN</phrase><phrase type="other">sedang\MD membahas\VB usul\NN untuk\SC memperbaiki\VB</phrase><phrase type="np" id="345" ne="OTHER">hak\NN maupun\CC kesempatan\NN</phrase><phrase type="other">bagi\IN</phrase><phrase type="np" id="346" ne="OTHER">perempuan\NN</phrase><phrase type="other">untuk\SC bekerja.\VB</phrase>
</sentence>
<sentence id="78">
<phrase type="np" id="347" ne="OTHER">Vittoria\NNP</phrase><phrase type="other">yang\SC baru\MD berusia\VB</phrase><phrase type="np" id="348" ne="TIME">satu\CD bulan\NN</phrase><phrase type="other">tampak\VB tidur\VB nyenyak\JJ selama\SC</phrase><phrase type="np-sbj" id="349" ne="OTHER">sidang\NN</phrase><phrase type="other">berlangsung.\VB</phrase>
</sentence>
<sentence id="79">
<phrase type="np" id="350" ne="PERSON" coref="339">Ronzulli\NNP</phrase><phrase type="other">yang\SC mewakili\VB</phrase><phrase type="np" id="351" ne="ORGANIZATION">Partai\NNP Kebebasan\NNP Rakyat\NNP</phrase><phrase type="other">pimpinan\NN</phrase><phrase type="np" id="352" ne="ORGANIZATION|LOCATION|PERSON">PM\NNP Italia\NNP Silvio\NNP Berlusconi\NNP</phrase><phrase type="other">mendapat\VB</phrase><phrase type="np" id="353" ne="OTHER">sambutan\NN meriah\JJ</phrase><phrase type="other">ketika\SC berdiri\VB untuk\SC menyampaikan\VB pidato\NN</phrase><phrase type="np" id="354" ne="OTHER" coref="350">nya.\PRP</phrase>
</sentence>
<sentence id="80">
<phrase type="np" id="355" ne="PERSON" coref="354">Ia\PRP</phrase><phrase type="other">mengatakan\VB kepada\IN rekan\NN</phrase><phrase type="np" id="356" ne="OTHER" coref="355">nya\PRP</phrase><phrase type="np" id="357" ne="OTHER|TITLE|ORGANIZATION">sesama\NN anggota\NN parlemen\NN</phrase><phrase type="other">:\Z "\Z</phrase><phrase type="np" id="358" ne="OTHER" coref="356">Saya\PRP</phrase><phrase type="other">ingin\RB melihat\VB</phrase><phrase type="np" id="359" ne="OTHER">komitmen\NN yang\SC lebih\RB besar\JJ</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="360" ne="OTHER">persoalan-persoalan\NN ini\PR</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="361" ne="OTHER">lembaga-lembaga\NN Eropa,\NNP</phrase><phrase type="other">dimulai\VB dari\IN dalam\NN</phrase><phrase type="np" id="362" ne="FACILITY" coref="333">Parlemen\NNP Eropa\NNP</phrase><phrase type="np" id="363" ne="OTHER">sendiri.\NN</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="81">
<phrase type="np" id="364" ne="OTHER">Naskah\NN asli\JJ</phrase><phrase type="np" id="365" ne="PERSON">Harry\NNP Potter\NNP</phrase><phrase type="other">dipamerkan\VB</phrase>
</sentence>
<sentence id="82">
<phrase type="np" id="366" ne="PERSON">Naskah\NN asli\JJ</phrase><phrase type="other">dari\IN kisah\NN</phrase><phrase type="np" id="367" ne="PERSON" coref="365">Harry\NNP Potter\NNP</phrase><phrase type="other">yang\SC ditulis\VB</phrase><phrase type="np" id="368" ne="OTHER">tangan\NN</phrase><phrase type="other">oleh\IN pengarang\NN</phrase><phrase type="np" id="369" ne="OTHER" coref="367">nya,\PRP</phrase><phrase type="np" id="370" ne="ORGANIZATION|OTHER">JK\NNP Rowling,\NNP</phrase><phrase type="other">dipamerkan\VB sebagai\IN</phrase><phrase type="np" id="371" ne="OTHER">bagian\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="372" ne="OTHER">festival\NN buku\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="373" ne="LOCATION|OTHER">Skotlandia\NNP selatan.\NNP</phrase>
</sentence>
<sentence id="83">
<phrase type="np" id="374" ne="PERSON">Dua\CD halaman\NND</phrase><phrase type="other">naskah\NN yang\SC dibingkai\VB dan\CC ditandatangani\VB oleh\IN</phrase><phrase type="np" id="375" ne="ORGANIZATION" coref="370">JK\NNP Rowling\NNP</phrase><phrase type="other">itu\PR berisi\VB Balada\NN</phrase><phrase type="np" id="376" ne="PERSON">Nick\NNP</phrase><phrase type="other">Si\DT Kepala\NN Nyaris\RB Putus.\VB</phrase>
</sentence>
<sentence id="84">
<phrase type="np-sbj" id="377" ne="OTHER">Naskah\NN itu\PR</phrase><phrase type="other">akan\MD dipamerkan\VB dalam\IN</phrase><phrase type="np" id="378" ne="OTHER">festival\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="379" ne="FACILITY">kota\NNP Wigtown\NNP</phrase><phrase type="np" id="380" ne="FACILITY|OTHER|NUM">tanggal\NN 24\CD sampai\IN 3\CD Oktober.\NNP</phrase>
</sentence>
<sentence id="85">
<phrase type="other">Kisah\NN</phrase><phrase type="np" id="381" ne="EVENT" coref="376">hantu\NN Nick\NNP</phrase><phrase type="other">itu\PR awal\NN</phrase><phrase type="np" id="382" ne="OTHER">nya\PRP</phrase><phrase type="other">ditulis\VB sebagai\IN</phrase><phrase type="np" id="383" ne="OTHER">bagian\NN</phrase><phrase type="other">dari\IN buku\NN</phrase><phrase type="np" id="384" ne="FACILITY" coref="369">Harry\NNP Potter\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="385" ne="FACILITY">Kamar\NN Rahasia\NN</phrase><phrase type="other">tetapi\CC kemudian\CC</phrase><phrase type="np-sbj" id="386" ne="FACILITY|OTHER">kedua\CD halaman\NN itu\PR</phrase><phrase type="other">dibuang\VB sehingga\SC tidak\NEG termasuk\VB dalam\IN buku\NN yang\SC diterbitkan.\VB</phrase>
</sentence>
<sentence id="86">
<phrase type="np-sbj" id="387" ne="OTHER">Kedua\CD halaman\NN itu\PR</phrase><phrase type="other">disumbangkan\VB oleh\IN</phrase><phrase type="np" id="388" ne="FACILITY" coref="375">JK\NNP Rowling\NNP</phrase><phrase type="other">bagi\IN</phrase><phrase type="np" id="389" ne="LOCATION">Yayasan\NNP Kamus\NNP Bahasa\NNP Skotlandia\NNP</phrase><phrase type="np" id="390" ne="LOCATION">tahun\NN 2005\CD</phrase><phrase type="other">untuk\SC mendukung\VB</phrase><phrase type="np" id="391" ne="OTHER">pengumpulan\NN dana\NN</phrase><phrase type="other">bagi\IN pembuatan\NN</phrase><phrase type="np" id="392" ne="OTHER">kamus\NN baru\JJ</phrase><phrase type="np" id="393" ne="OTHER">bahasa\NN asli\JJ</phrase><phrase type="other">Skotlandia.\NNP</phrase>
</sentence>
<sentence id="87">
<phrase type="np" id="394" ne="EVENT">Sekarang\NN</phrase><phrase type="other">halaman\NN</phrase><phrase type="np" id="395" ne="EVENT">naskah\NN asli\JJ</phrase><phrase type="other">itu\PR dimiliki\VB oleh\IN seorang\NND</phrase><phrase type="np" id="396" ne="OTHER">kolektor\NN buku\NN terkemuka\JJ</phrase><phrase type="other">Inggris\NNP dan\CC pemilik\NN</phrase><phrase type="np" id="397" ne="OTHER|LOCATION">jurnal\NNP Asia\NNP Literary\NNP Review\NNP</phrase><phrase type="np" id="398" ne="LOCATION">Ilyas\NNP Khan\NNP</phrase><phrase type="other">dan\CC belum\NEG pernah\MD dipamerkan\VB kepada\IN</phrase><phrase type="np" id="399" ne="OTHER">umum.\NN</phrase>
</sentence>
<sentence id="88">
<phrase type="np-sbj" id="400" ne="TITLE|PERSON" coref="398">Ilyas\NNP Khan\NNP</phrase><phrase type="other">mengatakan,\VB "\Z</phrase><phrase type="np-sbj" id="401" ne="PERSON">The\NNP Asia\NNP Literary\NNP Review\NNP</phrase><phrase type="other">pernah\MD mendukung\VB</phrase><phrase type="np" id="402" ne="OTHER">berbagai\CD festival\NN buku\NN</phrase><phrase type="other">tetapi\CC</phrase><phrase type="np" id="403" ne="OTHER" coref="400">saya\PRP</phrase><phrase type="other">harus\MD mengatakan\VB bahwa\SC</phrase><phrase type="np" id="404" ne="OTHER" coref="403">saya\PRP</phrase><phrase type="other">sangat\RB senang\JJ</phrase><phrase type="np" id="405" ne="OTHER">kami\PRP</phrase><phrase type="other">ikut\VB dalam\IN</phrase><phrase type="np" id="406" ne="LOCATION">Festival\NNP Wigtown\NNP</phrase><phrase type="other">ini.\PR "\Z</phrase>
</sentence>
<sentence id="89">
<phrase type="other">"\Z Memamerkan\VB naskah\NN Balada\NN</phrase><phrase type="np" id="407" ne="PERSON">Nick\NNP</phrase><phrase type="other">si\DT Kepala\NN Nyaris\RB Putus\VB adalah\VB cara\NN yang\SC sangat\RB bagus\JJ untuk\SC membantu\VB mendukung\VB</phrase><phrase type="np" id="408" ne="OTHER">acara\NN ini.\PR</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="90">
<phrase type="np-sbj" id="409" ne="ORGANIZATION|LOCATION">TV\NN Australia\NNP</phrase><phrase type="other">salah\JJ sebut\VB</phrase><phrase type="np" id="410" ne="OTHER">pemenang\NN</phrase>
</sentence>
<sentence id="91">
<phrase type="np" id="411" ne="TITLE|LOCATION">Acara\NN TV\NN</phrase><phrase type="np" id="412" ne="LOCATION|OTHER|PERSON">Australia\NNP '\NNP s\NNP Next\NNP Top\NNP Model,\NNP</phrase><phrase type="other">sempat\MD mengumumkan\VB</phrase><phrase type="np" id="413" ne="OTHER">pemenang\NN yang\SC salah\JJ</phrase><phrase type="other">dalam\IN final\NN yang\SC disiarkan\VB langsung\RB pada\IN seri\NN</phrase><phrase type="np" id="414" ne="OTHER">nya\PRP</phrase><phrase type="other">yang\SC</phrase><phrase type="np" id="415" ne="OTHER">keenam.\OD</phrase>
</sentence>
<sentence id="92">
<phrase type="np-sbj" id="416" ne="FACILITY|ORGANIZATION">Kelsey\NNP Martinovich\NNP</phrase><phrase type="other">dianugerahi\VB</phrase><phrase type="np" id="417" ne="OTHER">mahkota\NN kemenangan\NN</phrase><phrase type="other">sesuai\JJ</phrase><phrase type="np" id="418" ne="OTHER">pilihan\NN pemirsa\NN</phrase><phrase type="other">dan\CC sedang\MD menyampaikan\VB</phrase><phrase type="np" id="419" ne="OTHER">pidato,\NN</phrase><phrase type="other">namun\CC</phrase><phrase type="np-sbj" id="420" ne="OTHER|FACILITY|LOCATION">presenter\NNP Sarah\NNP Murdoch\NNP</phrase><phrase type="other">menyela.\VB</phrase>
</sentence>
<sentence id="93">
<phrase type="other">Sambil\SC menggeleng-gelengkan\VB</phrase><phrase type="np" id="421" ne="TITLE">kepala\NN</phrase><phrase type="other">dan\CC mendengarkan\VB</phrase><phrase type="np" id="422" ne="OTHER">ear\FW piece\FW</phrase><phrase type="np" id="423" ne="OTHER" coref="420">dia\PRP</phrase><phrase type="other">mengatakan\VB :\Z "\Z</phrase><phrase type="np" id="424" ne="OTHER" coref="423">Saya\PRP</phrase><phrase type="other">mual\JJ dengan\IN</phrase><phrase type="np" id="425" ne="OTHER">masalah\NN ini.\PR</phrase><phrase type="np" id="426" ne="OTHER" coref="424">Saya\PRP</phrase><phrase type="other">amat\RB meminta\VB</phrase><phrase type="np" id="427" ne="OTHER">maaf,\NN</phrase><phrase type="np-sbj" id="428" ne="OTHER">ini\PR</phrase><phrase type="np" id="429" ne="OTHER">semata-mata\RB kecelakaan.\NN</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="94">
<phrase type="np" id="430" ne="OTHER" coref="426">Dia\PRP</phrase><phrase type="other">kemudian\RB mengumumkan\VB</phrase><phrase type="np" id="431" ne="OTHER">pemenang\NN yang\SC sebenarnya,\RB</phrase><phrase type="other">yaitu\SC</phrase><phrase type="np" id="432" ne="TITLE|PERSON">Amanda\NNP Ware\NNP</phrase><phrase type="other">yang\SC berusia\VB</phrase><phrase type="np" id="433" ne="TIME">18\CD tahun.\NN</phrase>
</sentence>
<sentence id="95">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="434" ne="OTHER">Ini\PR lah\RP</phrase><phrase type="other">yang\SC terjadi\VB kalau\SC</phrase><phrase type="np" id="435" ne="OTHER|THINGS">siaran\NN TV\NN langsung,\RB</phrase><phrase type="other">"\Z kata\VB</phrase><phrase type="np-sbj" id="436" ne="PERSON|OTHER" coref="430">Sarah\NNP Murdoch.\NNP</phrase>
</sentence>
<sentence id="96">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="437" ne="OTHER">Ini\PR</phrase><phrase type="other">edan,\JJ edan,\JJ edan.\JJ "\Z</phrase>
</sentence>
<sentence id="97">
<phrase type="other">Adapun\CC</phrase><phrase type="np" id="438" ne="PERSON" coref="416">Martinovich\NNP</phrase><phrase type="other">-\Z yang\SC sempat\MD disebut\VB sebagai\IN</phrase><phrase type="np" id="439" ne="OTHER">pemenang\NN</phrase><phrase type="other">selama\IN</phrase><phrase type="np" id="440" ne="OTHER|TIME">sekitar\RB satu\CD menit\NND</phrase><phrase type="other">tampak\VB menerima\VB</phrase><phrase type="np" id="441" ne="OTHER">kesalahan\NN itu\PR</phrase><phrase type="other">dengan\IN baik.\JJ</phrase>
</sentence>
<sentence id="98">
<phrase type="other">"\Z Ok,\FW</phrase><phrase type="np-sbj" id="442" ne="OTHER">ini\PR</phrase><phrase type="np" id="443" ne="OTHER">semata-mata\RB kekeliruan,\NN</phrase><phrase type="other">"\Z kata\VB</phrase><phrase type="np" id="444" ne="OTHER" coref="438">nya.\PRP</phrase>
</sentence>
<sentence id="99">
<phrase type="np-sbj" id="445" ne="PERSON" coref="436">Sarah\NNP Murdoch\NNP</phrase><phrase type="other">berusaha\VB menjelaskan\VB</phrase><phrase type="np-sbj" id="446" ne="OTHER">kekeliruan\NN itu\PR</phrase><phrase type="other">terjadi\VB karena\IN</phrase><phrase type="np" id="447" ne="OTHER">selisih\NN suara\NN</phrase><phrase type="other">yang\SC ketat.\JJ</phrase>
</sentence>
<sentence id="100">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="448" ne="OTHER">Yang\DT memimpin\VB</phrase><phrase type="other">terus-menerus\RB berganti.\VB Benar-benar\RB tergantung\VB pada\IN</phrase><phrase type="np" id="449" ne="OTHER">beberapa\CD suara.\NN</phrase><phrase type="other">Maju\VB mundur\VB dan\CC akhirnya\RB</phrase><phrase type="np-sbj" id="450" ne="PERSON" coref="432">Amanda\NNP</phrase><phrase type="other">pemenang\NN</phrase><phrase type="np" id="451" ne="OTHER">nya,\PRP</phrase><phrase type="other">"\Z jelas\VB</phrase><phrase type="np" id="452" ne="PERSON" coref="445">nya.\PRP</phrase>
</sentence>
<sentence id="101">
<phrase type="np-sbj" id="453" ne="THINGS">Kedua\CD finalis\NN</phrase><phrase type="other">kemudian\RB berpelukan\VB sebelum\SC</phrase><phrase type="np-sbj" id="454" ne="PERSON" coref="450">Ware\NNP</phrase><phrase type="other">mengucapkan\VB</phrase><phrase type="np" id="455" ne="OTHER">terima\NN kasih\NN</phrase><phrase type="other">kepada\IN para\DT pendukung\NN</phrase><phrase type="np" id="456" ne="OTHER" coref="454">nya\PRP</phrase><phrase type="other">dan\CC berjalan\VB di\IN atas\NN</phrase><phrase type="np" id="457" ne="OTHER">catwalk\FW</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="458" ne="OTHER">terakhir\OD kali.\NND</phrase>
</sentence>
<sentence id="102">
<phrase type="other">Dan\CC</phrase><phrase type="np" id="459" ne="FACILITY" coref="452">Sarah\NNP Murdoch\NNP</phrase><phrase type="other">-\Z</phrase><phrase type="np" id="460" ne="FACILITY">seorang\NND model\NN</phrase><phrase type="other">yang\SC merangkap\VB</phrase><phrase type="np" id="461" ne="OTHER">presenter\FW</phrase><phrase type="other">TV\NN -\Z menikah\VB dengan\IN</phrase><phrase type="np" id="462" ne="OTHER">putra\NN Rupert,\NNP</phrase><phrase type="np" id="463" ne="OTHER">Lachlan.\NNP</phrase>
</sentence>
<sentence id="103">
<phrase type="other">Membaca\VB</phrase><phrase type="np" id="464" ne="FACILITY">Don\NNP Quixote\NNP</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="465" ne="ORGANIZATION">YouTube\NNP</phrase>
</sentence>
<sentence id="104">
<phrase type="np-sbj" id="466" ne="TITLE|ORGANIZATION|LOCATION">Akademi\NNP Kerajaan\NNP Spanyol\NNP</phrase><phrase type="other">mengundang\VB</phrase><phrase type="np" id="467" ne="OTHER">orang\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="468" ne="OTHER">seluruh\CD dunia\NN</phrase><phrase type="other">untuk\SC merekam\VB</phrase><phrase type="np" id="469" ne="OTHER">segmen\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="470" ne="PERSON">novel\NN klasik\JJ</phrase><phrase type="np" id="471" ne="PERSON" coref="464">Don\NNP Quixote\NNP</phrase><phrase type="other">dan\CC mengunggah\VB</phrase><phrase type="np" id="472" ne="OTHER" coref="469">nya\PRP</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="473" ne="OTHER" coref="465">YouTube.\NNP</phrase>
</sentence>
<sentence id="105">
<phrase type="other">Karya\NN</phrase><phrase type="np" id="474" ne="TITLE|PERSON">Miguel\NNP de\NNP Cervantes\NNP</phrase><phrase type="other">ini\PR sering\RB disebut\VB sebagai\IN</phrase><phrase type="np" id="475" ne="OTHER|LOCATION">novel\NN Spanyol\NNP</phrase><phrase type="other">yang\SC paling\RB populer\JJ walau\SC</phrase><phrase type="np-sbj" id="476" ne="OTHER">tak\NEG banyak\CD</phrase><phrase type="other">yang\SC pernah\MD membaca\VB</phrase><phrase type="np" id="477" ne="OTHER" coref="471">nya.\PRP</phrase>
</sentence>
<sentence id="106">
<phrase type="other">Namun\CC</phrase><phrase type="np" id="478" ne="OTHER">kini\NN</phrase><phrase type="np" id="479" ne="TITLE|ORGANIZATION|OTHER" coref="466">Akademi\NNP Kerajaan\NNP Spanyol,\NNP</phrase><phrase type="other">yang\SC merupakan\VB</phrase><phrase type="np" id="480" ne="OTHER">pelindung\NN resmi\JJ</phrase><phrase type="np" id="481" ne="OTHER">bahasa\NNP Spanyol,\NNP</phrase><phrase type="other">membagi\VB</phrase><phrase type="np" id="482" ne="OTHER" coref="477">karya\NN itu\PR</phrase><phrase type="other">ke\IN dalam\NN</phrase><phrase type="np" id="483" ne="OTHER">2.000\CD segmen.\NN</phrase>
</sentence>
<sentence id="107">
<phrase type="np-sbj" id="484" ne="OTHER" coref="483">Segmen-segmen\NN itu\PR</phrase><phrase type="other">akan\MD dibaca\VB dan\CC kemudian\CC direkam\VB hanya\RB dalam\IN</phrase><phrase type="np" id="485" ne="FACILITY">bahasa\NNP Spanyol\NNP</phrase><phrase type="other">-\Z oleh\IN</phrase><phrase type="np" id="486" ne="OTHER">sukarelawan\NN</phrase><phrase type="other">dan\CC diunggah\VB di\IN</phrase><phrase type="np" id="487" ne="OTHER">halaman\NN khusus\JJ</phrase><phrase type="other">YouTube.\NNP</phrase>
</sentence>
<sentence id="108">
<phrase type="other">Tujuan\NN</phrase><phrase type="np" id="488" ne="OTHER">nya\PRP</phrase><phrase type="other">adalah\VB mempromosikan\VB</phrase><phrase type="np" id="489" ne="OTHER|LOCATION" coref="481">bahasa\NNP Spanyol\NNP</phrase><phrase type="other">dan\CC novel\NN terkenal\VB itu,\PR yang\SC akan\MD menggunakan\VB judul\NN lengkap\JJ</phrase><phrase type="np" id="490" ne="TITLE">nya\PRP</phrase><phrase type="np" id="491" ne="TITLE|PERSON|OTHER">The\NNP Ingenious\NNP Hidalgo\NNP Don\NNP Quixote\NNP of\NNP La\NNP Mancha.\NNP</phrase>
</sentence>
<sentence id="109">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="492" ne="THINGS" coref="489">Bahasa\NNP Spanyol\NNP</phrase><phrase type="other">tidak\NEG mendapat\VB</phrase><phrase type="np" id="493" ne="OTHER">ruang\NN yang\SC sepatutnya\RB</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="494" ne="OTHER">internet,\NN</phrase><phrase type="other">"\Z kata\VB</phrase><phrase type="np" id="495" ne="TITLE">sekretaris\NN akademi,\NN</phrase><phrase type="np" id="496" ne="PERSON|OTHER" coref="495">Dario\NNP Villanueva,\NNP</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="497" ne="ORGANIZATION|OTHER">kantor\NNP berita\NNP AFP.\NNP</phrase>
</sentence>
<sentence id="110">
<phrase type="other">"\Z</phrase><phrase type="np" id="498" ne="OTHER">Kami\PRP</phrase><phrase type="other">ingin\RB mengadukan\VB</phrase><phrase type="np" id="499" ne="OTHER">nya\PRP</phrase><phrase type="other">dan\CC melakukan\VB</phrase><phrase type="np" id="500" ne="OTHER">sesuatu\PRP</phrase><phrase type="other">untuk\SC mengoreksi\VB</phrase><phrase type="np" id="501" ne="OTHER">nya.\PRP</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="111">
<phrase type="other">Ditulis\VB pada\IN</phrase><phrase type="np" id="502" ne="OTHER|TIME">tahun\NN 1605,\CD</phrase><phrase type="np-sbj" id="503" ne="TIME|OTHER" coref="491">novel\NN ini\PR</phrase><phrase type="other">berkisah\VB tentang\IN petualangan\NN seorang\NND</phrase><phrase type="np" id="504" ne="ORGANIZATION">pria\NN pensiunan\NN</phrase><phrase type="other">di\IN kawasan\NN</phrase><phrase type="np" id="505" ne="OTHER">la\NNP Mancha,\NNP</phrase><phrase type="other">yang\SC punya\VB obsesi\NN dengan\IN</phrase><phrase type="np" id="506" ne="OTHER">gagasan-gagasan\NN kesatria.\NN</phrase>
</sentence>
<sentence id="112">
<phrase type="other">Novel\NN asli\JJ</phrase><phrase type="np" id="507" ne="OTHER" coref="503">nya\PRP</phrase><phrase type="other">terdiri\VB dari\IN</phrase><phrase type="np" id="508" ne="FACILITY">26\CD bab\NN</phrase><phrase type="other">dan\CC hampir\RB mencapai\VB</phrase><phrase type="np" id="509" ne="OTHER">1.000\CD halaman.\NN</phrase>
</sentence>
<sentence id="113">
<phrase type="other">Bagi\IN yang\SC berminat\VB harus\MD mendaftarkan\VB</phrase><phrase type="np" id="510" ne="OTHER">diri\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="511" ne="ORGANIZATION">YouTube\NNP</phrase><phrase type="other">dan\CC yang\SC terpilih\VB akan\MD membaca\VB</phrase><phrase type="np" id="512" ne="OTHER">segmen\NN tertentu\JJ</phrase><phrase type="other">untuk\SC diunggah\VB di\IN</phrase><phrase type="np" id="513" ne="OTHER" coref="511">YouTube.\NNP</phrase>
</sentence>
<sentence id="114">
<phrase type="np-sbj" id="514" ne="EVENT">The\NNP Hobbit\NNP</phrase><phrase type="other">cari\VB</phrase><phrase type="np" id="515" ne="EVENT">aktor\NN kerdil\JJ</phrase>
</sentence>
<sentence id="115">
<phrase type="other">Tim\NN pembuat\NN film\NN</phrase><phrase type="np" id="516" ne="ORGANIZATION" coref="514">The\NNP Hobbit\NNP</phrase><phrase type="other">mencari\VB</phrase><phrase type="np" id="517" ne="OTHER" coref="515">aktor\NN kerdil\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="518" ne="LOCATION|OTHER">Selandia\NNP Baru,\NNP</phrase><phrase type="other">sementara\SC</phrase><phrase type="np-sbj" id="519" ne="OTHER|PERSON">sutradara\NNP Peter\NNP Jackson\NNP</phrase><phrase type="other">berancang-ancang\VB untuk\SC merealisasikan\VB</phrase><phrase type="np" id="520" ne="OTHER|THINGS">rencana\NN film\NN tersebut.\PR</phrase>
</sentence>
<sentence id="116">
<phrase type="np-sbj" id="521" ne="FACILITY" coref="519">Sutradara\NNP Peter\NNP Jackson\NNP</phrase><phrase type="other">meraih\VB</phrase><phrase type="np" id="522" ne="PERSON">Piala\NNP Oscar\NNP</phrase><phrase type="other">atas\IN karya\NN</phrase><phrase type="np" id="523" ne="OTHER" coref="521">nya\PRP</phrase><phrase type="np" id="524" ne="ORGANIZATION|OTHER">Lord\NNP of\NNP the\NNP Rings\NNP :\NNP The\NNP Return\NNP of\NNP the\NNP King.\NNP</phrase>
</sentence>
<sentence id="117">
<phrase type="other">Iklan\NN yang\SC muncul\VB di\IN koran\NN terbitan\NN</phrase><phrase type="np" id="525" ne="OTHER">Wellington,\NNP</phrase><phrase type="np" id="526" ne="LOCATION">Selandia\NNP Baru\NNP</phrase><phrase type="other">menyebutkan\VB</phrase><phrase type="np-sbj" id="527" ne="PERSON">Wingnut\NNP Films\NNP</phrase><phrase type="other">mencari\VB</phrase><phrase type="np" id="528" ne="OTHER">pria\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="529" ne="OTHER">tinggi\NN badan\NN</phrase><phrase type="other">antara\IN</phrase><phrase type="np" id="530" ne="NUM|THINGS">123\CD cm\NND</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="531" ne="THINGS|TIME|LOCATION">maksimum\NN 158\CD cm.\NND</phrase>
</sentence>
<sentence id="118">
<phrase type="other">Proyek\NN</phrase><phrase type="np" id="532" ne="NUM">dua\CD film\NN</phrase><phrase type="other">itu\PR belum\NEG resmi\JJ mendapat\VB</phrase><phrase type="np" id="533" ne="OTHER">lampu\NN hijau\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="534" ne="OTHER">perusahaan\NN perfilman\NN</phrase><phrase type="np" id="535" ne="ORGANIZATION">MGM\NNP Studios\NNP</phrase><phrase type="other">akibat\IN</phrase><phrase type="np" id="536" ne="ORGANIZATION">kesulitan\NN keuangan\NN</phrase><phrase type="other">yang\SC tengah\MD dialami.\VB</phrase>
</sentence>
<sentence id="119">
<phrase type="other">Namun,\CC</phrase><phrase type="np-sbj" id="537" ne="OTHER|FACILITY">juru\NNP bicara\NNP Wingnut\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="538" ne="OTHER">mereka\PRP</phrase><phrase type="other">ingin\RB "\Z bersiap-siap\VB ".\Z</phrase>
</sentence>
<sentence id="120">
<phrase type="np-sbj" id="539" ne="OTHER" coref="537">Juru\NN bicara\NN</phrase><phrase type="other">mengatakan\VB kepada\IN</phrase><phrase type="np" id="540" ne="ORGANIZATION">kantor\NNP berita\NNP AFP\NNP</phrase><phrase type="other">bahwa\SC</phrase><phrase type="np-sbj" id="541" ne="OTHER">iklan\NN itu\PR</phrase><phrase type="other">mencari\VB</phrase><phrase type="np" id="542" ne="OTHER">scale\FW double\FW</phrase><phrase type="other">untuk\IN aktor\NN yang\SC akan\MD mengisi\VB</phrase><phrase type="np" id="543" ne="TITLE">peran\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="544" ne="OTHER">dialog,\NN</phrase><phrase type="other">sedangkan\CC</phrase><phrase type="np-sbj" id="545" ne="OTHER">audisi\NN</phrase><phrase type="other">juga\RB akan\MD diadakan\VB untuk\IN</phrase><phrase type="np" id="546" ne="OTHER">figuran.\NN</phrase>
</sentence>
<sentence id="121">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="547" ne="EVENT" coref="542">Scale\FW double\FW</phrase><phrase type="other">muncul\VB di\IN</phrase><phrase type="np" id="548" ne="OTHER">beberapa\CD</phrase><phrase type="np" id="549" ne="OTHER">wide\FW shot\FW</phrase><phrase type="other">sebagai\IN pengganti\NN aktor\NN</phrase><phrase type="np" id="550" ne="OTHER">kami,\PRP</phrase><phrase type="other">dan\CC muncul\VB dengan\IN</phrase><phrase type="np" id="551" ne="OTHER">aktor\NN dewasa\JJ lain\JJ</phrase><phrase type="other">ketika\SC</phrase><phrase type="np" id="552" ne="OTHER">kami\PRP</phrase><phrase type="other">memerlukan\VB</phrase><phrase type="np" id="553" ne="OTHER">orang\NN</phrase><phrase type="other">untuk\SC terlihat\VB lebih\RB kecil\JJ atau\CC lebih\RB tinggi,\JJ "\Z jelas\VB</phrase><phrase type="np-sbj" id="554" ne="OTHER" coref="539">si\DT juru\NN bicara.\NN</phrase>
</sentence>
<sentence id="122">
<phrase type="np" id="555" ne="OTHER" coref="554">Dia\PRP</phrase><phrase type="other">menambahkan\VB</phrase><phrase type="np-sbj" id="556" ne="OTHER">semua\CD pelamar\NN</phrase><phrase type="other">harus\MD berusia\VB</phrase><phrase type="np" id="557" ne="TIME|OTHER">16\CD tahun\NN ke\IN atas\NN</phrase><phrase type="other">dan\CC siapa\SC pun\SC yang\SC tidak\NEG memenuhi\VB</phrase><phrase type="np" id="558" ne="OTHER">ketentuan\NN tinggi\NN badan\NN</phrase><phrase type="other">akan\MD ditolak.\VB</phrase>
</sentence>
<sentence id="123">
'\Z Berkaki\VB pendek\JJ '\Z
</sentence>
<sentence id="124">
<phrase type="other">Meski\SC ada\VB</phrase><phrase type="np-sbj" id="559" ne="OTHER">syarat\NN tinggi\NN badan,\NN</phrase><phrase type="np" id="560" ne="OTHER">banyak\CD aktor\NN</phrase><phrase type="other">yang\SC layak\JJ dipilih\VB akan\MD tampak\VB jangkung\JJ di\IN antara\NN</phrase><phrase type="np" id="561" ne="OTHER">karakter\NN fiksi\NN</phrase><phrase type="other">ciptaan\NN</phrase><phrase type="np" id="562" ne="OTHER">JRR\NNP Tolkien.\NNP</phrase>
</sentence>
<sentence id="125">
<phrase type="other">Dalam\IN prolog\NN</phrase><phrase type="np" id="563" ne="ORGANIZATION|OTHER">The\NNP Lord\NNP Of\NNP The\NNP Rings,\NNP</phrase><phrase type="np" id="564" ne="OTHER" coref="562">dia\PRP</phrase><phrase type="other">menggambarkan\VB bahwa\SC</phrase><phrase type="np-sbj" id="565" ne="PERSON">Hobbits\NNP</phrase><phrase type="other">berukuran\VB</phrase><phrase type="np" id="566" ne="OTHER">tinggi\NN badan\NN</phrase><phrase type="np" id="567" ne="NUM">dua\CD hingga\IN tiga\CD kaki\NND</phrase><phrase type="np" id="568" ne="OTHER|ORGANIZATION">sekitar\IN 60\CD cm\NND</phrase><phrase type="other">hingga\IN</phrase><phrase type="np" id="569" ne="NUM|THINGS">120\CD cm,\NND</phrase><phrase type="other">dan\CC rata-rata\NN tinggi\NN badan\NN</phrase><phrase type="np" id="570" ne="THINGS">mereka\PRP</phrase><phrase type="np" id="571" ne="OTHER">tiga\CD kaki\NND</phrase><phrase type="np" id="572" ne="OTHER">enam\CD inci\NND</phrase><phrase type="np" id="573" ne="OTHER|NUM">sekitar\IN 75\CD cm.\NND</phrase>
</sentence>
<sentence id="126">
<phrase type="other">Surat-surat\NN yang\SC ditulis\VB</phrase><phrase type="np" id="574" ne="OTHER" coref="564">si\DT pengarang,\NN</phrase><phrase type="other">yang\SC diterbitkan\VB setelah\SC</phrase><phrase type="np" id="575" ne="OTHER" coref="574">dia\PRP</phrase><phrase type="other">meninggal,\VB menggambarkan\VB</phrase><phrase type="np" id="576" ne="OTHER">penampakan\NN fisik\NN</phrase><phrase type="np" id="577" ne="OTHER">sosok\NN protagonis\NN</phrase><phrase type="np" id="578" ne="LOCATION|OTHER">The\NNP Hobbits,\NNP</phrase><phrase type="np" id="579" ne="LOCATION|OTHER">Bilbo\NNP Baggins,\NNP</phrase><phrase type="other">:\Z "\Z agak\RB tambun\JJ di\IN</phrase><phrase type="np" id="580" ne="OTHER">perut,\NN</phrase><phrase type="other">agak\RB pendek\JJ di\IN</phrase><phrase type="np" id="581" ne="THINGS">kaki\NN</phrase><phrase type="other">".\Z</phrase>
</sentence>
<sentence id="127">
<phrase type="other">"\Z</phrase><phrase type="np" id="582" ne="ORGANIZATION|OTHER">Wajah\NN bulat\JJ jenaka\JJ</phrase><phrase type="other">;\Z telinga\NN sedikit\RB runcing\JJ dan\CC seperti\IN</phrase><phrase type="np" id="583" ne="OTHER">kurcaci\NN</phrase><phrase type="other">;\Z</phrase><phrase type="np" id="584" ne="OTHER">rambut\NN pendek\JJ dan\CC keriting\JJ cokelat.\JJ</phrase><phrase type="np" id="585" ne="OTHER">Kaki\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="586" ne="EVENT">mata\NN kaki\NN</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="587" ne="EVENT">bawah\NN</phrase><phrase type="other">tertutup\VB dengan\IN</phrase><phrase type="np" id="588" ne="EVENT">bulu\NN cokelat,\JJ</phrase><phrase type="other">"\Z tambah\VB</phrase><phrase type="np" id="589" ne="OTHER" coref="575">nya.\PRP</phrase>
</sentence>
<sentence id="128">
<phrase type="other">Pencarian\NN</phrase><phrase type="np" id="590" ne="PERSON">casting\FW</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="591" ne="ORGANIZATION" coref="578">The\NNP Hobbit\NNP</phrase><phrase type="other">dijadwalkan\VB berlangsung\VB</phrase><phrase type="np" id="592" ne="OTHER|TIME">hari\NN Minggu\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="593" ne="FACILITY">National\NNP Dance\NNP and\NNP Drama\NNP Centre\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="594" ne="OTHER">Wellington.\NNP</phrase>
</sentence>
<sentence id="129">
<phrase type="other">Sutradara\NN</phrase><phrase type="np" id="595" ne="OTHER">kelahiran\NN Meksiko,\NNP</phrase><phrase type="np" id="596" ne="PERSON">Guillermo\NNP Del\NNP Toro\NNP</phrase><phrase type="other">telah\MD bersedia\VB menjadi\VB sutradara\NN</phrase><phrase type="np" id="597" ne="OTHER">film\NN tersebut,\PR</phrase><phrase type="other">tapi\CC menarik\VB diri\VB</phrase><phrase type="np" id="598" ne="OTHER|TIME">bulan\NN Juni\NNP</phrase><phrase type="other">dengan\IN alasan\NN</phrase><phrase type="np-sbj" id="599" ne="OTHER">rencana\NN produksi\NN</phrase><phrase type="other">sudah\MD tertunda\VB selama\IN</phrase><phrase type="np" id="600" ne="TIME|OTHER">dua\CD tahun.\NN</phrase>
</sentence>
<sentence id="130">
<phrase type="np" id="601" ne="OTHER">Jackson,\NNP</phrase><phrase type="other">yang\SC merebut\VB</phrase><phrase type="np" id="602" ne="PERSON">Oscar\NNP</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="603" ne="OTHER">sutradara\NN terbaik\JJ</phrase><phrase type="other">atas\IN karya\NN</phrase><phrase type="np" id="604" ne="OTHER" coref="601">nya\PRP</phrase><phrase type="np" id="605" ne="ORGANIZATION|OTHER">Lord\NNP of\NNP the\NNP Rings\NNP :\NNP The\NNP Return\NNP of\NNP the\NNP King,\NNP</phrase><phrase type="other">diperkirakan\VB akan\MD menggantikan\VB</phrase><phrase type="np" id="606" ne="OTHER">dia\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="607" ne="OTHER">kursi\NN sutradara,\NN</phrase><phrase type="other">meski\SC belum\NEG ada\VB</phrase><phrase type="np" id="608" ne="OTHER">pengumuman\NN resmi\JJ</phrase><phrase type="other">mengenai\IN</phrase><phrase type="np" id="609" ne="OTHER">pergantian\NN tersebut.\PR</phrase>
</sentence>
<sentence id="131">
<phrase type="np" id="610" ne="EVENT">Pencurian\NN ladang\NN anggur\NN</phrase>
</sentence>
<sentence id="132">
<phrase type="np" id="611" ne="EVENT">Pencuri\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="612" ne="LOCATION">Prancis\NNP</phrase><phrase type="other">masuk\VB ke\IN sebuah\NND</phrase><phrase type="np" id="613" ne="THINGS">ladang\NN anggur\NN</phrase><phrase type="other">dan\CC mencuri\VB panenan\NN anggur\NN jenis\NN</phrase><phrase type="np" id="614" ne="EVENT|OTHER">Cabernet\NNP Sauvignon,\NNP</phrase><phrase type="np" id="615" ne="OTHER">demikian\PR</phrase><phrase type="other">kata\VB</phrase><phrase type="np-sbj" id="616" ne="OTHER">polisi.\NN</phrase>
</sentence>
<sentence id="133">
<phrase type="np" id="617" ne="PERSON" coref="611">Mereka\PRP</phrase><phrase type="other">melakukan\VB</phrase><phrase type="np" id="618" ne="OTHER">aksi\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="619" ne="LOCATION|OTHER">Villeneuve\NNP -\Z les-Beziers\NNP</phrase><phrase type="np" id="620" ne="TIME|OTHER">Minggu\NNP malam\NN 26/\CD 9\CD</phrase><phrase type="other">memanfaatkan\VB terang\JJ bulan\JJ untuk\SC mencuri\VB hingga\IN</phrase><phrase type="np" id="621" ne="OTHER">30\CD ton\NND</phrase><phrase type="np" id="622" ne="OTHER">anggur\NN</phrase><phrase type="other">dengan\SC menggunakan\VB</phrase><phrase type="np" id="623" ne="OTHER">mesin.\NN</phrase>
</sentence>
<sentence id="134">
<phrase type="np-sbj" id="624" ne="TITLE|PERSON">Petani\NNP Roland\NNP Cavaille\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np-sbj" id="625" ne="OTHER">kejahatan\NN serupa\JJ</phrase><phrase type="other">pernah\MD terjadi\VB sebelum\SC</phrase><phrase type="np" id="626" ne="OTHER">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="627" ne="LOCATION|OTHER">Languedoc\NNP -\Z Roussillon,\NNP</phrase><phrase type="np" id="628" ne="OTHER|NUM">salah\CD satu\CD</phrase><phrase type="np" id="629" ne="NUM">daerah\NN penghasil\NN anggur\NN</phrase><phrase type="other">terbaik\JJ di\IN</phrase><phrase type="np" id="630" ne="OTHER" coref="612">Prancis.\NNP</phrase>
</sentence>
<sentence id="135">
<phrase type="np" id="631" ne="OTHER" coref="624">Ia\PRP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np-sbj" id="632" ne="OTHER">kejahatan\NN itu\PR</phrase><phrase type="other">bernilai\VB hingga\IN</phrase><phrase type="np" id="633" ne="OTHER">£\X 12.900.\CD</phrase>
</sentence>
<sentence id="136">
<phrase type="other">"\Z</phrase><phrase type="np" id="634" ne="OTHER">Mereka\PRP</phrase><phrase type="other">menggunakan\VB</phrase><phrase type="np" id="635" ne="OTHER">mesin\NN pemanen\NN anggur.\NN</phrase><phrase type="np" id="636" ne="OTHER">Itu\PR</phrase><phrase type="other">arti\NN</phrase><phrase type="np" id="637" ne="ORGANIZATION">nya\PRP</phrase><phrase type="np" id="638" ne="ORGANIZATION" coref="634">mereka\PRP</phrase><phrase type="other">tidak\NEG memerlukan\VB</phrase><phrase type="np" id="639" ne="OTHER">banyak\CD orang\NN</phrase><phrase type="other">untuk\SC melakukan\VB</phrase><phrase type="np" id="640" ne="OTHER">pemanenan,\NN</phrase><phrase type="np-sbj" id="641" ne="OTHER|PERSON">dua\CD orang\NN saja\RB</phrase><phrase type="other">cukup,\JJ "\Z kata\VB</phrase><phrase type="np-sbj" id="642" ne="OTHER" coref="631">Cavaille\NNP</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="643" ne="OTHER|LOCATION">harian\NNP Le\NNP Parisien.\NNP</phrase>
</sentence>
<sentence id="137">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="644" ne="OTHER">Ladang\NN itu\PR</phrase><phrase type="other">terletak\VB di\IN kawasan\NN yang\SC cukup\RB terpencil,\VB</phrase><phrase type="np" id="645" ne="OTHER">beberapa\CD kilometer\NND</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="646" ne="OTHER">desa\NN terdekat\JJ</phrase><phrase type="other">dan\CC di\IN</phrase><phrase type="np" id="647" ne="OTHER">dekat\JJ sungai.\NN</phrase><phrase type="other">Jadi\SC</phrase><phrase type="np" id="648" ne="OTHER" coref="638">mereka\PRP</phrase><phrase type="other">bisa\MD mencuri\VB dengan\IN aman.\JJ "\Z</phrase>
</sentence>
<sentence id="138">
<phrase type="np-sbj" id="649" ne="OTHER">Seorang\NND saksi\NN mata\NN</phrase><phrase type="other">mengaku\VB mendengar\VB</phrase><phrase type="np" id="650" ne="OTHER">suara\NN mesin\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="651" ne="OTHER">pagi\NN dini\JJ hari\JJ</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="652" ne="OTHER">polisi\NN</phrase><phrase type="other">meneliti\VB</phrase><phrase type="np" id="653" ne="OTHER">jejak\NN kaki\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="654" ne="OTHER">tempat\NN kejadian,\NN</phrase><phrase type="other">kata\VB</phrase><phrase type="np-sbj" id="655" ne="PERSON|OTHER">harian\NN setempat.\NN</phrase>
</sentence>
<sentence id="139">
<phrase type="np-sbj" id="656" ne="PERSON" coref="642">Cavaille\NNP</phrase><phrase type="other">menambahkan\VB bahwa\SC</phrase><phrase type="np-sbj" id="657" ne="OTHER">kawanan\NN pencuri\NN</phrase><phrase type="other">jelas\JJ sangat\RB profesional\JJ dan\CC tak\NEG akan\MD kesulitan\VB menjual\VB</phrase><phrase type="np" id="658" ne="TITLE|OTHER">anggur\NN curian\NN itu.\PR</phrase>
</sentence>
<sentence id="140">
<phrase type="other">Walau\SC</phrase><phrase type="np-sbj" id="659" ne="EVENT">ladang\NN anggur\NN</phrase><phrase type="other">diasuransikan,\VB</phrase><phrase type="np-sbj" id="660" ne="EVENT">pencurian\NN</phrase><phrase type="other">tidak\NEG termasuk\VB dalam\IN</phrase><phrase type="np" id="661" ne="OTHER">lindungan\NN asuransi.\NN</phrase>
</sentence>
<sentence id="141">
<phrase type="np-sbj" id="662" ne="PERSON" coref="656">Cavaille\NNP</phrase><phrase type="other">sangat\RB marah\JJ dengan\IN</phrase><phrase type="np" id="663" ne="OTHER">peristiwa\NN tersebut\PR</phrase><phrase type="other">dan\CC mengatakan\VB tidak\NEG tahu\VB sama\RB sekali\RB akan\IN siapa\SC yang\SC kira-kira\RB melakukan\VB</phrase><phrase type="np" id="664" ne="OTHER">pencurian.\NN</phrase>
</sentence>
<sentence id="142">
<phrase type="other">Sebelum\SC</phrase><phrase type="np" id="665" ne="OTHER">nya\PRP</phrase><phrase type="np" id="666" ne="OTHER" coref="662">ia\PRP</phrase><phrase type="other">sangat\RB mempercayai\VB adanya\NN</phrase><phrase type="np" id="667" ne="OTHER">rasa\NN solidaritas\NN</phrase><phrase type="np" id="668" ne="OTHER">antarsesama\NN pembuat\NN anggur.\NN</phrase>
</sentence>
<sentence id="143">
<phrase type="np-sbj" id="669" ne="OTHER">Kontes\NN karaoke\NN</phrase><phrase type="other">dapat\VB</phrase><phrase type="np" id="670" ne="OTHER">sejuta\CD pangsit\NN</phrase>
</sentence>
<sentence id="144">
<phrase type="other">Seorang\NND</phrase><phrase type="np" id="671" ne="EVENT">teknisi\NN telepon\NN</phrase><phrase type="other">Amerika\NNP meraih\VB</phrase><phrase type="np" id="672" ne="OTHER">hadiah\NN yang\SC tak\NEG biasa\JJ</phrase><phrase type="other">dari\IN penampilan\NN</phrase><phrase type="np" id="673" ne="OTHER" coref="671">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="674" ne="OTHER">kejuaraan\NN dunia\NN karaoke\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="675" ne="OTHER">Moskow,\NNP</phrase><phrase type="np" id="676" ne="OTHER">Rusia.\NNP</phrase>
</sentence>
<sentence id="145">
<phrase type="np-sbj" id="677" ne="PERSON" coref="673">Edward\NNP Pimentel\NNP</phrase><phrase type="other">mendapat\VB hadiah\NN satu\CD juta\CD</phrase><phrase type="np" id="678" ne="NUM|LOCATION">pangsit\NN Rusia\NNP</phrase><phrase type="other">setelah\SC keluar\VB sebagai\IN</phrase><phrase type="np" id="679" ne="OTHER">favorit\NN penonton\NN</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="680" ne="ORGANIZATION|OTHER">kontes\NN itu.\PR</phrase>
</sentence>
<sentence id="146">
<phrase type="np-sbj" id="681" ne="OTHER">Pihak\NN panitia\NN</phrase><phrase type="other">mengatakan\VB bila\SC</phrase><phrase type="np-sbj" id="682" ne="PERSON" coref="677">Pimentel\NNP</phrase><phrase type="other">makan\VB</phrase><phrase type="np" id="683" ne="NUM">100\CD pangsit\NN</phrase><phrase type="np" id="684" ne="OTHER">setiap\CD hari,\NN</phrase><phrase type="other">pasokan\NN yang\SC</phrase><phrase type="np" id="685" ne="OTHER" coref="682">ia\PRP</phrase><phrase type="other">miliki\VB baru\MD akan\MD habis\VB dalam\IN waktu\NN</phrase><phrase type="np" id="686" ne="FACILITY|OTHER">27\CD tahun.\NN</phrase>
</sentence>
<sentence id="147">
<phrase type="np-sbj" id="687" ne="OTHER" coref="685">Penyanyi\NN amatir\JJ ini\PR</phrase><phrase type="other">akan\MD mendapat\VB kupon\NN untuk\SC makan\VB</phrase><phrase type="np" id="688" ne="OTHER">pangsit\NN</phrase><phrase type="other">kapan\SC pun\RP</phrase><phrase type="np" id="689" ne="OTHER" coref="687">dia\PRP</phrase><phrase type="other">mau.\MD</phrase>
</sentence>
<sentence id="148">
<phrase type="np" id="690" ne="OTHER" coref="689">Ia\PRP</phrase><phrase type="other">gagal\VB meraih\VB</phrase><phrase type="np" id="691" ne="OTHER">angka\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="692" ne="OTHER">para\DT juri,\NN</phrase><phrase type="other">namun\CC menarik\VB</phrase><phrase type="np" id="693" ne="OTHER">perhatian\NN penonton\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="694" ne="OTHER|FACILITY">nomor\NN klasik\JJ</phrase><phrase type="np" id="695" ne="FACILITY">Rhythm\FW</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="696" ne="OTHER">Blues.\FW</phrase>
</sentence>
<sentence id="149">
<phrase type="other">Pemenang\NN</phrase><phrase type="np" id="697" ne="EVENT">kejuaraan\NN karaoke\NN dunia\NN</phrase><phrase type="other">ini\PR berasal\VB dari\IN</phrase><phrase type="np" id="698" ne="LOCATION">Finlandia\NNP</phrase><phrase type="other">untuk\IN kategori\NN penyanyi\NN</phrase><phrase type="np" id="699" ne="THINGS">pria\NN dan\CC wanita\NN</phrase><phrase type="other">terbaik.\JJ</phrase>
</sentence>
<sentence id="150">
<phrase type="np" id="700" ne="THINGS">Sam\NNP Moudden\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="701" ne="THINGS">Maria\NNP Saarimaa\NNP -\NNP Ylitalo\NNP</phrase><phrase type="other">mendapat\VB hadiah\NN</phrase><phrase type="np" id="702" ne="OTHER|EVENT">uang\NN tunai,\NN</phrase><phrase type="np" id="703" ne="EVENT">kontrak\NN rekaman\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="704" ne="OTHER">mesin\NN karaoke.\NN</phrase>
</sentence>
<sentence id="151">
<phrase type="np" id="705" ne="OTHER">Olahragawan,\NN</phrase><phrase type="np" id="706" ne="OTHER">panutan\NN</phrase><phrase type="other">dan\CC merokok\VB</phrase>
</sentence>
<sentence id="152">
<phrase type="other">Ketika\SC</phrase><phrase type="np-sbj" id="707" ne="ORGANIZATION">Wayne\NNP Rooney\NNP</phrase><phrase type="other">tertangkap\VB basah\VB merokok\VB di\IN</phrase><phrase type="np" id="708" ne="OTHER">beberapa\CD kesempatan\NN</phrase><phrase type="other">saat\SC jeda\NN libur\VB antara\IN akhir\NN</phrase><phrase type="np" id="709" ne="ORGANIZATION">Piala\NNP Dunia\NNP</phrase><phrase type="other">dan\CC dimulainya\NN</phrase><phrase type="np" id="710" ne="OTHER">musim\NN kompetisi\NN</phrase><phrase type="np" id="711" ne="PERSON|OTHER">Liga\NNP Primer,\NNP</phrase><phrase type="np" id="712" ne="OTHER" coref="707">ia\PRP</phrase><phrase type="other">dikecam\VB habis.\RB</phrase>
</sentence>
<sentence id="153">
<phrase type="other">Sebagai\IN seorang\NND</phrase><phrase type="np" id="713" ne="OTHER">pesepak\NN bola\NN profesional,\JJ</phrase><phrase type="np" id="714" ne="OTHER" coref="712">ia\PRP</phrase><phrase type="other">sepertinya\MD harus\MD menjaga\VB kesehatan\NN tubuh\NN</phrase><phrase type="np" id="715" ne="OTHER" coref="714">nya\PRP</phrase><phrase type="other">tanpa\SC terkecuali,\VB bahkan\RB ketika\SC musim\NN libur.\VB</phrase>
</sentence>
<sentence id="154">
<phrase type="other">Namun\CC</phrase><phrase type="np-sbj" id="716" ne="FACILITY" coref="715">Rooney\NNP</phrase><phrase type="np" id="717" ne="OTHER">tidak\NEG sendirian.\NN</phrase>
</sentence>
<sentence id="155">
<phrase type="np" id="718" ne="PERSON">Banyak\CD olahragawan\NN</phrase><phrase type="other">terkenal\VB melakukan\VB</phrase><phrase type="np" id="719" ne="OTHER">nya.\PRP</phrase>
</sentence>
<sentence id="156">
<phrase type="np" id="720" ne="THINGS">Zinedine\NNP Zidane\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="721" ne="THINGS">pebasket\NNP Michael\NNP Jordan\NNP</phrase><phrase type="other">melakukan\VB</phrase><phrase type="np" id="722" ne="OTHER">nya.\PRP</phrase>
</sentence>
<sentence id="157">
<phrase type="other">Persoalan\NN</phrase><phrase type="np" id="723" ne="OTHER">nya\PRP</phrase><phrase type="other">apakah\WH</phrase><phrase type="np" id="724" ne="OTHER" coref="718">mereka\PRP</phrase><phrase type="other">harus\MD menghentikan\VB</phrase><phrase type="np" id="725" ne="OTHER">kebiasaan\NN itu\PR</phrase><phrase type="other">untuk\SC memberi\VB</phrase><phrase type="np" id="726" ne="OTHER">contoh\NN yang\SC lebih\RB baik\JJ</phrase><phrase type="other">karena\SC</phrase><phrase type="np" id="727" ne="OTHER" coref="724">mereka\PRP</phrase><phrase type="other">diidolakan\VB</phrase><phrase type="np" id="728" ne="OTHER">banyak\CD orang\NN</phrase><phrase type="other">?\Z</phrase>
</sentence>
<sentence id="158">
<phrase type="np" id="729" ne="THINGS">Bintang\NN idola\NN</phrase>
</sentence>
<sentence id="159">
<phrase type="np" id="730" ne="OTHER|NUM">Sekitar\RB 6\CD %\SYM</phrase><phrase type="other">dari\IN anak\NN berusia\VB</phrase><phrase type="np" id="731" ne="NUM">11\CD hingga\IN 15\CD tahun\NN</phrase><phrase type="other">mengaku\VB sudah\MD menjadi\VB</phrase><phrase type="np" id="732" ne="OTHER">perokok\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="733" ne="OTHER">statistik\NN</phrase><phrase type="other">menunjukkan\VB</phrase><phrase type="np" id="734" ne="OTHER">mereka\PRP</phrase><phrase type="other">yang\SC merokok\VB sebelum\SC berusia\VB</phrase><phrase type="np" id="735" ne="NUM">16\CD</phrase><phrase type="other">adalah\VB yang\SC paling\RB sulit\JJ menghentikan\VB</phrase><phrase type="np" id="736" ne="OTHER">kebiasaan\NN itu.\PR</phrase>
</sentence>
<sentence id="160">
<phrase type="np" id="737" ne="PERSON|OTHER">Jean\NNP King,\NNP</phrase><phrase type="np" id="738" ne="TITLE" coref="737">direktur\NN pengontrolan\NN tembakau\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="739" ne="LOCATION">Cancer\NNP Research\NNP UK\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="740" ne="OTHER">atlet,\NN</phrase><phrase type="other">terutama\JJ</phrase><phrase type="np" id="741" ne="OTHER">pemain\NN sepak\NN bola,\NN</phrase><phrase type="other">diidolakan\VB dan\CC karena\IN status\NN</phrase><phrase type="np" id="742" ne="OTHER" coref="740">nya\PRP</phrase><phrase type="np" id="743" ne="OTHER" coref="742">mereka\PRP</phrase><phrase type="other">perlu\MD menempatkan\VB diri\VB sebagai\IN</phrase><phrase type="np" id="744" ne="OTHER">figur\NN panutan.\NN</phrase>
</sentence>
<sentence id="161">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="745" ne="EVENT">Remaja\NN</phrase><phrase type="other">sangat\RB menyukai\VB</phrase><phrase type="np" id="746" ne="OTHER">olahraga\NN</phrase><phrase type="other">dan\CC ada\VB</phrase><phrase type="np" id="747" ne="THINGS">kaitan\NN</phrase><phrase type="other">antara\IN</phrase><phrase type="np" id="748" ne="OTHER">olahraga\NN dan\CC kemewahan,\NN</phrase><phrase type="other">"\Z kata\VB</phrase><phrase type="np" id="749" ne="OTHER" coref="738">nya.\PRP</phrase>
</sentence>
<sentence id="162">
<phrase type="other">"\Z</phrase><phrase type="np" id="750" ne="OTHER" coref="745">Mereka\PRP</phrase><phrase type="other">akan\MD mulai\MD merokok\VB kalau\SC melihat\VB idola\NN</phrase><phrase type="np" id="751" ne="OTHER" coref="750">mereka\PRP</phrase><phrase type="other">merokok.\VB "\Z</phrase>
</sentence>
<sentence id="163">
<phrase type="np" id="752" ne="PERSON|OTHER">Anna\NNP Gilmore,\NNP</phrase><phrase type="np" id="753" ne="OTHER">guru\NN besar\NN ilmu\NN kesehatan\NN masyarakat\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="754" ne="FACILITY">Universitas\NNP Bath,\NNP</phrase><phrase type="other">sepakat\JJ bahwa\SC</phrase><phrase type="np-sbj" id="755" ne="OTHER">atlet\NN</phrase><phrase type="other">mempunyai\VB</phrase><phrase type="np" id="756" ne="OTHER">tanggung\NN jawab\NN</phrase><phrase type="other">kepada\IN penggemar\NN</phrase><phrase type="np" id="757" ne="OTHER" coref="755">nya\PRP</phrase><phrase type="other">untuk\SC menjadi\VB</phrase><phrase type="np" id="758" ne="OTHER">panutan.\NN</phrase>
</sentence>
<sentence id="164">
<phrase type="other">"\Z</phrase><phrase type="np" id="759" ne="OTHER">Kita\PRP</phrase><phrase type="other">tahu\VB</phrase><phrase type="np-sbj" id="760" ne="OTHER">anak-anak\NN itu\PR</phrase><phrase type="other">terpengaruh\VB oleh\IN</phrase><phrase type="np" id="761" ne="OTHER">orang\NN</phrase><phrase type="other">di\IN sekeliling\NN</phrase><phrase type="np" id="762" ne="OTHER" coref="760">mereka.\PRP</phrase><phrase type="np-sbj" id="763" ne="PERSON">Penelitian\NN</phrase><phrase type="other">membuktikan\VB</phrase><phrase type="np" id="764" ne="OTHER">mereka\PRP</phrase><phrase type="other">yang\SC tumbuh\VB dengan\IN</phrase><phrase type="np" id="765" ne="OTHER">orang\NN tua\NN perokok,\NN</phrase><phrase type="np-sbj" id="766" ne="NUM">90\CD %\SYM</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="767" ne="OTHER">perokok.\NN</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="165">
<phrase type="other">"\Z</phrase><phrase type="np" id="768" ne="OTHER">Kita\PRP</phrase><phrase type="other">juga\RB tahu\VB bahwa\SC</phrase><phrase type="np" id="769" ne="OTHER">sponsor\NN pabrik\NN rokok\NN</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="770" ne="OTHER">olahraga\NN</phrase><phrase type="other">ikut\VB mempengaruhi\VB</phrase><phrase type="np" id="771" ne="OTHER" coref="760">anak-anak\NN</phrase><phrase type="other">untuk\SC merokok.\VB Jadi\SC</phrase><phrase type="np" id="772" ne="OTHER">panutan\NN yang\SC negatif,\JJ</phrase><phrase type="other">termasuk\VB</phrase><phrase type="np" id="773" ne="OTHER">olahragawan,\NN</phrase><phrase type="other">memiliki\VB</phrase><phrase type="np" id="774" ne="OTHER">efek\NN yang\SC kurang\RB baik.\JJ</phrase><phrase type="other">"\Z</phrase>
</sentence>
<sentence id="166">
<phrase type="np" id="775" ne="THINGS">Tekanan\NN lingkungan\NN</phrase>
</sentence>
<sentence id="167">
<phrase type="other">Namun\CC</phrase><phrase type="np" id="776" ne="PERSON|OTHER">Simon\NNP Clark,\NNP</phrase><phrase type="other">direktur\NN</phrase><phrase type="np" id="777" ne="TITLE">kelompok\NN lobi\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="778" ne="OTHER">perokok\NN</phrase><phrase type="np" id="779" ne="OTHER">Forest,\NNP</phrase><phrase type="other">mengatakan\VB menyalahkan\VB</phrase><phrase type="np" id="780" ne="OTHER|ORGANIZATION">olahragawan\NN idola\NN</phrase><phrase type="other">sebagai\IN penyebab\NN remaja\NN merokok\VB tidak\NEG lah\RP tepat.\JJ</phrase>
</sentence>
<sentence id="168">
<phrase type="other">"\Z</phrase><phrase type="np-sbj" id="781" ne="TITLE">Penelitian\NN</phrase><phrase type="other">membuktikan\VB bahwa\SC</phrase><phrase type="np" id="782" ne="OTHER">tekanan\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="783" ne="OTHER">lingkungan\NN pergaulan\NN sekitar\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="784" ne="TITLE">anggota\NN keluarga\NN</phrase><phrase type="other">lah\RP yang\SC mendorong\VB</phrase><phrase type="np" id="785" ne="OTHER">remaja\NN</phrase><phrase type="other">untuk\SC merokok,\VB "\Z kata\VB</phrase><phrase type="np" id="786" ne="OTHER" coref="776">nya.\PRP</phrase>
</sentence>
<sentence id="169">
<phrase type="other">"\Z Foto\NN</phrase><phrase type="np" id="787" ne="EVENT">selebriti\NN atau\CC olahragawan\NN</phrase><phrase type="other">merokok\VB</phrase><phrase type="np" id="788" ne="OTHER">tidak\NEG banyak\CD</phrase><phrase type="other">berpengaruh.\VB "\Z</phrase>
</sentence>
<sentence id="170">
<phrase type="other">"\Z Yang\DT bertanggung\VB jawab\VB atas\IN banyak\CD</phrase><phrase type="np" id="789" ne="OTHER">nya\PRP</phrase><phrase type="other">remaja\NN yang\SC merokok\VB adalah\VB</phrase><phrase type="np" id="790" ne="OTHER">mereka\PRP</phrase><phrase type="other">yang\SC memberi\VB</phrase><phrase type="np" id="791" ne="OTHER">akses\NN</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="792" ne="OTHER">rokok\NN itu\PR</phrase><phrase type="np" id="793" ne="OTHER">sendiri.\NN</phrase><phrase type="np-sbj" id="794" ne="OTHER">Itu\PR lah\RP</phrase><phrase type="other">yang\SC harus\MD dikejar.\VB "\Z</phrase>
</sentence>
<sentence id="171">
<phrase type="other">"\Z Kalau\SC</phrase><phrase type="np" id="795" ne="PERSON">Rooney\NNP</phrase><phrase type="other">maupun\CC</phrase><phrase type="np" id="796" ne="OTHER">bintang\NN idola\NN</phrase><phrase type="other">yang\SC lain,\JJ</phrase><phrase type="np" id="797" ne="OTHER" coref="796">mereka\PRP</phrase><phrase type="other">ini\PR</phrase><phrase type="np" id="798" ne="OTHER">orang\NN dewasa.\JJ</phrase><phrase type="np" id="799" ne="OTHER" coref="797">Mereka\PRP</phrase><phrase type="other">boleh\MD saja\RB merokok\VB tanpa\SC harus\MD dituding\VB bertanggung\VB jawab\VB terhadap\IN apa\SC yang\SC di\IN luar\NN kekuasaan\NN</phrase><phrase type="np" id="800" ne="OTHER" coref="799">nya.\PRP</phrase><phrase type="other">"\Z '\Z</phrase>
</sentence>
<sentence id="172">
<phrase type="np-sbj" id="801" ne="TITLE|PERSON">Menteri\NNP Keuangan\NNP Sri\NNP Mulyani\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="802" ne="OTHER">koreksi\NN tajam\JJ</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="803" ne="OTHER|TITLE|ORGANIZATION">Indeks\NNP Harga\NNP Saham\NNP Gabungan\NNP</phrase><phrase type="np" id="804" ne="ORGANIZATION">IHSG\NNP</phrase><phrase type="other">hingga\IN</phrase><phrase type="np" id="805" ne="OTHER|NUM">sekitar\RB 4\CD persen\CD</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="806" ne="OTHER|TIME">perdagangan\NN Rabu\NNP 10/\CD 1\CD</phrase><phrase type="np" id="807" ne="NUM|OTHER">hanya\RB efek\NN sesaat\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="808" ne="OTHER">faktor-faktor\NN regional\JJ</phrase><phrase type="other">seperti\IN penurunan\NN</phrase><phrase type="np" id="809" ne="OTHER">harga\NN komoditi\NN perkebunan\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="810" ne="THINGS">krisis\NN finansial\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="811" ne="OTHER">Thailand.\NNP</phrase>
</sentence>
<sentence id="173">
<phrase type="other">Dalam\IN</phrase><phrase type="np" id="812" ne="OTHER">jumpa\NN pers\NN</phrase><phrase type="other">bersama\IN Dirut\NN</phrase><phrase type="np" id="813" ne="ORGANIZATION|LOCATION">Bursa\NNP Efek\NNP Jakarta\NNP</phrase><phrase type="np" id="814" ne="OTHER">BEJ,\NNP</phrase><phrase type="np" id="815" ne="PERSON">Erry\NNP Firmansyah\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="816" ne="OTHER|LOCATION">gedung\NNP Depkeu\NNP Jakarta,\NNP</phrase><phrase type="np" id="817" ne="TIME">Rabu\NNP malam,\NN</phrase><phrase type="np-sbj" id="818" ne="TIME" coref="801">Menkeu\NN</phrase><phrase type="other">menjelaskan\VB</phrase><phrase type="np" id="819" ne="OTHER">beberapa\CD</phrase><phrase type="np" id="820" ne="OTHER">faktor\NN ekonomi\NN</phrase><phrase type="other">Indonesia\NNP justru\RB membaik.\VB</phrase>
</sentence>
<sentence id="174">
<phrase type="np" id="821" ne="PERSON">Kita\PRP</phrase><phrase type="other">melihat\VB</phrase><phrase type="np" id="822" ne="OTHER">faktor\NN inflasi\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="823" ne="OTHER">makanan\NN</phrase><phrase type="other">akan\MD segera\RB hilang\VB yang\SC terkonfirmasi\VB dari\IN</phrase><phrase type="np" id="824" ne="ORGANIZATION">harga\NN beras\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="825" ne="OTHER">semua\CD provinsi,\NN</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="826" ne="OTHER" coref="818">nya.\PRP</phrase>
</sentence>
<sentence id="175">
<phrase type="np-sbj" id="827" ne="OTHER">Demikian\PR pula\RB</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="828" ne="OTHER">harga\NN minyak.\NN</phrase>
</sentence>
<sentence id="176">
<phrase type="other">Kondisi\NN</phrase><phrase type="np" id="829" ne="THINGS">APBN\NN 2007\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="830" ne="THINGS">dua\CD pekan\NN awal,\NN</phrase><phrase type="other">secara\IN umum\JJ baik\JJ dan\CC</phrase><phrase type="np-sbj" id="831" ne="THINGS">pemerintah\NN</phrase><phrase type="other">akan\MD terus\RB menjalankan\VB kebijakan\NN yang\SC sound\X tepat,\JJ</phrase><phrase type="np" id="832" ne="OTHER">red\NN</phrase><phrase type="other">sehingga\SC tercipta\VB</phrase><phrase type="np" id="833" ne="OTHER">konsistensi\NN kebijakan\NN</phrase><phrase type="other">yang\SC memberikan\VB</phrase><phrase type="np" id="834" ne="OTHER">keyakinan\NN</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="835" ne="OTHER">investor.\NN</phrase>
</sentence>
<sentence id="177">
<phrase type="other">Menurut\IN</phrase><phrase type="np" id="836" ne="OTHER">data\NN Depkeu,\NNP</phrase><phrase type="np" id="837" ne="OTHER">net\FW buy\FW</phrase><phrase type="np" id="838" ne="OTHER">obligasi\NN negara\NN</phrase><phrase type="other">atau\CC</phrase><phrase type="np" id="839" ne="ORGANIZATION">SUN\NN</phrase><phrase type="other">oleh\IN</phrase><phrase type="np" id="840" ne="OTHER">investor\NN asing\JJ</phrase><phrase type="np" id="841" ne="OTHER">non\FW residence\FW</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="842" ne="OTHER">saat\NN ini\PR</phrase><phrase type="other">mencapai\VB</phrase><phrase type="np" id="843" ne="THINGS|NUM">Rp\SYM 20,3\CD triliun\CD</phrase><phrase type="other">dari\IN posisi\NN</phrase><phrase type="np" id="844" ne="OTHER|TIME">awal\NN 2006\CD</phrase><phrase type="np" id="845" ne="TIME">Rp\SYM 4,2\CD triliun.\CD</phrase>
</sentence>
<sentence id="178">
<phrase type="other">Sedangkan\CC untuk\IN</phrase><phrase type="np" id="846" ne="OTHER">net\FW buy\FW</phrase><phrase type="np" id="847" ne="OTHER">saham\NN</phrase><phrase type="other">oleh\IN</phrase><phrase type="np" id="848" ne="OTHER" coref="840">investor\NN asing\JJ</phrase><phrase type="np" id="849" ne="OTHER">non\FW residence\FW</phrase><phrase type="other">mencapai\VB</phrase><phrase type="np" id="850" ne="THINGS|NUM">Rp\SYM 17,3\CD triliun\CD</phrase><phrase type="other">dari\IN posisi\NN</phrase><phrase type="np" id="851" ne="OTHER">awal\NN tahun\NN</phrase><phrase type="np" id="852" ne="TIME">Rp\SYM 2,1\CD triliun.\CD</phrase>
</sentence>
<sentence id="179">
<phrase type="other">"\Z Kalau\SC ditanya\VB</phrase><phrase type="np-sbj" id="853" ne="OTHER">ini\PR</phrase><phrase type="other">baik\JJ atau\CC tidak,\NEG</phrase><phrase type="np" id="854" ne="OTHER">saya\PRP</phrase><phrase type="other">katakan\VB baik\JJ dan\CC</phrase><phrase type="np" id="855" ne="OTHER">mereka\PRP</phrase><phrase type="np" id="856" ne="OTHER">investor\NN asing,\JJ</phrase><phrase type="np" id="857" ne="OTHER">red\NN</phrase><phrase type="other">tidak\NEG lari,\VB "\Z kata\VB</phrase><phrase type="np-sbj" id="858" ne="OTHER" coref="854">Menkeu.\NNP</phrase>
</sentence>
<sentence id="180">
<phrase type="other">Di\IN</phrase><phrase type="np" id="859" ne="OTHER">sektor\NN riil,\JJ</phrase><phrase type="np-sbj" id="860" ne="OTHER">pemerintah\NN</phrase><phrase type="other">telah\MD mengeluarkan\VB</phrase><phrase type="np" id="861" ne="ORGANIZATION|OTHER|TIME">PP\NNP No.\NNP 1\NNP tahun\NNP 2007\NNP</phrase><phrase type="other">sebagai\IN revisi\NN</phrase><phrase type="np" id="862" ne="EVENT|TIME">PP\NNP 148\NNP</phrase><phrase type="other">tentang\IN pemberian\NN fasilitas\NN</phrase><phrase type="np" id="863" ne="ORGANIZATION">PPh\NN</phrase><phrase type="np" id="864" ne="ORGANIZATION">Pajak\NN Penghasilan\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="865" ne="OTHER">penanaman\NN modal\NN</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="866" ne="OTHER">bidang\NN tertentu\JJ</phrase><phrase type="other">dan\CC atau\CC di\IN daerah\NN terpencil.\VB</phrase>
</sentence>
<sentence id="181">
<phrase type="other">"\Z Pada\IN</phrase><phrase type="np" id="867" ne="TIME">hari\NN ini,\PR</phrase><phrase type="np-sbj" id="868" ne="TIME">Presiden\NN</phrase><phrase type="other">baru\MD mengeluarkan\VB</phrase><phrase type="np" id="869" ne="TITLE">Perpres\NN</phrase><phrase type="other">tentang\IN pembebasan\NN PPN\NN</phrase><phrase type="np" id="870" ne="ORGANIZATION">produk\NN primer\JJ</phrase><phrase type="other">yang\SC berlaku\VB efektif\JJ</phrase><phrase type="np" id="871" ne="OTHER">Januari,\NNP</phrase><phrase type="other">"\Z ujar\VB</phrase><phrase type="np" id="872" ne="OTHER" coref="858">nya.\PRP</phrase>
</sentence>
<sentence id="182">
<phrase type="np-sbj" id="873" ne="EVENT" coref="860">Pemerintah\NN</phrase><phrase type="other">juga\RB telah\MD berkomitmen\VB untuk\SC meningkatkan\VB</phrase><phrase type="np" id="874" ne="OTHER">produksi\NN padi\NN nasional\JJ</phrase><phrase type="other">melalui\IN</phrase><phrase type="np" id="875" ne="OTHER">program-program\NN khusus\JJ</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="876" ne="OTHER">pendanaan\NN</phrase><phrase type="other">sehingga\SC</phrase><phrase type="np-sbj" id="877" ne="OTHER">harga\NN beras\NN</phrase><phrase type="other">dapat\MD terkendali.\VB</phrase>
</sentence>
<sentence id="183">
<phrase type="other">Produksi\NN</phrase><phrase type="np" id="878" ne="TITLE|PERSON">Crude\FW Palm\FW Oil\FW</phrase><phrase type="np" id="879" ne="PERSON" coref="878">CPO\FW</phrase><phrase type="np" id="880" ne="ORGANIZATION">PT\NNP Astra\NNP Agro\NNP Lestari\NNP</phrase><phrase type="np" id="881" ne="ORGANIZATION" coref="881">AALI\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="882" ne="TIME">Oktober\NNP 2007\CD</phrase><phrase type="other">naik\VB</phrase><phrase type="np" id="883" ne="OTHER|NUM">sebesar\JJ 11,6\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="884" ne="NUM">88.343\CD ton\NND</phrase><phrase type="other">dibanding\VB</phrase><phrase type="np" id="885" ne="TIME">September\NNP</phrase><phrase type="other">yang\SC</phrase><phrase type="np" id="886" ne="OTHER|NUM">hanya\RB 79.161\CD ton.\NND</phrase>
</sentence>
<sentence id="184">
<phrase type="np-sbj" id="887" ne="TITLE|ORGANIZATION|OTHER">Direktur\NNP AALI\NNP Santoso,\NNP</phrase><phrase type="other">dalam\IN laporan\NN</phrase><phrase type="np" id="888" ne="OTHER" coref="887">nya\PRP</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="889" ne="OTHER">bursa,\NN</phrase><phrase type="np" id="890" ne="OTHER">Senin,\NNP</phrase><phrase type="other">mengatakan,\VB</phrase><phrase type="np-sbj" id="891" ne="OTHER">peningkatan\NN produksi\NN ini\PR</phrase><phrase type="other">lebih\RB disebabkan\VB oleh\IN tercukupinya\NN</phrase><phrase type="np" id="892" ne="OTHER">curah\NN hujan\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="893" ne="OTHER">penghujung\NN tahun\NN ini.\PR</phrase>
</sentence>
<sentence id="185">
<phrase type="other">Namun\CC ,lanjut\VB</phrase><phrase type="np-sbj" id="894" ne="OTHER" coref="888">Santoso,\NNP</phrase><phrase type="np" id="895" ne="OTHER">produksi\NN</phrase><phrase type="other">secara\IN</phrase><phrase type="np" id="896" ne="OTHER">total\NN</phrase><phrase type="np" id="897" ne="TIME">Januari\NNP</phrase><phrase type="other">hingga\IN</phrase><phrase type="np" id="898" ne="TIME">Oktober\NNP</phrase><phrase type="other">2007\CD yang\SC mencapai\VB</phrase><phrase type="np" id="899" ne="NUM|THINGS">730.297\CD ton\NND</phrase><phrase type="other">masih\MD mengalami\VB penurunan\NN</phrase><phrase type="np" id="900" ne="OTHER|NUM">sebesar\JJ 5,9\CD persen\CD</phrase><phrase type="other">dibanding\VB</phrase><phrase type="np" id="901" ne="OTHER">periode\NN sama\JJ</phrase><phrase type="other">2006.\CD</phrase>
</sentence>
<sentence id="186">
<phrase type="other">Pada\IN periode\NN</phrase><phrase type="np" id="902" ne="TIME">10\CD bulan\NN</phrase><phrase type="other">pertama,\OD produksi\NN</phrase><phrase type="np" id="903" ne="OTHER|ORGANIZATION">super\FW CPO\FW</phrase><phrase type="np" id="904" ne="ORGANIZATION" coref="881">AALI\NNP</phrase><phrase type="other">naik\VB</phrase><phrase type="np" id="905" ne="OTHER|NUM">sebesar\JJ 4,6\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="906" ne="NUM|THINGS">482.302\CD ton\NND</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="907" ne="NUM">504.469\CD ton.\NND</phrase>
</sentence>
<sentence id="187">
<phrase type="np-sbj" id="908" ne="ORGANIZATION|LOCATION">Bank\NNP Indonesia\NNP</phrase><phrase type="other">memperkirakan\VB</phrase><phrase type="np" id="909" ne="OTHER|THINGS">pertumbuhan\NN kredit\NN perbankan\NN</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="910" ne="TIME">2008\CD</phrase><phrase type="other">akan\MD lebih\RB tinggi\JJ dibanding\VB</phrase><phrase type="np" id="911" ne="OTHER">target\NN perbankan\NN</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="912" ne="OTHER">tahun\NN ini\PR</phrase><phrase type="np" id="913" ne="OTHER|NUM">sebesar\JJ 22\CD persen.\CD</phrase>
</sentence>
<sentence id="188">
<phrase type="np" id="914" ne="OTHER">Saya\PRP</phrase><phrase type="other">kira\VB lebih\RB tinggi\JJ dari\IN</phrase><phrase type="np" id="915" ne="OTHER">target\NN tahun\NN ini.\PR</phrase>
</sentence>
<sentence id="189">
<phrase type="np" id="916" ne="OTHER">Tahun\NN ini\PR</phrase><phrase type="other">akan\MD</phrase><phrase type="np" id="917" ne="NUM">22\CD persen.\CD</phrase>
</sentence>
<sentence id="190">
<phrase type="np" id="918" ne="OTHER">angka\NN terakhir\OD</phrase><phrase type="np" id="919" ne="OTHER|TIME">bulan\NN Agustus\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="920" ne="OTHER">angka\NN sementara\RB</phrase><phrase type="other">sampai\IN</phrase><phrase type="np" id="921" ne="TIME|OTHER">minggu\NN terakhir\OD</phrase><phrase type="other">September\NNP sudah\MD mendekati\VB</phrase><phrase type="np" id="922" ne="NUM">23\CD persen.\CD</phrase>
</sentence>
<sentence id="191">
<phrase type="other">Menurut\IN</phrase><phrase type="np" id="923" ne="OTHER">Halim,\NNP</phrase><phrase type="np-sbj" id="924" ne="OTHER">peningkatan\NN pertumbuhan\NN ini\PR</phrase><phrase type="np" id="925" ne="OTHER">sejalan\NN</phrase><phrase type="other">dengan\IN perkiraan\NN membaiknya\NN</phrase><phrase type="np" id="926" ne="OTHER">kondisi\NN makro\JJ ekonomi\NN</phrase><phrase type="other">dan\CC menguatnya\NN</phrase><phrase type="np" id="927" ne="OTHER">kinerja\NN perbankan\NN nasional\JJ</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="928" ne="OTHER">2008.\CD</phrase>
</sentence>
<sentence id="192">
<phrase type="other">Secara\IN fundamental\JJ perbankan\NN</phrase><phrase type="np" id="929" ne="OTHER">kita\PRP</phrase><phrase type="other">lebih\RB kuat\JJ seperti\SC</phrase><phrase type="np" id="930" ne="OTHER">kita\PRP</phrase><phrase type="other">lihat\VB dalam\IN kejadian\NN '\Z</phrase><phrase type="np" id="931" ne="TITLE">subprime\FW mortgage\FW</phrase><phrase type="other">'\Z misal\NN</phrase><phrase type="np" id="932" ne="OTHER">nya.\PRP</phrase>
</sentence>
<sentence id="193">
<phrase type="np" id="933" ne="PERSON">Kita\PRP</phrase><phrase type="other">tak\NEG melihat\VB</phrase><phrase type="np" id="934" ne="OTHER">dampak\NN yang\SC terlalu\RB negatif\JJ</phrase><phrase type="other">karena\SC mampu\JJ menyerap\VB kerugian\NN</phrase><phrase type="np" id="935" ne="OTHER">nya\PRP</phrase><phrase type="other">dengan\SC menggunakan\VB</phrase><phrase type="np" id="936" ne="OTHER">pendekatan\NN pasar.\NN</phrase>
</sentence>
<sentence id="194">
<phrase type="np-sbj" id="937" ne="OTHER">Ini\PR</phrase><phrase type="other">menunjukkan\VB</phrase><phrase type="np-sbj" id="938" ne="OTHER">sistem\NN</phrase><phrase type="other">berjalan.\VB</phrase>
</sentence>
<sentence id="195">
<phrase type="other">Ke\IN</phrase><phrase type="np" id="939" ne="OTHER">depan\NN</phrase><phrase type="np" id="940" ne="OTHER|ORGANIZATION">ekonomi\NN RI\NNP</phrase><phrase type="other">ekspansi\NN</phrase><phrase type="np" id="941" ne="ORGANIZATION" coref="940">nya\PRP</phrase><phrase type="other">akan\MD lebih\RB cepat,\JJ</phrase><phrase type="np-sbj" id="942" ne="OTHER">kredit\NN</phrase><phrase type="other">lebih\RB tinggi,\JJ kata\VB</phrase><phrase type="np" id="943" ne="OTHER" coref="923">nya.\PRP</phrase>
</sentence>
<sentence id="196">
<phrase type="other">Mengenai\IN kekhawatiran\NN besar\JJ</phrase><phrase type="np" id="944" ne="OTHER" coref="943">nya\PRP</phrase><phrase type="other">kredit\NN akan\MD mengancam\VB</phrase><phrase type="np" id="945" ne="OTHER">kondisi\NN perbankan,\NN</phrase><phrase type="other">akibat\IN meningkatnya\NN kredit\NN bermasalah.\VB</phrase>
</sentence>
<sentence id="197">
<phrase type="np-sbj" id="946" ne="PERSON" coref="923">Halim\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np-sbj" id="947" ne="OTHER">ketahanan\NN perbankan\NN</phrase><phrase type="np" id="948" ne="OTHER">saat\NN ini\PR</phrase><phrase type="other">lebih\RB baik\JJ karena\IN penerapan\NN</phrase><phrase type="np" id="949" ne="OTHER">risk\FW management\FW</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="950" ne="OTHER">good\FW corporate\FW governance\FW</phrase><phrase type="np" id="951" ne="ORGANIZATION" coref="950">GCG\FW</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="952" ne="OTHER">pengawasan\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="953" ne="ORGANIZATION">bank\NN sentral\NN</phrase><phrase type="other">yang\SC lebih\RB ketat.\JJ</phrase>
</sentence>
<sentence id="198">
<phrase type="np" id="954" ne="OTHER">Duta\NN Besar\JJ</phrase><phrase type="other">RI\NNP untuk\IN</phrase><phrase type="np" id="955" ne="ORGANIZATION">Kerajaan\NNP Inggris\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="956" ne="ORGANIZATION|LOCATION">Republik\NNP Irlandia\NNP</phrase><phrase type="np" id="957" ne="PERSON">Marty\NNP M\NNP Natalegawa\NNP</phrase><phrase type="other">mengharapkan\VB</phrase><phrase type="np" id="958" ne="ORGANIZATION">Ikatan\NNP Cendekiawan\NNP Muslim\NNP Indonesia\NNP</phrase><phrase type="np" id="959" ne="ORGANIZATION" coref="958">ICMI\NNP</phrase><phrase type="other">London\NNP dapat\MD memfasilitasi\VB atau\CC menjadi\VB</phrase><phrase type="np" id="960" ne="OTHER">jembatan\NN</phrase><phrase type="other">antara\IN</phrase><phrase type="np" id="961" ne="OTHER|LOCATION">pengusaha\NN Indonesia\NNP</phrase><phrase type="other">dengan\IN mitra\NN</phrase><phrase type="np" id="962" ne="OTHER" coref="961">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="963" ne="OTHER">Inggris.\NNP</phrase>
</sentence>
<sentence id="199">
<phrase type="np-sbj" id="964" ne="OTHER">Harapan\NN itu\PR</phrase><phrase type="other">disampaikan\VB</phrase><phrase type="np" id="965" ne="TITLE">Dubes\NN</phrase><phrase type="other">saat\SC menerima\VB pengurus\NN</phrase><phrase type="np" id="966" ne="LOCATION" coref="959">ICMI\NNP London\NNP</phrase><phrase type="other">yang\SC terdiri\VB atas\IN</phrase><phrase type="np" id="967" ne="OTHER">Ketua,\NN</phrase><phrase type="np" id="968" ne="PERSON|OTHER" coref="967">Muslimin\NNP Anwar,\NNP</phrase><phrase type="np" id="969" ne="TITLE|PERSON">wakil\NNP ketua\NNP Nizma\NNP Agustjik\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="970" ne="TITLE|PERSON">Sekretaris\NNP Dono\NNP Widiatmoko\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="971" ne="ORGANIZATION|OTHER">KBRI\NNP London,\NNP</phrase><phrase type="np" id="972" ne="OTHER">Senin,\NNP</phrase><phrase type="other">sehubungan\SC digelarnya\NN lokakarya\NN yang\SC bertema\VB Menjadi\VB</phrase><phrase type="np" id="973" ne="TITLE|PERSON|OTHER">Duta\NN Ekonomi\NN Bangsa,\NN</phrase><phrase type="other">yang\SC digelar\VB</phrase><phrase type="np" id="974" ne="TIME">8\CD Juli\NNP mendatang\VB</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="975" ne="OTHER">London.\NNP</phrase>
</sentence>
<sentence id="200">
<phrase type="other">Dalam\IN</phrase><phrase type="np" id="976" ne="OTHER">pertemuan\NN itu,\PR</phrase><phrase type="np-sbj" id="977" ne="TITLE" coref="965">Dubes\NN</phrase><phrase type="other">melihat\VB</phrase><phrase type="np" id="978" ne="OTHER">banyak\CD hal\NN</phrase><phrase type="other">yang\SC bisa\MD dilakukan\VB oleh\IN</phrase><phrase type="np" id="979" ne="ORGANIZATION|LOCATION" coref="966">ICMI\NNP London\NNP</phrase><phrase type="other">dalam\IN mengisi\VB peluang\NN yang\SC ada\VB dalam\IN upaya\NN membantu\VB</phrase><phrase type="np" id="980" ne="OTHER|LOCATION">pengusaha\NN Indonesia\NNP</phrase><phrase type="other">yang\SC akan\MD mengembangkan\VB sayap\NN</phrase><phrase type="np" id="981" ne="OTHER" coref="980">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="982" ne="OTHER">Inggris.\NNP</phrase>
</sentence>
<sentence id="201">
<phrase type="other">Selama\IN</phrase><phrase type="np" id="983" ne="OTHER">ini,\PR</phrase><phrase type="other">diakui\VB</phrase><phrase type="np" id="984" ne="OTHER">nya\PRP</phrase><phrase type="np" id="985" ne="OTHER">hubungan\NN bilateral\JJ</phrase><phrase type="np" id="986" ne="LOCATION">Indonesia\NNP</phrase><phrase type="np" id="987" ne="LOCATION">Inggris\NNP</phrase><phrase type="other">telah\MD berlangsung\VB sejak\IN</phrase><phrase type="np" id="988" ne="OTHER|TIME">tahun\NN 1967\CD</phrase><phrase type="other">dan\CC bahkan\RB</phrase><phrase type="np" id="989" ne="OTHER|LOCATION">investasi\NN Inggris\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="990" ne="LOCATION" coref="986">Indonesia\NNP</phrase><phrase type="other">terbesar\JJ</phrase><phrase type="np" id="991" ne="NUM">kedua\OD</phrase><phrase type="other">setelah\SC</phrase><phrase type="np" id="992" ne="LOCATION">Jepang\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="993" ne="OTHER|NUM">nomor\NN satu\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="994" ne="OTHER">negara\NN Eropa.\NNP</phrase>
</sentence>
<sentence id="202">
<phrase type="other">Namun\CC di\IN</phrase><phrase type="np" id="995" ne="OTHER">sisi\NN lain,\JJ</phrase><phrase type="np" id="996" ne="OTHER">tidak\NEG banyak\CD</phrase><phrase type="np" id="997" ne="OTHER|LOCATION" coref="980">pengusaha\NN Indonesia\NNP</phrase><phrase type="other">yang\SC melakukan\VB</phrase><phrase type="np" id="998" ne="OTHER">ekspansi\NN</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="999" ne="OTHER" coref="987">Inggris.\NNP</phrase>
</sentence>
<sentence id="203">
<phrase type="np" id="1000" ne="OTHER">Celah\NN ini\PR</phrase><phrase type="other">yang\SC bisa\MD dilakukan\VB oleh\IN</phrase><phrase type="np" id="1001" ne="ORGANIZATION" coref="979">ICMI\NNP London\NNP</phrase><phrase type="other">dalam\IN upaya\NN menjembatani\VB</phrase><phrase type="np" id="1002" ne="OTHER|LOCATION">para\DT pengusaha\NN Indonesia\NNP</phrase><phrase type="other">yang\SC akan\MD melebarkan\VB sayap\NN</phrase><phrase type="np" id="1003" ne="OTHER" coref="1002">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1004" ne="FACILITY|OTHER">Kerajaan\NNP Inggris.\NNP</phrase>
</sentence>
<sentence id="204">
<phrase type="other">Mari\UH</phrase><phrase type="np" id="1005" ne="OTHER">kita\PRP</phrase><phrase type="other">sama-sama\RB melakukan\VB</phrase><phrase type="np" id="1006" ne="OTHER">inventarisasi\NN</phrase><phrase type="other">dan\CC juga\RB melihat\VB</phrase><phrase type="np" id="1007" ne="OTHER">produk\NN unggulan\NN</phrase><phrase type="other">Indonesia\NNP yang\SC bisa\MD dijual\VB di\IN</phrase><phrase type="np" id="1008" ne="OTHER" coref="999">Inggris,\NNP</phrase><phrase type="other">ujar\VB Dubes\NN yang\SC melihat\VB</phrase><phrase type="np" id="1009" ne="OTHER">banyak\CD hal\NN</phrase><phrase type="other">yang\SC bisa\MD dilakukan\VB</phrase><phrase type="np" id="1010" ne="OTHER" coref="1003">pengusaha\NN Indonesia.\NNP</phrase>
</sentence>
<sentence id="205">
<phrase type="other">Sebelum\SC</phrase><phrase type="np" id="1011" ne="TITLE">nya\PRP</phrase><phrase type="np" id="1012" ne="TITLE|ORGANIZATION|LOCATION">Ketua\NNP ICMI\NNP London\NNP</phrase><phrase type="np" id="1013" ne="PERSON" coref="1012">Muslimin\NNP Anwar\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="1014" ne="OTHER">hubungan\NN dagang\NN</phrase><phrase type="other">antara\IN</phrase><phrase type="np" id="1015" ne="LOCATION|OTHER">Indonesia\NNP dan\CC Inggris\NNP</phrase><phrase type="np" id="1016" ne="LOCATION|OTHER">belakangan\RB ini\PR</phrase><phrase type="other">cukup\RB menggembirakan.\VB</phrase>
</sentence>
<sentence id="206">
<phrase type="other">Menurut\IN</phrase><phrase type="np" id="1017" ne="ORGANIZATION">UK\NNP Trade\NNP and\NNP Investment\NNP UKTI,\NNP</phrase><phrase type="other">nilai\NN</phrase><phrase type="np" id="1018" ne="ORGANIZATION|LOCATION">ekspor\NN Indonesia\NNP</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="1019" ne="LOCATION" coref="1008">Inggris\NNP</phrase><phrase type="other">sepanjang\NN</phrase><phrase type="np" id="1020" ne="OTHER|TIME">tahun\NN 2005\CD</phrase><phrase type="other">tercatat\VB</phrase><phrase type="np" id="1021" ne="OTHER|NUM">senilai\NN 517\CD juta\CD Pound\NNP Sterling,\NNP</phrase><phrase type="other">yang\SC</phrase><phrase type="np-sbj" id="1022" ne="OTHER">kebanyakan\NN</phrase><phrase type="other">didominasi\VB jenis\NN barang-barang\NN</phrase><phrase type="np" id="1023" ne="THINGS|OTHER">tekstil\NN dan\CC alas\NN kaki.\NN</phrase>
</sentence>
<sentence id="207">
<phrase type="np" id="1024" ne="ORGANIZATION">PT\NNP Indonesia\NNP Air\NNP Transport\NNP Tbk\NNP</phrase><phrase type="np" id="1025" ne="ORGANIZATION" coref="1024">IATA\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1026" ne="OTHER">tahun\NN ini\PR</phrase><phrase type="other">berencana\VB menambah\VB</phrase><phrase type="np" id="1027" ne="FACILITY|OTHER">lima\CD pesawat\NN terbang\NN</phrase><phrase type="other">lagi\RB untuk\SC memenuhi\VB</phrase><phrase type="np" id="1028" ne="OTHER">kebutuhan\NN pasar\NN</phrase><phrase type="other">di\IN wilayah\NN</phrase><phrase type="np" id="1029" ne="FACILITY">Nusa\NNP Tenggara\NNP Timur\NNP</phrase><phrase type="np" id="1030" ne="OTHER" coref="1029">NTT,\NNP</phrase><phrase type="np" id="1031" ne="LOCATION">Nusa\NNP Tenggara\NNP Barat\NNP</phrase><phrase type="np" id="1032" ne="OTHER" coref="1031">NTB,\NNP</phrase><phrase type="np" id="1033" ne="LOCATION">Labuhan\NNP Bajo\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1034" ne="OTHER">Bali.\NNP</phrase>
</sentence>
<sentence id="208">
<phrase type="other">Untuk\IN</phrase><phrase type="np" id="1035" ne="OTHER">kebutuhan\NN tersebut\PR</phrase><phrase type="np" id="1036" ne="OTHER">kami\PRP</phrase><phrase type="other">akan\MD menanam\VB investasi\NN</phrase><phrase type="np" id="1037" ne="OTHER|THINGS">sekitar\RB 15\CD juta\CD dolar\NN AS\NNP</phrase><phrase type="other">dengan\IN asumsi\NN</phrase><phrase type="np" id="1038" ne="NUM|THINGS">3\CD juta\CD dolar\NN AS\NNP</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1039" ne="THINGS">pesawat,\NN</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1040" ne="TITLE|ORGANIZATION|OTHER">Direktur\NNP Utama\NNP IATA,\NNP</phrase><phrase type="np" id="1041" ne="PERSON" coref="1040">Roekman\NNP Prawirasastra\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1042" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1043" ne="OTHER">Senin.\NNP</phrase>
</sentence>
<sentence id="209">
<phrase type="np-sbj" id="1044" ne="PERSON" coref="1041">Roekman\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np-sbj" id="1045" ne="OTHER">pesawat\NN tersebut\PR</phrase><phrase type="other">akan\MD disewakan\VB dengan\IN</phrase><phrase type="np" id="1046" ne="OTHER|EVENT">sistem\NN kontrak\NN</phrase><phrase type="other">kepada\IN perusahaan\NN</phrase><phrase type="np" id="1047" ne="ORGANIZATION">travel\FW</phrase><phrase type="other">pariwisata.\NN</phrase>
</sentence>
<sentence id="210">
<phrase type="np" id="1048" ne="OTHER" coref="1047">Mereka\PRP</phrase><phrase type="other">akan\MD melayani\VB</phrase><phrase type="np" id="1049" ne="OTHER">para\DT turis\NN</phrase><phrase type="other">lokal\JJ dan\CC asing\JJ yang\SC akan\MD berkunjung\VB ke\IN</phrase><phrase type="np" id="1050" ne="OTHER" coref="1034">Bali,\NNP</phrase><phrase type="np" id="1051" ne="OTHER" coref="1030">NTT,\NNP</phrase><phrase type="np" id="1052" ne="PERSON" coref="1032">NTB\NNP</phrase><phrase type="other">maupun\CC</phrase><phrase type="np" id="1053" ne="PERSON|OTHER" coref="1033">Labuhan\NNP Bajo.\NNP</phrase>
</sentence>
<sentence id="211">
<phrase type="other">Perusahaan\NN</phrase><phrase type="np" id="1054" ne="ORGANIZATION" coref="1048">travel\FW</phrase><phrase type="other">tersebut\PR sudah\MD mempunyai\VB keinginan\NN menambah\VB</phrase><phrase type="np" id="1055" ne="NUM|OTHER">lima\CD pesawat\NN lagi,\RB</phrase><phrase type="other">ujar\VB</phrase><phrase type="np" id="1056" ne="OTHER" coref="1044">nya.\PRP</phrase>
</sentence>
<sentence id="212">
<phrase type="np" id="1057" ne="OTHER">Saat\NN ini\PR</phrase><phrase type="np" id="1058" ne="OTHER">kami\PRP</phrase><phrase type="other">baru\MD mampu\JJ memenuhi\VB</phrase><phrase type="np" id="1059" ne="NUM">dua\CD</phrase><phrase type="other">pesawat\NN</phrase><phrase type="np" id="1060" ne="THINGS|NUM|OTHER">ATR\NNP 42\NNP -\NNP 300\NNP</phrase><phrase type="other">pesanan\NN</phrase><phrase type="np" id="1061" ne="THINGS">perusahaan\NNP travel\NNP PT\NNP Mirantha\NNP Nuansa\NNP Ayu.\NNP</phrase>
</sentence>
<sentence id="213">
<phrase type="np-sbj" id="1062" ne="PERSON">Satu\CD pesawat\NN</phrase><phrase type="other">baru\MD saja\RB diserahkan\VB pada\IN</phrase><phrase type="np" id="1063" ne="ORGANIZATION">Mirantha\NNP</phrase><phrase type="other">Sabtu\NNP lalu\VB 17/\CD 3\CD di\IN</phrase><phrase type="np" id="1064" ne="OTHER">Bali\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="1065" ne="OTHER|NUM">satu\CD lagi\RB</phrase><phrase type="other">akan\MD diserahkan\VB pada\IN</phrase><phrase type="np" id="1066" ne="OTHER">akhir\NN Mei,\NNP</phrase><phrase type="other">tambah\VB</phrase><phrase type="np" id="1067" ne="OTHER" coref="1056">nya.\PRP</phrase>
</sentence>
<sentence id="214">
<phrase type="np-sbj" id="1068" ne="PERSON" coref="1067">Roekman\NNP</phrase><phrase type="other">mengatakan\VB selama\IN</phrase><phrase type="np" id="1069" ne="OTHER">ini\PR</phrase><phrase type="np-sbj" id="1070" ne="OTHER">perseroan\NN</phrase><phrase type="np" id="1071" ne="OTHER">lebih\RB banyak\CD</phrase><phrase type="other">melayani\VB</phrase><phrase type="np" id="1072" ne="OTHER">penyewaan\NN</phrase><phrase type="np" id="1073" ne="THINGS">charter\FW</phrase><phrase type="np" id="1074" ne="THINGS">pesawat\NN dan\CC helikopter\NN</phrase><phrase type="other">untuk\IN kebutuhan\NN</phrase><phrase type="np" id="1075" ne="THINGS|OTHER">perusahaan\NN minyak\NN asing.\JJ</phrase>
</sentence>
<sentence id="215">
<phrase type="other">Namun\CC</phrase><phrase type="np" id="1076" ne="OTHER">saat\NN ini\PR</phrase><phrase type="np-sbj" id="1077" ne="OTHER" coref="1070">perseroan\NN</phrase><phrase type="other">juga\RB menyediakan\VB juga\RB</phrase><phrase type="np" id="1078" ne="OTHER">kebutuhan\NN pesawat\NN</phrase><phrase type="other">untuk\IN perusahaan\NN</phrase><phrase type="np" id="1079" ne="OTHER">travel.\FW</phrase>
</sentence>
<sentence id="216">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1080" ne="OTHER">itu\PR</phrase><phrase type="np" id="1081" ne="TITLE|ORGANIZATION|PERSON|OTHER">Direktur\NNP Utama\NNP PT\NNP Mirantha\NNP Nuansa\NNP Ayu,\NNP</phrase><phrase type="np" id="1082" ne="PERSON" coref="1081">Henry\NNP Sulysto,\NNP</phrase><phrase type="other">mengatakan,\VB</phrase><phrase type="np" id="1083" ne="TITLE">kerja\NN sama\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1084" ne="ORGANIZATION">perusahaan\NN penyewaan\NN pesawat\NN</phrase><phrase type="other">sangat\RB diperlukan\VB karena\SC tidak\NEG mungkin\MD</phrase><phrase type="np-sbj" id="1085" ne="OTHER" coref="1077">perseroan\NN</phrase><phrase type="other">menyediakan\VB</phrase><phrase type="np" id="1086" ne="OTHER">pesawat\NN sendiri,\JJ</phrase><phrase type="other">karena\SC</phrase><phrase type="np" id="1087" ne="OTHER">risiko\NN dan\CC investasi\NN</phrase><phrase type="np" id="1088" ne="THINGS">nya\PRP</phrase><phrase type="other">besar,\JJ kata\VB</phrase><phrase type="np" id="1089" ne="PERSON" coref="1082">Henry\NNP</phrase>
</sentence>
<sentence id="217">
<phrase type="other">Sementara\SC wilayah\NN</phrase><phrase type="np" id="1090" ne="OTHER" coref="1051">NTT,\NNP</phrase><phrase type="np" id="1091" ne="ORGANIZATION" coref="1052">NTB\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1092" ne="ORGANIZATION|LOCATION" coref="1053">Labuhan\NNP Bajo\NNP</phrase><phrase type="other">sudah\MD menjadi\VB</phrase><phrase type="np" id="1093" ne="OTHER">daerah\NN tujuan\NN wisata\NN turis,\NN</phrase><phrase type="other">namun\CC transportasi\NN yang\SC menuju\VB ke\IN</phrase><phrase type="np" id="1094" ne="OTHER">arah\NN sana\PR</phrase><phrase type="other">masih\MD sangat\RB kurang\RB terutama\JJ</phrase><phrase type="np" id="1095" ne="OTHER">pesawat\NN udara.\NN</phrase>
</sentence>
<sentence id="218">
<phrase type="other">Salah\CD satu\CD</phrase><phrase type="np" id="1096" ne="TIME">nya\PRP</phrase><phrase type="other">dengan\SC menyediakan\VB</phrase><phrase type="np" id="1097" ne="OTHER">alat\NN transportasi\NN udara\NN</phrase><phrase type="other">melalui\IN</phrase><phrase type="np" id="1098" ne="OTHER">kerja\NN sama\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1099" ne="OTHER">IATA,\NNP</phrase><phrase type="other">lanjut\VB</phrase><phrase type="np-sbj" id="1100" ne="OTHER" coref="1089">Henry.\NNP</phrase>
</sentence>
<sentence id="219">
<phrase type="np-sbj" id="1101" ne="PERSON">Roekman\NNP</phrase><phrase type="other">menambahkan\VB</phrase><phrase type="np" id="1102" ne="OTHER">kontrak\NN penyewaan\NN pesawat\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1103" ne="ORGANIZATION">Mirantha\NNP</phrase><phrase type="other">bersifat\VB jangka\NN panjang\NN yakni\SC selama\IN</phrase><phrase type="np" id="1104" ne="TIME">enam\CD tahun\NN</phrase>
</sentence>
<sentence id="220">
<phrase type="np-sbj" id="1105" ne="THINGS">Nilai\NN kontrak\NN</phrase><phrase type="other">berdasarkan\VB jam\NN terbang\VB</phrase><phrase type="np" id="1106" ne="OTHER">pesawat\NN</phrase><phrase type="other">atau\CC paling\RB tidak\NEG</phrase><phrase type="np" id="1107" ne="OTHER">sebulan\NN</phrase><phrase type="np" id="1108" ne="OTHER|THINGS">sebesar\JJ 160\CD ribu\CD dolar\NN AS\NNP</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1109" ne="THINGS">pesawat.\NN</phrase>
</sentence>
<sentence id="221">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1110" ne="OTHER">itu\PR</phrase><phrase type="other">sampai\IN</phrase><phrase type="np" id="1111" ne="OTHER|NUM">akhir\NN 2007\CD</phrase><phrase type="np-sbj" id="1112" ne="NUM">perseroan\NN</phrase><phrase type="other">menargetkan\VB</phrase><phrase type="np-sbj" id="1113" ne="OTHER">pendapatan\NN</phrase><phrase type="np" id="1114" ne="OTHER|THINGS|NUM">sebesar\JJ Rp\SYM 300\CD miliar\CD</phrase><phrase type="other">atau\CC naik\VB dibandingkan\VB</phrase><phrase type="np" id="1115" ne="NUM">2006\CD</phrase><phrase type="np" id="1116" ne="OTHER|THINGS|NUM">hanya\RB sebesar\JJ Rp\SYM 204\CD miliar.\CD</phrase>
</sentence>
<sentence id="222">
<phrase type="np-sbj" id="1117" ne="OTHER">Target\NN tersebut\PR</phrase><phrase type="other">belum\NEG memasukkan\VB pendapatan\NN</phrase><phrase type="np" id="1118" ne="OTHER">sewa/\NN kontrak\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1119" ne="OTHER" coref="1103">Mirantha.\NNP</phrase>
</sentence>
<sentence id="223">
<phrase type="other">"\Z Kalau\SC</phrase><phrase type="np-sbj" id="1120" ne="OTHER">itu\PR</phrase><phrase type="other">dimasukkan\VB mungkin\MD pendapatan\NN</phrase><phrase type="np" id="1121" ne="OTHER">nya\PRP</phrase><phrase type="other">akan\MD lebih\RB besar\JJ lagi,\RB "\Z kata\VB</phrase><phrase type="np-sbj" id="1122" ne="OTHER" coref="1101">Roekman.\NNP</phrase>
</sentence>
<sentence id="224">
<phrase type="other">Sedangkan\CC</phrase><phrase type="np-sbj" id="1123" ne="TITLE">target\NN laba\NN bersih\NN 2007\CD</phrase><phrase type="np" id="1124" ne="OTHER|THINGS|NUM">sebesar\JJ Rp\SYM 30\CD miliar\CD</phrase><phrase type="other">atau\CC naik\VB dibandingkan\VB</phrase><phrase type="np" id="1125" ne="TIME">2006\CD</phrase><phrase type="np" id="1126" ne="OTHER|THINGS|NUM">sebesar\JJ Rp\SYM 28,6\CD miliar.\CD</phrase>
</sentence>
<sentence id="225">
<phrase type="np" id="1127" ne="ORGANIZATION|PERSON">PT\NNP Bank\NNP Mayapada\NNP Internasional\NNP Tbk\NNP</phrase><phrase type="np" id="1128" ne="PERSON" coref="1128">MAYA\NNP</phrase><phrase type="other">akan\MD melakukan\VB</phrase><phrase type="np" id="1129" ne="OTHER">penawaran\NN umum\JJ</phrase><phrase type="other">obligasi\NN</phrase><phrase type="np" id="1130" ne="OTHER|THINGS|NUM">sebesar\JJ Rp\SYM 750\CD miliar\CD</phrase><phrase type="other">terdiri\VB dari\IN</phrase><phrase type="np" id="1131" ne="FACILITY">Obligasi\NNP Bank\NNP Mayapada\NNP II\NNP</phrase><phrase type="np" id="1132" ne="FACILITY">Tahun\NN 2007\CD</phrase><phrase type="np" id="1133" ne="FACILITY">sebanyak\CD -\Z banyak\CD Rp\SYM 500\CD miliar\CD</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1134" ne="FACILITY">Obligasi\NNP Subordinasi\NNP Bank\NNP Mayapada\NNP II\NNP</phrase><phrase type="np" id="1135" ne="FACILITY">Tahun\NN 2007\CD</phrase><phrase type="np" id="1136" ne="FACILITY">sebanyak\CD -\Z banyak\CD Rp\SYM 250\CD miliar.\CD</phrase>
</sentence>
<sentence id="226">
<phrase type="other">Dalam\IN prospektus\NN</phrase><phrase type="np" id="1137" ne="EVENT" coref="1128">nya\PRP</phrase><phrase type="other">yang\SC dipublikasikan\VB di\IN</phrase><phrase type="np" id="1138" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1139" ne="OTHER">Selasa,\NNP</phrase><phrase type="np-sbj" id="1140" ne="ORGANIZATION|OTHER" coref="1137">Bank\NNP Mayapada\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="1141" ne="TITLE|ORGANIZATION" coref="1131">Obligasi\NNP Bank\NNP Mayapada\NNP II\NNP</phrase><phrase type="np" id="1142" ne="OTHER|TIME">Tahun\NN 2007\CD</phrase><phrase type="other">akan\MD diterbitkan\VB dalam\IN</phrase><phrase type="np" id="1143" ne="LOCATION">Seri\NNP A\NNP</phrase><phrase type="other">berjangka\VB</phrase><phrase type="np" id="1144" ne="OTHER">waktu\NN</phrase><phrase type="np" id="1145" ne="TIME">tiga\CD tahun\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1146" ne="LOCATION">Seri\NNP B\NNP</phrase><phrase type="other">berjangka\VB</phrase><phrase type="np" id="1147" ne="OTHER">waktu\NN</phrase><phrase type="np" id="1148" ne="TIME">lima\CD tahun\NN</phrase><phrase type="other">dengan\SC memberikan\VB</phrase><phrase type="np" id="1149" ne="OTHER">tingkat\NN suku\NN bunga\NN</phrase><phrase type="other">tetap\RB dan\CC nilai\NN nominal\NN yang\SC akan\MD ditentukan\VB</phrase><phrase type="np" id="1150" ne="OTHER">kemudian.\NN</phrase>
</sentence>
<sentence id="227">
<phrase type="other">Sementara\CC</phrase><phrase type="np" id="1151" ne="OTHER|ORGANIZATION">Obligasi\NNP Subordinasi\NNP Bank\NNP Mayapada\NNP II\NNP</phrase><phrase type="np" id="1152" ne="OTHER|TIME">Tahun\NN 2007\CD</phrase><phrase type="other">berjangka\VB</phrase><phrase type="np" id="1153" ne="OTHER">waktu\NN</phrase><phrase type="np" id="1154" ne="TIME">10\CD tahun\NN</phrase><phrase type="other">memberikan\VB</phrase><phrase type="np" id="1155" ne="OTHER|EVENT">tingkat\NN suku\NN bunga\NN</phrase><phrase type="other">tetap\RB untuk\IN</phrase><phrase type="np" id="1156" ne="EVENT|OTHER">tahun\NN pertama\OD sampai\IN kelima\OD</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1157" ne="OTHER">suku\NN bunga\NN tetap\RB</phrase><phrase type="other">yang\SC lebih\RB tinggi\JJ untuk\IN</phrase><phrase type="np" id="1158" ne="OTHER|NUM">tahun\NN keenam\OD hingga\IN ke-10\OD</phrase><phrase type="other">dengan\IN opsi\NN beli\VB pada\IN</phrase><phrase type="np" id="1159" ne="OTHER">tahun\NN kelima.\OD</phrase>
</sentence>
<sentence id="228">
<phrase type="other">Periode\NN</phrase><phrase type="np" id="1160" ne="TITLE">penawaran\NN obligasi\NN</phrase><phrase type="other">tersebut\PR berlangsung\VB pada\IN</phrase><phrase type="np" id="1161" ne="TIME">24\CD -\Z 26\CD April\NNP 2007\CD</phrase><phrase type="other">dan\CC akan\MD dicatatkan\VB di\IN</phrase><phrase type="np" id="1162" ne="FACILITY">Bursa\NNP Efek\NNP Surabaya\NNP</phrase><phrase type="np" id="1163" ne="FACILITY" coref="1162">BES\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1164" ne="TIME|OTHER">1\CD Mei\NNP 2007.\CD</phrase>
</sentence>
<sentence id="229">
<phrase type="np-sbj" id="1165" ne="ORGANIZATION">PT\NNP Medco\NNP Energy\NNP Internasional\NNP Tbk\NNP</phrase><phrase type="other">melalui\IN anak\NN usaha\NN</phrase><phrase type="np" id="1166" ne="OTHER" coref="1165">nya\PRP</phrase><phrase type="np" id="1167" ne="THINGS">Medco\NNP E\NNP &\NNP P\NNP Malaka\NNP</phrase><phrase type="other">telah\MD menandatangani\VB</phrase><phrase type="np" id="1168" ne="OTHER">penjualan\NN gas\NN</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="1169" ne="ORGANIZATION">Perusahaan\NNP Listrik\NNP Negara\NNP</phrase><phrase type="np" id="1170" ne="ORGANIZATION" coref="1169">PLN\NNP</phrase><phrase type="np" id="1171" ne="OTHER|PERSON">senilai\NN 430\CD juta\CD dolar\NN AS.\NNP</phrase>
</sentence>
<sentence id="230">
<phrase type="other">Dalam\IN penjelasan\NN</phrase><phrase type="np" id="1172" ne="OTHER" coref="1170">nya\PRP</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="1173" ne="ORGANIZATION">Badan\NNP Pengawas\NNP Pasar\NNP Modal\NNP</phrase><phrase type="np" id="1174" ne="ORGANIZATION" coref="1173">Bapepam,\NNP</phrase><phrase type="np-sbj" id="1175" ne="ORGANIZATION">direksi\NN Medco\NNP</phrase><phrase type="other">menjelaskan,\VB pihak\NN</phrase><phrase type="np" id="1176" ne="ORGANIZATION" coref="1175">nya\PRP</phrase><phrase type="other">telah\MD menandatangani\VB</phrase><phrase type="np" id="1177" ne="OTHER">nota\NN kesepahaman\NN</phrase><phrase type="np" id="1178" ne="OTHER">perjanjian\NN jual\NN beli\NN gas,\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1179" ne="OTHER" coref="1170">PLN,\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1180" ne="TIME">21\CD Maret\NNP</phrase><phrase type="other">lalu.\VB</phrase>
</sentence>
<sentence id="231">
<phrase type="other">Dalam\IN</phrase><phrase type="np" id="1181" ne="OTHER">perjanjian\NN tersebut,\PR</phrase><phrase type="np-sbj" id="1182" ne="PERSON" coref="1167">Medco\NNP</phrase><phrase type="other">akan\MD memasok\VB</phrase><phrase type="np" id="1183" ne="OTHER">gas\NN</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="1184" ne="OTHER|TIME">kurun\NN waktu\NN 2008\CD -\Z 2017,\CD</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1185" ne="OTHER">total\NN volume\NN</phrase><phrase type="np" id="1186" ne="NUM|OTHER">133\CD miliar\CD kaki\NND kubik,\NND</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1187" ne="ORGANIZATION|OTHER">lapangan\NNP Singa,\NNP</phrase><phrase type="np" id="1188" ne="LOCATION|OTHER">Sumatera\NNP Selatan,\NNP</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="1189" ne="OTHER">fasilitas\NN pembangkit\NN listrik\NN</phrase><phrase type="other">PLN\NNP di\IN</phrase><phrase type="np" id="1190" ne="LOCATION|OTHER">Jawa\NNP Barat.\NNP</phrase>
</sentence>
<sentence id="232">
<phrase type="np" id="1191" ne="ORGANIZATION">Perusahaan\NNP perkebunan\NNP</phrase><phrase type="np" id="1192" ne="ORGANIZATION">PT\NNP Bakrie\NNP Sumatra\NNP Plantations\NNP Tbk\NNP</phrase><phrase type="np" id="1193" ne="ORGANIZATION">UNSP\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1194" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1195" ne="OTHER">Jumat,\NNP</phrase><phrase type="other">menyatakan\VB</phrase><phrase type="np" id="1196" ne="OTHER">perolehan\NN laba\NN bersih\NN</phrase><phrase type="np" id="1197" ne="OTHER|TIME">tahun\NN 2006,\CD</phrase><phrase type="other">meningkat\VB</phrase><phrase type="np" id="1198" ne="NUM|THINGS">49,41\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1199" ne="NUM|OTHER">172,90\CD miliar,\CD</phrase><phrase type="other">dibanding\VB</phrase><phrase type="np" id="1200" ne="THINGS|NUM">Rp\SYM 115,72\CD miliar\CD</phrase><phrase type="other">tahun\NN sebelum\SC</phrase><phrase type="np" id="1201" ne="OTHER">nya.\PRP</phrase>
</sentence>
<sentence id="233">
<phrase type="np-sbj" id="1202" ne="EVENT">Laporan\NN keuangan\NN konsolidasi\NN tahunan\NN perseroan,\NN</phrase><phrase type="other">memperlihatkan\VB</phrase><phrase type="np" id="1203" ne="EVENT">pertumbuhan\NN laba\NN bersih\NN</phrase><phrase type="other">yang\SC signifikan\JJ tersebut\PR didorong\VB oleh\IN</phrase><phrase type="np" id="1204" ne="OTHER">penjualan\NN bersih\JJ perseroan\NN</phrase><phrase type="other">yang\SC meningkat\VB dari\IN</phrase><phrase type="np" id="1205" ne="THINGS|NUM">Rp\SYM 883,31\CD miliar\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1206" ne="OTHER|TIME">tahun\NN 2005\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1207" ne="THINGS|NUM">Rp\SYM 1,18\CD triliun\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1208" ne="TIME">tahun\NN 2006.\CD</phrase>
</sentence>
<sentence id="234">
<phrase type="np" id="1209" ne="THINGS">Keberhasilan\NN perseroan\NN</phrase><phrase type="other">mengendalikan\VB</phrase><phrase type="np" id="1210" ne="OTHER">biaya\NN operasional\JJ</phrase><phrase type="other">melalui\IN</phrase><phrase type="np" id="1211" ne="OTHER">efisiensi\NN</phrase><phrase type="other">membuahkan\VB hasil\NN laba\NN usaha\NN</phrase><phrase type="np" id="1212" ne="OTHER">nya\PRP</phrase><phrase type="other">bertambah\VB dari\IN</phrase><phrase type="np" id="1213" ne="THINGS|NUM">Rp\SYM 227,88\CD miliar\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1214" ne="OTHER|TIME">tahun\NN 2005\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1215" ne="THINGS|NUM">Rp\SYM 292,16\CD miliar\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1216" ne="OTHER|TIME">tahun\NN 2006\CD</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1217" ne="OTHER">laba\NN bersih\NN</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1218" ne="THINGS">saham\NN</phrase><phrase type="np" id="1219" ne="THINGS">EPS\FW</phrase><phrase type="other">-\Z</phrase><phrase type="np" id="1220" ne="THINGS">Earning\FW</phrase><phrase type="other">Per\IN</phrase><phrase type="np" id="1221" ne="THINGS">Share\FW</phrase><phrase type="np" id="1222" ne="THINGS">perseroan\NN</phrase><phrase type="other">naik\VB dari\IN</phrase><phrase type="np" id="1223" ne="THINGS|NUM">Rp\SYM 50\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1224" ne="NUM">Rp\SYM 74.\CD</phrase>
</sentence>
<sentence id="235">
<phrase type="other">Menurut\IN</phrase><phrase type="np" id="1225" ne="OTHER">dia,\PRP</phrase><phrase type="other">keputusan\NN untuk\SC membayarkan\VB</phrase><phrase type="np" id="1226" ne="OTHER|THINGS">dividen\NN luar\JJ biasa\JJ</phrase><phrase type="other">0,475\CD</phrase><phrase type="np" id="1227" ne="NUM">dollar\FW</phrase><phrase type="other">AS\NNP per\IN</phrase><phrase type="np" id="1228" ne="THINGS">lembar\NND saham\NN</phrase><phrase type="other">ditetapkan\VB setelah\SC mempertimbangkan\VB</phrase><phrase type="np" id="1229" ne="OTHER|THINGS">kinerja\NN keuangan\NN Perseroan\NN</phrase><phrase type="np" id="1230" ne="THINGS">tahun\NN 2006\CD</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1231" ne="THINGS">kondisi\NN keuangan\NN</phrase><phrase type="np" id="1232" ne="THINGS|OTHER">saat\NN ini\PR</phrase><phrase type="other">yang\SC sangat\RB baik.\JJ</phrase>
</sentence>
<sentence id="236">
<phrase type="np" id="1233" ne="OTHER" coref="1225">Ia\PRP</phrase><phrase type="other">mengatakan,\VB</phrase><phrase type="np-sbj" id="1234" ne="OTHER|FACILITY">pemegang\NN saham\NN Indonesia\NNP</phrase><phrase type="other">akan\MD menerima\VB</phrase><phrase type="np" id="1235" ne="OTHER">dividen\NN</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="1236" ne="OTHER">rupiah\NN</phrase><phrase type="other">yang\SC nilai\NN</phrase><phrase type="np" id="1237" ne="OTHER" coref="1235">nya\PRP</phrase><phrase type="np" id="1238" ne="OTHER">setara\NN</phrase><phrase type="other">dengan\IN dividen\NN yang\SC dibayarkan\VB dalam\IN</phrase><phrase type="np" id="1239" ne="TITLE">dollar\FW</phrase><phrase type="other">AS\NNP berdasarkan\VB</phrase><phrase type="np" id="1240" ne="OTHER">kurs\NN tengah\NN</phrase><phrase type="other">yang\SC ditetapkan\VB oleh\IN</phrase><phrase type="np" id="1241" ne="ORGANIZATION">Bank\NNP Indonesia\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1242" ne="TIME">tanggal\NN 27\CD April\NNP 2007.\CD</phrase>
</sentence>
<sentence id="237">
<phrase type="np-sbj" id="1243" ne="PERSON|OTHER">Pemegang\NN saham\NN asing\JJ</phrase><phrase type="other">akan\MD menerima\VB</phrase><phrase type="np" id="1244" ne="OTHER">dividen\NN</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="1245" ne="OTHER">dolar\NN AS,\NNP</phrase><phrase type="other">ujar\VB</phrase><phrase type="np" id="1246" ne="OTHER" coref="1233">nya.\PRP</phrase>
</sentence>
<sentence id="238">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1247" ne="OTHER">itu\PR</phrase><phrase type="other">,ujar\VB</phrase><phrase type="np" id="1248" ne="OTHER" coref="1246">dia,\PRP</phrase><phrase type="np" id="1249" ne="OTHER">dividen\NN interim\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1250" ne="OTHER|TIME">tahun\NN 2006\CD</phrase><phrase type="np" id="1251" ne="OTHER|NUM|THINGS">sebesar\JJ 0,025\CD dolar\NN AS\NNP</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1252" ne="THINGS">lembar\NND saham\NN</phrase><phrase type="other">telah\MD dibayarkan\VB sebelum\SC</phrase><phrase type="np" id="1253" ne="OTHER">nya\PRP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1254" ne="OTHER|TIME">tanggal\NN lima\CD Desember\NNP 2006,\CD</phrase><phrase type="other">sehingga\SC secara\IN</phrase><phrase type="np" id="1255" ne="OTHER">keseluruhan\NN</phrase><phrase type="other">dividen\NN</phrase><phrase type="np" id="1256" ne="OTHER|TIME">tahun\NN 2006\CD</phrase><phrase type="np" id="1257" ne="OTHER|NUM|THINGS">sebesar\JJ 0,525\CD dolar\NN AS\NNP</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1258" ne="THINGS|OTHER">lembar\NND saham.\NN</phrase>
</sentence>
<sentence id="239">
<phrase type="np" id="1259" ne="TITLE|OTHER">Jumlah\NN yang\SC sama\JJ</phrase><phrase type="np" id="1260" ne="OTHER|NUM|THINGS">sebesar\JJ 0,11\CD dolar\NN AS\NNP</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1261" ne="THINGS">lembar\NND saham\NN</phrase><phrase type="other">telah\MD dibayarkan\VB untuk\IN</phrase><phrase type="np" id="1262" ne="OTHER|TIME">tahun\NN 2005,\CD</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1263" ne="OTHER" coref="1248">dia.\PRP</phrase>
</sentence>
<sentence id="240">
<phrase type="other">Dalam\IN</phrase><phrase type="np" id="1264" ne="ORGANIZATION|OTHER">RUPS\NN tersebut\PR</phrase><phrase type="np-sbj" id="1265" ne="OTHER">pemegang\NN saham\NN</phrase><phrase type="other">juga\RB mengangkat\VB</phrase><phrase type="np" id="1266" ne="ORGANIZATION">Rozik\NNP B\NNP Soetjipto\NNP</phrase><phrase type="other">sebagai\IN</phrase><phrase type="np" id="1267" ne="ORGANIZATION">Komisaris\NN Independen\JJ</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1268" ne="OTHER">periode\NN</phrase><phrase type="other">sampai\IN penutupan\NN</phrase><phrase type="np" id="1269" ne="ORGANIZATION|OTHER">RUPS\NN tahunan\NN 2008.\CD</phrase>
</sentence>
<sentence id="241">
<phrase type="np-sbj" id="1270" ne="FACILITY" coref="1266">Rozik\NNP B\NNP Soetjipto\NNP</phrase><phrase type="other">menggantikan\VB</phrase><phrase type="np" id="1271" ne="LOCATION|OTHER">Soetaryo\NNP Sigit,\NNP</phrase><phrase type="other">yang\SC efektif\JJ pensiun\VB dari\IN</phrase><phrase type="np" id="1272" ne="OTHER">perseroan\NN</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1273" ne="EVENT">penutupan\NN rapat\NN tersebut,\PR</phrase><phrase type="other">ujar\VB</phrase><phrase type="np" id="1274" ne="OTHER" coref="1263">nya.\PRP</phrase>
</sentence>
<sentence id="242">
<phrase type="other">Selain\IN</phrase><phrase type="np" id="1275" ne="THINGS">itu\PR</phrase><phrase type="other">,ucap\VB</phrase><phrase type="np" id="1276" ne="THINGS" coref="1274">nya\PRP</phrase><phrase type="np-sbj" id="1277" ne="THINGS">pemegang\NN saham\NN</phrase><phrase type="other">juga\RB mengangkat\VB kembali\RB</phrase><phrase type="np" id="1278" ne="THINGS">Eddie\NNP A\NNP Arsyad,\NNP</phrase><phrase type="np" id="1279" ne="THINGS">Ciho\NNP D\NNP Bangun\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1280" ne="THINGS">Dirk\NNP Theuninck\NNP</phrase><phrase type="other">sebagai\IN</phrase><phrase type="np" id="1281" ne="THINGS">Direktur-Direktur\NN Perseroan\NN</phrase><phrase type="other">yang\SC akan\MD bekerja\VB sampai\IN penutupan\NN</phrase><phrase type="np" id="1282" ne="ORGANIZATION|OTHER">RUPS\NN tahunan\NN 2009.\CD</phrase>
</sentence>
<sentence id="243">
<phrase type="np" id="1283" ne="OTHER" coref="1276">Ia\PRP</phrase><phrase type="other">menambahkan,\VB kantor\NN</phrase><phrase type="np" id="1284" ne="ORGANIZATION">Akuntan\NNP Publik\NNP Haryanto\NNP Sahari\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1285" ne="ORGANIZATION">Rekan\NN</phrase><phrase type="other">-\Z</phrase><phrase type="np" id="1286" ne="ORGANIZATION">PricewaterhouseCoopers\NNP</phrase><phrase type="other">telah\MD ditunjuk\VB kembali\RB sebagai\IN akuntan\NN publik\NN untuk\SC mengaudit\VB</phrase><phrase type="np" id="1287" ne="OTHER">buku-buku\NN perseroan\NN</phrase><phrase type="other">sampai\SC</phrase><phrase type="np-sbj" id="1288" ne="OTHER">tahun\NN</phrase><phrase type="other">berakhir\VB</phrase><phrase type="np" id="1289" ne="OTHER|TIME">tanggal\NN 31\CD Desember\NNP 2007.\CD</phrase>
</sentence>
<sentence id="244">
<phrase type="np" id="1290" ne="ORGANIZATION">Bank\NNP Central\NNP Asia\NNP</phrase><phrase type="np" id="1291" ne="ORGANIZATION" coref="1290">BCA\NNP</phrase><phrase type="other">menargetkan\VB dapat\MD menyalurkan\VB kredit\NN</phrase><phrase type="np" id="1292" ne="OTHER|THINGS|NUM">sebesar\JJ Rp\SYM 10\CD triliun\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1293" ne="TIME">tahun\NN 2007.\CD</phrase>
</sentence>
<sentence id="245">
<phrase type="np" id="1294" ne="OTHER">Kita\PRP</phrase><phrase type="other">anggarkan\VB</phrase><phrase type="np" id="1295" ne="THINGS|NUM">Rp\SYM 4\CD triliun\CD</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1296" ne="OTHER">korporasi,\NN</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1297" ne="TITLE|ORGANIZATION">Wakil\NNP Presiden\NNP BCA\NNP</phrase><phrase type="np" id="1298" ne="ORGANIZATION" coref="1297">Jahja\NNP Setiaatmadja\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1299" ne="OTHER">Jakarta,\NNP</phrase><phrase type="other">baru-baru\RB ini.\RB</phrase>
</sentence>
<sentence id="246">
<phrase type="other">Penyaluran\NN kredit\NN</phrase><phrase type="np" id="1300" ne="THINGS|NUM">Rp\SYM 10\CD triliun\CD</phrase><phrase type="other">tersebut\PR menurut\IN</phrase><phrase type="np" id="1301" ne="PERSON" coref="1298">Jahja\NNP</phrase><phrase type="other">akan\MD dianggarkan\VB dari\IN penarikan\NN</phrase><phrase type="np" id="1302" ne="OTHER|ORGANIZATION">Surat\NNP Bank\NNP Indonesia\NNP</phrase><phrase type="np" id="1303" ne="OTHER" coref="1302">SBI.\NNP</phrase>
</sentence>
<sentence id="247">
<phrase type="np" id="1304" ne="EVENT">Kredit\NN BCA\NNP</phrase><phrase type="np" id="1305" ne="EVENT|TIME">tahun\NN 2006\CD</phrase><phrase type="other">tumbuh\VB</phrase><phrase type="np" id="1306" ne="OTHER|NUM">sebesar\JJ 13,5\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1307" ne="THINGS|NUM">Rp\SYM 61,4\CD triliun\CD</phrase><phrase type="other">dengan\SC</phrase><phrase type="np-sbj" id="1308" ne="OTHER|LOCATION">Kredit\NN Korporasi\NN</phrase><phrase type="other">tumbuh\VB</phrase><phrase type="np" id="1309" ne="NUM">19,0\CD persen\CD</phrase><phrase type="np" id="1310" ne="ORGANIZATION">YoY\FW</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1311" ne="THINGS|NUM">Rp\SYM 23,9\CD triliun.\CD</phrase>
</sentence>
<sentence id="248">
<phrase type="other">Sedangkan\CC kredit\NN Komersial\JJ dan\CC</phrase><phrase type="np" id="1312" ne="PERSON|OTHER">Usaha\NN Kecil\JJ dan\CC Menengah\JJ</phrase><phrase type="np" id="1313" ne="PERSON">UKM\NN</phrase><phrase type="other">tumbuh\VB</phrase><phrase type="np" id="1314" ne="NUM">16,1\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1315" ne="THINGS|NUM">Rp\SYM 29,2\CD triliun\CD</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="1316" ne="OTHER|EVENT">Kredit\NN Konsumer\NN</phrase><phrase type="other">turun\VB</phrase><phrase type="np" id="1317" ne="NUM|THINGS">4,9\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1318" ne="THINGS|NUM">Rp\SYM 8,5\CD triliun\CD</phrase><phrase type="other">terutama\JJ disebabkan\VB oleh\IN penurunan\NN Kredit\NN Kendaraan\NN Bermotor\VB yang\SC turun\VB</phrase><phrase type="np" id="1319" ne="NUM">40,9\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1320" ne="THINGS|NUM">Rp\SYM 2,5\CD triliun.\CD</phrase>
</sentence>
<sentence id="249">
<phrase type="np-sbj" id="1321" ne="LOCATION">KPR\NN</phrase><phrase type="other">tumbuh\VB</phrase><phrase type="np" id="1322" ne="NUM|THINGS">23,9\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1323" ne="THINGS|NUM">Rp\SYM 4,4\CD triliun\CD</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="1324" ne="OTHER|EVENT">Kartu\NN Kredit\NN</phrase><phrase type="other">tumbuh\VB</phrase><phrase type="np" id="1325" ne="NUM">34,3\CD %\SYM</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1326" ne="THINGS|NUM">Rp\SYM 1,6\CD triliun.\CD</phrase>
</sentence>
<sentence id="250">
<phrase type="other">Pada\IN</phrase><phrase type="np" id="1327" ne="TIME|OTHER">31\CD Desember\NNP 2006,\CD</phrase><phrase type="other">porsi\NN kredit\NN Komersial\JJ dan\CC</phrase><phrase type="np" id="1328" ne="TITLE">UKM\NN</phrase><phrase type="other">mencapai\VB</phrase><phrase type="np" id="1329" ne="NUM">47,4\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1330" ne="OTHER">total\NN kredit,\NN</phrase><phrase type="other">sementara\SC</phrase><phrase type="np-sbj" id="1331" ne="PERSON">kredit\NN Korporasi\NN</phrase><phrase type="other">berkontribusi\VB</phrase><phrase type="np" id="1332" ne="NUM">38,8\CD persen\CD</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="1333" ne="OTHER|EVENT">kredit\NN Konsumer\NN</phrase><phrase type="np" id="1334" ne="NUM|OTHER">13,8\CD persen.\CD</phrase>
</sentence>
<sentence id="251">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1335" ne="OTHER">itu,\PR</phrase><phrase type="np" id="1336" ne="OTHER">saat\NN ini\PR</phrase><phrase type="np-sbj" id="1337" ne="ORGANIZATION">BCA\NNP dan\CC Mandiri\NNP</phrase><phrase type="other">menjadi\VB sindikasi\NN untuk\SC menyalurkan\VB</phrase><phrase type="np" id="1338" ne="OTHER">kredit\NN</phrase><phrase type="other">bagi\IN investasi\NN jalan\NN tol\NN</phrase><phrase type="np" id="1339" ne="LOCATION|OTHER">Jagorawi\NNP -\Z Cinere.\NNP</phrase>
</sentence>
<sentence id="252">
<phrase type="other">Dalam\IN sindikasi\NN yang\SC akan\MD mengucurkan\VB dana\NN</phrase><phrase type="np" id="1340" ne="THINGS|NUM">Rp\SYM 1,461\CD triliun\CD</phrase><phrase type="other">tersebut,\PR</phrase><phrase type="np-sbj" id="1341" ne="PERSON">BCA\NNP</phrase><phrase type="other">menyalurkan\VB kredit\NN</phrase><phrase type="np" id="1342" ne="OTHER|THINGS|NUM">sebesar\JJ Rp\SYM 584\CD miliar.\CD</phrase>
</sentence>
<sentence id="253">
<phrase type="np" id="1343" ne="PERSON|OTHER">Penanaman\NN modal\NN asing\NN</phrase><phrase type="np" id="1344" ne="ORGANIZATION" coref="1343">PMA\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1345" ne="LOCATION">Malaysia\NNP</phrase><phrase type="np" id="1346" ne="OTHER|TIME">tahun\NN 2006\CD</phrase><phrase type="other">mencapai\VB</phrase><phrase type="np" id="1347" ne="NUM">lima\CD kali\NN</phrase><phrase type="other">lebih\RB besar\JJ dibandingkan\VB</phrase><phrase type="np" id="1348" ne="OTHER">Indonesia,\NNP</phrase><phrase type="np-sbj" id="1349" ne="OTHER">hal\NN ini\PR</phrase><phrase type="other">menunjukkan\VB</phrase><phrase type="np-sbj" id="1350" ne="OTHER|LOCATION">pembangunan\NN ekonomi\NN Malaysia\NNP</phrase><phrase type="other">jauh\JJ lebih\RB menarik\VB dibandingkan\VB</phrase><phrase type="np" id="1351" ne="LOCATION" coref="1348">Indonesia\NNP</phrase><phrase type="other">bagi\IN</phrase><phrase type="np" id="1352" ne="THINGS|OTHER">investor\NN asing.\JJ</phrase>
</sentence>
<sentence id="254">
<phrase type="other">Menurut\IN</phrase><phrase type="np" id="1353" ne="OTHER|ORGANIZATION">harian\NNP Utusan\NNP Malaysia,\NNP</phrase><phrase type="np" id="1354" ne="OTHER">Rabu,\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1355" ne="LOCATION|OTHER">Kuala\NNP Lumpur,\NNP</phrase><phrase type="other">PMA\NN yang\SC masuk\VB ke\IN</phrase><phrase type="np" id="1356" ne="LOCATION" coref="1345">Malaysia\NNP</phrase><phrase type="other">mencapai\VB</phrase><phrase type="np" id="1357" ne="PERSON">20,2\CD miliar\CD ringgit\NN Malaysia\NNP</phrase><phrase type="np" id="1358" ne="PERSON|ORGANIZATION">5,6\CD miliar\CD dolar\NN AS\NNP</phrase><phrase type="other">dibandingkan\VB</phrase><phrase type="np" id="1359" ne="LOCATION" coref="1351">Indonesia\NNP</phrase><phrase type="other">yang\SC hanya\RB mencapai\VB</phrase><phrase type="np" id="1360" ne="PERSON">4,7\CD miliar\CD ringgit\NN Malaysia\NNP</phrase><phrase type="np" id="1361" ne="PERSON|OTHER">1,3\CD miliar\CD dolar\NN AS.\NNP</phrase>
</sentence>
<sentence id="255">
<phrase type="other">Juru\NN bicara\NN</phrase><phrase type="np" id="1362" ne="EVENT">parlemen\NN Malaysia\NNP</phrase><phrase type="other">bidang\NN</phrase><phrase type="np" id="1363" ne="EVENT">perdagangan\NN dan\CC industri\NN</phrase><phrase type="np" id="1364" ne="EVENT">luar\NN negeri\NN</phrase><phrase type="np" id="1365" ne="EVENT">Dr\NNP Tan\NNP Yee\NNP Kew\NNP</phrase><phrase type="other">mengemukakan\VB dalam\IN</phrase><phrase type="np" id="1366" ne="OTHER">sidang\NN parlemen,\NN</phrase><phrase type="np-sbj" id="1367" ne="LOCATION" coref="1356">Malaysia\NNP</phrase><phrase type="other">menduduki\VB</phrase><phrase type="np" id="1368" ne="OTHER">urutan\NN ke-2\OD</phrase><phrase type="other">setelah\SC</phrase><phrase type="np" id="1369" ne="LOCATION">Singapura\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1370" ne="OTHER|LOCATION">kalangan\NN Asean\NNP</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1371" ne="OTHER">segi\NN masuknya\NN PMA.\NN</phrase>
</sentence>
<sentence id="256">
<phrase type="np" id="1372" ne="LOCATION">Singapura\NNP</phrase><phrase type="np" id="1373" ne="OTHER">sendiri\NN</phrase><phrase type="other">berhasil\VB mendatangkan\VB</phrase><phrase type="np" id="1374" ne="THINGS|TIME">PMA\NN tahun\NN 2006\CD</phrase><phrase type="np" id="1375" ne="OTHER|THINGS|NUM">sebesar\JJ 30\CD miliar\CD ringgit\NN</phrase><phrase type="np" id="1376" ne="NUM|OTHER">8,3\CD miliar\CD dolar\NN AS.\NNP</phrase>
</sentence>
<sentence id="257">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1377" ne="OTHER">itu,\PR</phrase><phrase type="np-sbj" id="1378" ne="OTHER|NUM">posisi\NN ketiga\OD</phrase><phrase type="other">adalah\VB</phrase><phrase type="np" id="1379" ne="LOCATION">Thailand\NNP</phrase><phrase type="np" id="1380" ne="OTHER|NUM">sebesar\JJ 11,4\CD miliar\CD ringgit\NN</phrase><phrase type="np" id="1381" ne="NUM|ORGANIZATION">3,16\CD miliar\CD dolar\NN AS\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="1382" ne="LOCATION" coref="1359">Indonesia\NNP</phrase><phrase type="other">berada\VB di\IN</phrase><phrase type="np" id="1383" ne="OTHER">urutan\NN ke-4\OD</phrase><phrase type="other">dengan\IN nilai\NN</phrase><phrase type="np" id="1384" ne="NUM|OTHER">4,7\CD miliar\CD ringgit.\NN</phrase>
</sentence>
<sentence id="258">
<phrase type="other">Jadi\SC tidak\NEG benar\JJ</phrase><phrase type="np" id="1385" ne="ORGANIZATION">PMA\NN</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="1386" ne="LOCATION" coref="1367">Malaysia\NNP</phrase><phrase type="other">semakin\RB memburuk,\VB kata\VB</phrase><phrase type="np" id="1387" ne="TITLE|PERSON">Tan\NNP Yee\NNP Kew\NNP</phrase><phrase type="other">menanggapi\VB pernyataan\NN</phrase><phrase type="np" id="1388" ne="ORGANIZATION|OTHER">Tan\NNP Lian\NNP Hoe,\NNP</phrase><phrase type="other">pimpinan\NN</phrase><phrase type="np" id="1389" ne="TITLE|PERSON|OTHER">Barisan\NNP Nasional\NNP Bukit\NNP Gantang,\NNP</phrase><phrase type="other">yang\SC menyatakan\VB bahwa\SC</phrase><phrase type="np-sbj" id="1390" ne="ORGANIZATION|LOCATION">PMA\NN Malaysia\NNP</phrase><phrase type="other">semakin\RB memburuk\VB dibandingkan\VB tetangga\NN</phrase><phrase type="np" id="1391" ne="OTHER">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1392" ne="OTHER">Asean.\NNP</phrase>
</sentence>
<sentence id="259">
<phrase type="np" id="1393" ne="PERSON" coref="1387">Ia\PRP</phrase><phrase type="other">mengemukakan\VB pula,\RB</phrase><phrase type="np" id="1394" ne="LOCATION">sepuluh\CD</phrase><phrase type="np" id="1395" ne="LOCATION|OTHER">negara\NN investor\NN utama\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1396" ne="LOCATION">Malaysia\NNP</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="1397" ne="TIME|OTHER|NUM">periode\NN 2005\CD hingga\IN 2006,\CD</phrase><phrase type="other">ialah\VB</phrase><phrase type="np" id="1398" ne="LOCATION">Jepang\NNP</phrase><phrase type="other">dengan\IN PMA\NN</phrase><phrase type="np" id="1399" ne="OTHER|PERSON">sebanyak\CD 8.1\CD miliar\CD Ringgit,\NN</phrase><phrase type="np" id="1400" ne="LOCATION">Amerika\NNP</phrase><phrase type="np" id="1401" ne="OTHER|NUM">7,6\CD miliar\CD Ringgit,\NN</phrase><phrase type="np" id="1402" ne="LOCATION">Belanda\NNP</phrase><phrase type="np" id="1403" ne="NUM|OTHER">5\CD miliar,\CD</phrase><phrase type="np" id="1404" ne="LOCATION">Singapura\NNP</phrase><phrase type="np" id="1405" ne="OTHER|NUM">4.9\CD miliar\CD Ringgit,\NN</phrase><phrase type="np" id="1406" ne="LOCATION">Australia\NNP</phrase><phrase type="np" id="1407" ne="OTHER|NUM">2,7\CD miliar\CD Ringgit,\NN</phrase><phrase type="np" id="1408" ne="LOCATION">Korea\NNP</phrase><phrase type="np" id="1409" ne="OTHER|NUM">1.1\CD miliar\CD Ringgit,\NN</phrase><phrase type="np" id="1410" ne="PERSON">Cayman\NNP Islands\NNP</phrase><phrase type="np" id="1411" ne="TIME">1\CD miliar,\CD</phrase><phrase type="np" id="1412" ne="TIME">Taiwan\NNP</phrase><phrase type="np" id="1413" ne="TIME|OTHER">0.8\CD miliar\CD Ringgit,\NN</phrase><phrase type="np" id="1414" ne="LOCATION">Inggris\NNP</phrase><phrase type="np" id="1415" ne="OTHER|NUM">0,7\CD miliar\CD Ringgit.\NN</phrase>
</sentence>
<sentence id="260">
<phrase type="np" id="1416" ne="TITLE">Produksi\NN sawit\NN</phrase><phrase type="np" id="1417" ne="ORGANIZATION">PT\NNP Astra\NNP Agro\NNP Lestari\NNP</phrase><phrase type="np" id="1418" ne="ORGANIZATION" coref="1417">AALI\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1419" ne="TIME">kuartal\NN pertama\OD 2007\CD</phrase><phrase type="other">turun\VB</phrase><phrase type="np" id="1420" ne="NUM">8,3\CD persen\CD</phrase><phrase type="other">dibandingkan\VB</phrase><phrase type="np" id="1421" ne="OTHER">periode\NN sama\JJ</phrase><phrase type="other">sebelum\SC</phrase><phrase type="np" id="1422" ne="OTHER">nya.\PRP</phrase>
</sentence>
<sentence id="261">
<phrase type="np" id="1423" ne="PERSON">Produksi\NN sawit\NN</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="1424" ne="FACILITY">TBS\NN</phrase><phrase type="np" id="1425" ne="FACILITY" coref="1424">tandan\NN buah\NN segar\JJ</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1426" ne="THINGS">kuartal\NN I\OD 2007\CD</phrase><phrase type="np" id="1427" ne="THINGS|NUM">sebesar\JJ 808.475\CD ton\NND</phrase><phrase type="other">atau\CC turun\VB</phrase><phrase type="np" id="1428" ne="NUM|THINGS">8,3\CD persen.\CD</phrase>
</sentence>
<sentence id="262">
<phrase type="np-sbj" id="1429" ne="OTHER">Penurunan\NN produksi\NN ini\PR</phrase><phrase type="other">akibat\NN</phrase><phrase type="np" id="1430" ne="OTHER">dampak\NN musim\NN kering\NN</phrase><phrase type="other">yang\SC terjadi\VB pada\IN</phrase><phrase type="np" id="1431" ne="TIME">semester\NN II\OD 2006,\CD</phrase><phrase type="other">dan\CC dampak\NN</phrase><phrase type="np" id="1432" ne="OTHER">nya\PRP</phrase><phrase type="other">masih\MD dirasakan\VB pada\IN</phrase><phrase type="np" id="1433" ne="OTHER|NUM">kuartal\NN pertama\OD 2007,\CD</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1434" ne="TITLE|OTHER">Direktur\NNP AALI,\NNP</phrase><phrase type="np" id="1435" ne="EVENT" coref="1434">Julie\NNP Syaftari\NNP</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="1436" ne="OTHER">BEJ,\NNP</phrase><phrase type="np" id="1437" ne="OTHER">Kamis.\NNP</phrase>
</sentence>
<sentence id="263">
<phrase type="np" id="1438" ne="OTHER" coref="1435">Dia\PRP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np-sbj" id="1439" ne="OTHER">penurunan\NN produksi\NN ini\PR</phrase><phrase type="other">terjadi\VB di\IN</phrase><phrase type="np" id="1440" ne="OTHER">beberapa\CD perkebunan\NN perseroan\NN</phrase><phrase type="other">yang\SC tersebar\VB di\IN</phrase><phrase type="np" id="1441" ne="OTHER">beberapa\CD wilayah\NN Indonesia.\NNP</phrase>
</sentence>
<sentence id="264">
<phrase type="other">Sementara\CC untuk\IN</phrase><phrase type="np" id="1442" ne="LOCATION">wilayah\NN Sulawesi\NNP</phrase><phrase type="other">masih\MD memberikan\VB</phrase><phrase type="np" id="1443" ne="OTHER">peningkatan\NN produksi\NN</phrase><phrase type="np" id="1444" ne="OTHER|NUM">sebesar\JJ 14,2\CD persen.\CD</phrase>
</sentence>
<sentence id="265">
<phrase type="np-sbj" id="1445" ne="EVENT">Penurunan\NN produksi\NN sawit\NN</phrase><phrase type="other">berakibat\VB pula\RB pada\IN penurunan\NN produksi\NN</phrase><phrase type="np" id="1446" ne="EVENT">minyak\NN sawit\NN mentah\JJ</phrase><phrase type="np" id="1447" ne="EVENT">CPO\FW</phrase><phrase type="np" id="1448" ne="EVENT" coref="1418">AALI\NNP</phrase><phrase type="np" id="1449" ne="OTHER|NUM">sebesar\JJ 10\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1450" ne="NUM|THINGS">223\CD ton\NND</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1451" ne="THINGS">kuartal\NN I\OD 2006\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1452" ne="NUM|THINGS">200.662\CD ton\NND</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1453" ne="EVENT">kuartal\NN I\OD 2007,\CD</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1454" ne="OTHER" coref="1438">nya.\PRP</phrase>
</sentence>
<sentence id="266">
<phrase type="np" id="1455" ne="ORGANIZATION|PERSON">Lembaga\NNP Penjamin\NNP Simpanan\NNP</phrase><phrase type="np" id="1456" ne="PERSON">LPS\NNP</phrase><phrase type="other">menurunkan\VB</phrase><phrase type="np" id="1457" ne="OTHER">suku\NN bunga\NN penjaminan\NN</phrase><phrase type="other">LPS\NNP</phrase><phrase type="np" id="1458" ne="THINGS">rate\FW</phrase><phrase type="other">untuk\IN periode\NN</phrase><phrase type="np" id="1459" ne="TIME">15\CD April\NNP</phrase><phrase type="other">-\Z</phrase><phrase type="np" id="1460" ne="TIME">14\CD Mei\NNP</phrase><phrase type="other">2007\CD sebesar\JJ 25\CD</phrase><phrase type="np" id="1461" ne="THINGS">basis\NND poin\NND</phrase><phrase type="np" id="1462" ne="OTHER">bps\NND</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1463" ne="NUM|THINGS">9,00\CD persen\CD</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1464" ne="OTHER">simpanan\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1465" ne="ORGANIZATION|OTHER">bank\NN umum,\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1466" ne="NUM">12,75\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1467" ne="FACILITY">Bank\NN Perkreditan\NN Rakyat\NN</phrase><phrase type="np" id="1468" ne="OTHER" coref="1467">BPR.\NN</phrase>
</sentence>
<sentence id="267">
<phrase type="np-sbj" id="1469" ne="OTHER">Makro\NN ekonomi\NN</phrase><phrase type="other">membaik,\VB sedangkan\CC</phrase><phrase type="np-sbj" id="1470" ne="OTHER">inflasi\NN dan\CC nilai\NN tukar\NN</phrase><phrase type="other">terus\RB stabil,\JJ kata\VB</phrase><phrase type="np" id="1471" ne="TITLE">Kepala\NN Eksekutif\NN</phrase><phrase type="other">LPS,\NNP</phrase><phrase type="np" id="1472" ne="PERSON" coref="1471">Krisna\NNP Wijaya\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1473" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1474" ne="OTHER">Kamis.\NNP</phrase>
</sentence>
<sentence id="268">
<phrase type="np" id="1475" ne="OTHER" coref="1472">Dia\PRP</phrase><phrase type="other">juga\RB mengatakan,\VB meski\SC pada\IN</phrase><phrase type="np" id="1476" ne="TIME">22\CD Maret\NNP</phrase><phrase type="np-sbj" id="1477" ne="TIME">LPS\NNP</phrase><phrase type="other">mulai\MD memberlakukan\VB</phrase><phrase type="np" id="1478" ne="OTHER">batas\NN simpanan\NN</phrase><phrase type="other">yang\SC dijamin\VB</phrase><phrase type="np" id="1479" ne="OTHER|THINGS|NUM">sebesar\JJ Rp\SYM 100\CD juta,\CD</phrase><phrase type="np" id="1480" ne="OTHER">tingkat\NN kepercayaan\NN</phrase><phrase type="np" id="1481" ne="OTHER">level\FW of\FW confidence\FW</phrase><phrase type="np" id="1482" ne="OTHER">masyarakat\NN</phrase><phrase type="other">terhadap\IN</phrase><phrase type="np" id="1483" ne="OTHER">perbankan\NN</phrase><phrase type="other">masih\MD tetap\RB tinggi.\JJ</phrase>
</sentence>
<sentence id="269">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1484" ne="OTHER">itu,\PR</phrase><phrase type="np" id="1485" ne="EVENT">suku\NN bunga\NN penjaminan\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1486" ne="EVENT">simpanan\NN</phrase><phrase type="other">dalam\IN bentuk\NN</phrase><phrase type="np" id="1487" ne="EVENT">dolar\NN AS\NNP</phrase><phrase type="other">tetap\RB dipertahankan\VB pada\IN level\NN</phrase><phrase type="np" id="1488" ne="NUM">4,75\CD persen\CD</phrase>
</sentence>
<sentence id="270">
<phrase type="other">Dengan\IN</phrase><phrase type="np" id="1489" ne="OTHER">langkah\NN penurunan\NN ini,\PR</phrase><phrase type="other">maka\SC</phrase><phrase type="np" id="1490" ne="OTHER">suku\NN bunga\NN penjaminan\NN</phrase><phrase type="other">LPS\NNP</phrase><phrase type="np" id="1491" ne="THINGS">rate\FW</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1492" ne="THINGS">suku\NN bunga\NN</phrase><phrase type="other">BI\NNP BI\NNP</phrase><phrase type="np" id="1493" ne="THINGS">rate\FW</phrase><phrase type="other">kembali\VB pada\IN</phrase><phrase type="np" id="1494" ne="THINGS|OTHER">posisi\NN yang\SC sama,\JJ</phrase><phrase type="other">yaitu\SC</phrase><phrase type="np" id="1495" ne="NUM">9\CD persen,\CD</phrase><phrase type="other">setelah\SC pada\IN</phrase><phrase type="np" id="1496" ne="TIME|OTHER">awal\NN pekan\NN lalu,\VB</phrase><phrase type="np" id="1497" ne="OTHER|ORGANIZATION">Rapat\NN Dewan\NN Gubernur\NN</phrase><phrase type="np" id="1498" ne="ORGANIZATION" coref="1497">RDG\NN</phrase><phrase type="other">BI\NNP memutuskan\VB untuk\SC mempertahankan\VB BI\NNP</phrase><phrase type="np" id="1499" ne="THINGS">rate\FW</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1500" ne="THINGS">level\NN itu.\PR</phrase>
</sentence>
<sentence id="271">
<phrase type="np" id="1501" ne="ORGANIZATION">Lembaga\NN pemeringkat\NN internasional\JJ</phrase><phrase type="np" id="1502" ne="ORGANIZATION|OTHER" coref="1501">Fitch\NNP Ratings,\NNP</phrase><phrase type="np" id="1503" ne="OTHER">Kamis,\NNP</phrase><phrase type="other">memberikan\VB</phrase><phrase type="np" id="1504" ne="OTHER|THINGS">peringkat\NN jangka\NN panjang\NN nasional\JJ</phrase><phrase type="np" id="1505" ne="THINGS">'\Z AA\SYM -\Z idn\SYM '\Z</phrase><phrase type="np" id="1506" ne="THINGS">AA\SYM minus/\JJ idn\SYM</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1507" ne="OTHER|ORGANIZATION|LOCATION">PT\NNP Bank\NNP Pan\NNP Indonesia\NNP Tbk\NNP</phrase><phrase type="np" id="1508" ne="PERSON" coref="1507">Panin\NNP</phrase><phrase type="other">yang\SC berdomisili\VB di\IN</phrase><phrase type="np" id="1509" ne="OTHER">Indonesia.\NNP</phrase>
</sentence>
<sentence id="272">
<phrase type="np-sbj" id="1510" ne="EVENT">Fitch\NNP</phrase><phrase type="other">dalam\IN siaran\NN pers\NN</phrase><phrase type="np" id="1511" ne="OTHER" coref="1510">nya\PRP</phrase><phrase type="other">yang\SC diterima\VB</phrase><phrase type="np" id="1512" ne="OTHER">ANTARA\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1513" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1514" ne="TIME">Kamis\NNP</phrase><phrase type="other">juga\RB menaikkan\VB</phrase><phrase type="np" id="1515" ne="OTHER">peringkat\NN dukungan\NN</phrase><phrase type="np" id="1516" ne="PERSON">Support\FW Rating\FW</phrase><phrase type="other">ke\IN</phrase><phrase type="np" id="1517" ne="OTHER|NUM">'\Z 4\CD '\Z</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1518" ne="THINGS|NUM|OTHER">'\Z 5\CD '\Z</phrase><phrase type="other">dan\CC menegaskan\VB kembali\RB</phrase><phrase type="np" id="1519" ne="OTHER">peringkat\NN individu\NN</phrase><phrase type="np" id="1520" ne="PERSON">Individual\FW Rating\FW</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1521" ne="LOCATION" coref="1508">Panin\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1522" ne="OTHER|PERSON">'\Z C/\SYM D\SYM '.\Z</phrase>
</sentence>
<sentence id="273">
<phrase type="np-sbj" id="1523" ne="PERSON" coref="1511">Fitch\NNP</phrase><phrase type="other">juga\RB memberikan\VB</phrase><phrase type="np" id="1524" ne="OTHER">peringkat\NN ekspektasi\NN</phrase><phrase type="np" id="1525" ne="OTHER|PERSON">'\Z AA\SYM -\Z idn\SYM '\Z</phrase><phrase type="np" id="1526" ne="ORGANIZATION|OTHER">AA\SYM minus/\JJ idn\SYM</phrase><phrase type="other">untuk\IN obligasi\NN</phrase><phrase type="np" id="1527" ne="OTHER|THINGS|NUM">senilai\NN Rp\SYM 1,5\CD triliun\CD</phrase><phrase type="np" id="1528" ne="NUM">Obligasi\NNP II/\NNP 2007\NNP</phrase><phrase type="other">yang\SC akan\MD diterbitkan\VB</phrase><phrase type="np" id="1529" ne="OTHER">perusahaan\NN</phrase><phrase type="other">dalam\IN tiga\CD seri\NN</phrase><phrase type="np" id="1530" ne="LOCATION">tranches\FW</phrase><phrase type="other">yang\SC mempunyai\VB</phrase><phrase type="np" id="1531" ne="OTHER">jangka\NN waktu\NN</phrase><phrase type="other">jatuh\VB tempo\VB</phrase><phrase type="np" id="1532" ne="OTHER|THINGS">tiga,\CD lima,\CD dan\CC tujuh\CD tahun\NN</phrase><phrase type="other">dengan\SC</phrase><phrase type="np" id="1533" ne="THINGS">prospek\NN</phrase><phrase type="other">dari\IN peringkat-peringkat\NN yang\SC diberikan\VB adalah\VB stabil.\JJ</phrase>
</sentence>
<sentence id="274">
<phrase type="np-sbj" id="1534" ne="PERSON" coref="1523">Fitch\NNP</phrase><phrase type="other">menyatakan\VB</phrase><phrase type="np-sbj" id="1535" ne="OTHER">peringkat-peringkat\NN tersebut\PR</phrase><phrase type="other">mencerminkan\VB</phrase><phrase type="np" id="1536" ne="OTHER">posisi\NN permodalan\NN bank\NN</phrase><phrase type="other">yang\SC kuat,\JJ kredit\NN bermasalah\VB yang\SC walaupun\SC tinggi\JJ bisa\MD diimbangi\VB dengan\IN</phrase><phrase type="np" id="1537" ne="OTHER">pencadangan\NN yang\SC cukup,\JJ</phrase><phrase type="other">profitabilitas\NN yang\SC secara\IN umum\JJ baik,\JJ dan\CC juga\RB merefleksikan\VB</phrase><phrase type="np" id="1538" ne="OTHER">dukungan\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1539" ne="OTHER">pemerintah,\NN</phrase><phrase type="other">serta\CC</phrase><phrase type="np" id="1540" ne="LOCATION">Australia\NNP and\NNP New\NNP Zealand\NNP</phrase><phrase type="np" id="1541" ne="LOCATION" coref="1540">ANZ\NNP</phrase><phrase type="np" id="1542" ne="LOCATION">Banking\NNP Group\NNP</phrase><phrase type="other">walaupun\SC mungkin\MD terbatas.\JJ</phrase>
</sentence>
<sentence id="275">
<phrase type="np-sbj" id="1543" ne="PERSON" coref="1521">Panin\NNP</phrase><phrase type="other">adalah\VB</phrase><phrase type="np" id="1544" ne="OTHER|NUM">bank\NN kedelapan\OD terbesar\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1545" ne="LOCATION">Indonesia\NNP</phrase><phrase type="np" id="1546" ne="OTHER">2,4\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1547" ne="OTHER">total\NN aset\NN perbankan\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np-sbj" id="1548" ne="ORGANIZATION" coref="1541">ANZ\NNP</phrase><phrase type="other">memiliki\VB</phrase><phrase type="np" id="1549" ne="OTHER">kepemilikan\NN minoritas\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1550" ne="OTHER">bank\NN tersebut.\PR</phrase>
</sentence>
<sentence id="276">
<phrase type="np-sbj" id="1551" ne="PERSON" coref="1534">Fitch\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="1552" ne="OTHER">sejalan\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1553" ne="OTHER">pertumbuhan\NN yang\SC signifikan\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1554" ne="OTHER">pembiayaan\NN komersial\JJ</phrase><phrase type="other">yang\SC berbunga\VB lebih\RB tinggi,\JJ tumbuh\VB</phrase><phrase type="np" id="1555" ne="NUM">89\CD persen\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1556" ne="THINGS|NUM">Rp\SYM 7\CD triliun\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1557" ne="TIME">tahun\NN 2006,\CD</phrase><phrase type="np" id="1558" ne="TIME">margin\NN bunga\NN bersih\JJ</phrase><phrase type="np" id="1559" ne="TIME">net\FW interest\FW margin\FW</phrase><phrase type="np" id="1560" ne="TIME">bank\NN</phrase><phrase type="other">meningkat\VB menjadi\VB</phrase><phrase type="np" id="1561" ne="NUM">5,1\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1562" ne="OTHER|TIME">tahun\NN 2006\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1563" ne="PERSON">4,1\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1564" ne="OTHER">2005.\CD</phrase>
</sentence>
<sentence id="277">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1565" ne="OTHER">itu,\PR</phrase><phrase type="np" id="1566" ne="OTHER">pendapatan\NN bukan\NEG bunga\NN</phrase><phrase type="other">yang\SC lebih\RB tinggi\JJ berasal\VB dari\IN</phrase><phrase type="np" id="1567" ne="OTHER">penjualan\NN obligasi\NN pemerintah\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1568" ne="OTHER">2006.\CD</phrase>
</sentence>
<sentence id="278">
<phrase type="other">Walaupun\SC</phrase><phrase type="np-sbj" id="1569" ne="OTHER">biaya-biaya\NN operasi\NN</phrase><phrase type="other">meningkat,\VB tetapi\CC masih\MD bisa\MD dikontrol\VB di\IN</phrase><phrase type="np" id="1570" ne="FACILITY">kisaran\NN 3\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1571" ne="OTHER">rata-rata\NN aset.\NN</phrase>
</sentence>
<sentence id="279">
<phrase type="other">Secara\IN</phrase><phrase type="np" id="1572" ne="OTHER">keseluruhan\NN</phrase><phrase type="other">,lanjut\VB</phrase><phrase type="np-sbj" id="1573" ne="OTHER" coref="1551">Fitch,\NNP</phrase><phrase type="np-sbj" id="1574" ne="EVENT" coref="1543">Panin\NNP</phrase><phrase type="other">membukukan\VB</phrase><phrase type="np" id="1575" ne="OTHER">profitabilitas\NN yang\SC lebih\RB baik\JJ</phrase><phrase type="other">dengan\SC</phrase><phrase type="np" id="1576" ne="OTHER">rasio\NN pendapatan\NN</phrase><phrase type="other">terhadap\IN</phrase><phrase type="np" id="1577" ne="OTHER">aset\NN</phrase><phrase type="np" id="1578" ne="TITLE">ROA\FW</phrase><phrase type="other">sebelum\SC</phrase><phrase type="np" id="1579" ne="TITLE">provisi\NN</phrase><phrase type="np" id="1580" ne="OTHER">3,2\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1581" ne="OTHER|TIME">tahun\NN 2006\CD</phrase><phrase type="other">dibandingkan\VB dengan\IN</phrase><phrase type="np" id="1582" ne="OTHER">2,2\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1583" ne="OTHER">2005.\CD</phrase>
</sentence>
<sentence id="280">
<phrase type="other">Rasio\NN kredit\NN bermasalah\VB Panin\NNP meningkat\VB ke\IN</phrase><phrase type="np" id="1584" ne="PERSON">9,3\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1585" ne="OTHER|NUM">akhir\NN 2005\CD</phrase><phrase type="other">yang\SC</phrase><phrase type="np-sbj" id="1586" ne="OTHER">sebagian\CD</phrase><phrase type="other">disebabkan\VB oleh\IN implementasi\NN</phrase><phrase type="np" id="1587" ne="FACILITY">regulasi\NN penggolongan\NN kredit\NN</phrase><phrase type="other">yang\SC lebih\RB ketat\JJ dan\CC juga\RB karena\IN</phrase><phrase type="np" id="1588" ne="OTHER">kondisi\NN makroekonomi\NN</phrase><phrase type="other">yang\SC kurang\RB menguntungkan\VB termasuk\VB</phrase><phrase type="np" id="1589" ne="OTHER">kenaikan\NN harga\NN bahan\NN bakar\NN</phrase><phrase type="other">dan\CC kemudian\CC</phrase><phrase type="np" id="1590" ne="OTHER">tingkat\NN suku\NN bunga\NN</phrase><phrase type="other">yang\SC meningkat\VB sejak\IN</phrase><phrase type="np" id="1591" ne="TIME">2005.\CD</phrase>
</sentence>
<sentence id="281">
<phrase type="other">Namun\CC</phrase><phrase type="np" id="1592" ne="OTHER">demikian,\PR</phrase><phrase type="other">rasio\NN kredit\NN bermasalah\VB kemudian\RB turun\VB ke\IN</phrase><phrase type="np" id="1593" ne="PERSON">8,0\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1594" ne="OTHER|NUM">akhir\NN 2006\CD</phrase><phrase type="other">meskipun\SC jumlah\NN absolut\JJ</phrase><phrase type="np" id="1595" ne="NUM">nya\PRP</phrase><phrase type="other">lebih\RB tinggi\JJ</phrase><phrase type="np" id="1596" ne="NUM">8\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1597" ne="OTHER|NUM">akhir\NN 2005\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1598" ne="NUM">Rp\SYM 1,5\CD triliun.\CD</phrase>
</sentence>
<sentence id="282">
<phrase type="np" id="1599" ne="OTHER|PERSON">Sekitar\IN 83\CD persen\CD</phrase><phrase type="other">dari\IN kredit\NN bermasalah\VB di\IN</phrase><phrase type="np" id="1600" ne="OTHER|TIME">akhir\NN tahun\NN 2006\CD</phrase><phrase type="other">digolongkan\VB sebagai\IN</phrase><phrase type="np" id="1601" ne="OTHER">kredit\NN korporasi,\NN</phrase><phrase type="other">termasuk\VB di\IN dalam\NN</phrase><phrase type="np" id="1602" ne="OTHER">nya\PRP</phrase><phrase type="np" id="1603" ne="OTHER">beberapa\CD</phrase><phrase type="other">kredit\NN bermasalah\VB yang\SC berasal\VB dari\IN</phrase><phrase type="np" id="1604" ne="OTHER|THINGS">masa\NN krisis\JJ keuangan\NN</phrase><phrase type="other">Asia.\NNP</phrase>
</sentence>
<sentence id="283">
<phrase type="other">Sedangkan\CC sisa\NN</phrase><phrase type="np" id="1605" ne="OTHER">nya\PRP</phrase><phrase type="np" id="1606" ne="OTHER|NUM">sebesar\JJ 17\CD persen\CD</phrase><phrase type="other">digolongkan\VB sebagai\IN kredit\NN bermasalah\VB komersial\JJ dan\CC</phrase><phrase type="np" id="1607" ne="OTHER">konsumsi,\NN</phrase><phrase type="other">yang\SC walaupun\SC meningkat\VB di\IN</phrase><phrase type="np" id="1608" ne="TIME">2006\CD</phrase><phrase type="other">tetapi\CC dari\IN</phrase><phrase type="np" id="1609" ne="OTHER">basis\NN yang\SC rendah,\JJ</phrase><phrase type="other">dengan\SC rasio\NN kredit\NN bermasalah\VB dari\IN</phrase><phrase type="np" id="1610" ne="NUM|OTHER">kedua\CD segmen\NN tersebut\PR</phrase><phrase type="other">meningkat\VB menjadi\VB</phrase><phrase type="np" id="1611" ne="NUM|THINGS">2,1\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1612" ne="OTHER|TIME">akhir\NN tahun\NN 2006\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1613" ne="PERSON">1,7\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1614" ne="OTHER">akhir\NN 2005.\CD</phrase>
</sentence>
<sentence id="284">
<phrase type="other">Restrukturisasi\NN kredit\NN bermasalah\VB yang\SC sedang\MD dilakukan\VB terutama\JJ untuk\IN</phrase><phrase type="np" id="1615" ne="OTHER">beberapa\CD</phrase><phrase type="np" id="1616" ne="OTHER">kredit\NN korporasi\NN</phrase><phrase type="other">bermasalah\VB yang\SC jumlah\NN</phrase><phrase type="np" id="1617" ne="OTHER">nya\PRP</phrase><phrase type="other">besar\JJ dan\CC</phrase><phrase type="np" id="1618" ne="OTHER">ekspektasi\NN ekonomi\NN</phrase><phrase type="other">yang\SC lebih\RB baik\JJ diharapkan\VB akan\MD membantu\VB memperbaiki\VB</phrase><phrase type="np" id="1619" ne="OTHER">kualitas\NN kredit\NN</phrase><phrase type="other">Panin\NNP di\IN</phrase><phrase type="np" id="1620" ne="OTHER">tahun\NN ini.\PR</phrase>
</sentence>
<sentence id="285">
<phrase type="np" id="1621" ne="EVENT">Pencadangan\NN</phrase><phrase type="other">untuk\IN kredit\NN bermasalah\VB</phrase><phrase type="np" id="1622" ne="OTHER|NUM">sebesar\JJ 82,3\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1623" ne="OTHER|TIME">akhir\NN tahun\NN 2006,\CD</phrase><phrase type="other">lebih\RB rendah\JJ dari\IN</phrase><phrase type="np" id="1624" ne="NUM">111\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1625" ne="OTHER">akhir\NN 2004,\CD</phrase><phrase type="other">tetapi\CC lebih\RB tinggi\JJ dibandingkan\VB rata-rata\NN</phrase><phrase type="np" id="1626" ne="ORGANIZATION">bank\NN sekelas\NN</phrase><phrase type="np" id="1627" ne="ORGANIZATION">peer\FW</phrase><phrase type="other">yang\SC berkisar\VB</phrase><phrase type="np" id="1628" ne="OTHER|TIME">antara\IN 60\CD -\Z 70\CD persen.\CD</phrase>
</sentence>
<sentence id="286">
<phrase type="other">Dalam\IN</phrase><phrase type="np" id="1629" ne="OTHER">pengertian\NN Fitch,\NNP</phrase><phrase type="np" id="1630" ne="OTHER">pinjaman\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1631" ne="OTHER">jaminan\NN</phrase><phrase type="other">merupakan\VB</phrase><phrase type="np" id="1632" ne="OTHER">porsi\NN mayoritas\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1633" ne="OTHER">total\NN kredit\NN bank\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1634" ne="OTHER|TIME">akhir\NN tahun\NN 2006.\CD</phrase>
</sentence>
<sentence id="287">
<phrase type="np-sbj" id="1635" ne="FACILITY|ORGANIZATION">Permodalan\NN Panin\NNP</phrase><phrase type="other">adalah\VB kuat\JJ dengan\SC</phrase><phrase type="np" id="1636" ne="ORGANIZATION">CAR\FW</phrase><phrase type="other">total\NN</phrase><phrase type="np" id="1637" ne="ORGANIZATION">29,5\CD persen\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1638" ne="OTHER|TIME">akhir\NN tahun\NN 2006\CD</phrase><phrase type="np" id="1639" ne="TIME">Tier\FW</phrase><phrase type="other">1\CD :\Z</phrase><phrase type="np" id="1640" ne="TIME|OTHER">21,8\CD persen,\CD</phrase><phrase type="other">di\IN atas\NN</phrase><phrase type="np" id="1641" ne="OTHER">rata-rata\NN industri\NN</phrase><phrase type="other">yang\SC</phrase><phrase type="np" id="1642" ne="OTHER|NUM">sebesar\JJ 20,5\CD persen.\CD</phrase>
</sentence>
<sentence id="288">
<phrase type="other">Meskipun\SC</phrase><phrase type="np-sbj" id="1643" ne="OTHER">rasio\NN ini\PR</phrase><phrase type="other">mungkin\MD turun\VB</phrase><phrase type="np" id="1644" ne="OTHER">sejalan\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1645" ne="OTHER">ekspansi\NN kredit,\NN</phrase><phrase type="other">yang\SC ditargetkan\VB</phrase><phrase type="np" id="1646" ne="OTHER|NUM">sebesar\JJ 25\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1647" ne="NUM">2007,\CD</phrase><phrase type="np-sbj" id="1648" ne="NUM">Fitch\NNP</phrase><phrase type="other">mengerti\VB bahwa\SC</phrase><phrase type="np-sbj" id="1649" ne="OTHER">Panin\NNP</phrase><phrase type="other">berniat\VB untuk\SC mempertahankan\VB</phrase><phrase type="np" id="1650" ne="OTHER">rasio\NN kecukupan\NN modal\NN</phrase><phrase type="np" id="1651" ne="THINGS">CAR\FW</phrase><phrase type="other">total\NN di\IN level\NN</phrase><phrase type="np" id="1652" ne="NUM|OTHER">20\CD persen\CD atau\CC lebih\RB</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1653" ne="OTHER">beberapa\CD tahun\NN ke\RB depan.\RB</phrase>
</sentence>
<sentence id="289">
<phrase type="np-sbj" id="1654" ne="PERSON" coref="1649">Panin\NNP</phrase><phrase type="other">didirikan\VB pada\IN</phrase><phrase type="np" id="1655" ne="OTHER|TIME">tahun\NN 1971\CD</phrase><phrase type="other">oleh\IN</phrase><phrase type="np" id="1656" ne="OTHER|LOCATION">keluarga\NN Gunawan\NNP</phrase><phrase type="other">yang\SC masih\MD memegang\VB</phrase><phrase type="np" id="1657" ne="OTHER">kontrol\NN</phrase><phrase type="other">terhadap\IN</phrase><phrase type="np" id="1658" ne="OTHER">bank\NN</phrase><phrase type="other">sampai\IN</phrase><phrase type="np" id="1659" ne="OTHER">saat\NN ini\PR</phrase><phrase type="other">melalui\IN</phrase><phrase type="np" id="1660" ne="ORGANIZATION|PERSON" coref="1654">PT\NNP Panin\NNP Life\NNP Tbk\NNP</phrase><phrase type="other">yang\SC menguasai\VB</phrase><phrase type="np" id="1661" ne="NUM|THINGS|OTHER">45,1\CD persen\CD saham.\NN</phrase>
</sentence>
<sentence id="290">
<phrase type="np-sbj" id="1662" ne="ORGANIZATION">ANZ\NNP</phrase><phrase type="other">sebagai\IN</phrase><phrase type="np" id="1663" ne="OTHER">pemegang\NN saham\NN minoritas\NN</phrase><phrase type="other">membeli\VB</phrase><phrase type="np" id="1664" ne="LOCATION">29,02\CD persen\CD saham\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1665" ne="OTHER|TIME">tahun\NN 1999\CD</phrase><phrase type="other">dan\CC sampai\IN</phrase><phrase type="np" id="1666" ne="OTHER">saat\NN ini\PR</phrase><phrase type="other">terus\RB memberikan\VB</phrase><phrase type="np" id="1667" ne="OTHER">bantuan\NN teknis\NN</phrase><phrase type="other">di\IN bidang\NN</phrase><phrase type="np" id="1668" ne="THINGS|OTHER">perbankan\NN konsumsi,\NN</phrase><phrase type="np" id="1669" ne="THINGS|OTHER">manajemen\NN risiko,\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1670" ne="THINGS|OTHER">teknologi\NN informasi.\NN</phrase>
</sentence>
<sentence id="291">
<phrase type="other">Seperti\IN</phrase><phrase type="np" id="1671" ne="OTHER">bank-bank\NN sekelas\NN</phrase><phrase type="other">yang\SC besar,\JJ</phrase><phrase type="np-sbj" id="1672" ne="TITLE" coref="1660">Panin\NNP</phrase><phrase type="other">juga\RB mengubah\VB fokus\NN pembiayaan\NN</phrase><phrase type="np" id="1673" ne="OTHER" coref="1672">nya\PRP</phrase><phrase type="other">ke\IN segmen\NN</phrase><phrase type="np" id="1674" ne="OTHER">konsumer\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1675" ne="ORGANIZATION">UKM\NN</phrase><phrase type="np" id="1676" ne="ORGANIZATION|OTHER" coref="1675">usaha\NN kecil\JJ dan\CC menengah,\JJ</phrase><phrase type="other">yang\SC menyumbang\VB</phrase><phrase type="np" id="1677" ne="NUM">64\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1678" ne="OTHER">portofolio\NN kredit\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1679" ne="OTHER|TIME">akhir\NN tahun\NN 2006.\CD</phrase>
</sentence>
<sentence id="292">
<phrase type="np" id="1680" ne="TITLE|ORGANIZATION|PERSON">Direktur\NNP Utama\NNP PT\NNP Bank\NNP Mandiri\NNP</phrase><phrase type="np" id="1681" ne="PERSON|OTHER" coref="1680">Agus\NNP D.W.\NNP Martowardojo\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np-sbj" id="1682" ne="FACILITY">Bank\NNP Mandiri\NNP</phrase><phrase type="other">berencana\VB akan\MD mengakuisisi\VB perusahaan\NN</phrase><phrase type="np" id="1683" ne="OTHER">multifinance\FW</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1684" ne="OTHER">bank\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1685" ne="OTHER|FACILITY">aset\NN minimum\NN tertentu.\JJ</phrase>
</sentence>
<sentence id="293">
<phrase type="other">Dalam\IN</phrase><phrase type="np" id="1686" ne="OTHER">revisi\NN rencana\NN bisnis\NN</phrase><phrase type="np" id="1687" ne="OTHER" coref="1682">kami\PRP</phrase><phrase type="other">akan\MD masukkan\VB</phrase><phrase type="np" id="1688" ne="OTHER">rencana\NN akuisisi\NN</phrase><phrase type="np" id="1689" ne="OTHER">perusahaan\NN '\Z multifinance\FW '\Z</phrase><phrase type="other">atau\CC</phrase><phrase type="np" id="1690" ne="OTHER">suatu\CD bank\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1691" ne="OTHER">aset\NN minimum\NN tertentu,\JJ</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1692" ne="OTHER" coref="1681">nya\PRP</phrase><phrase type="other">ketika\SC ditemui\VB setelah\SC</phrase><phrase type="np" id="1693" ne="OTHER|ORGANIZATION">Rapat\NN Koordinasi\NN BUMN\NN</phrase><phrase type="other">yang\SC juga\RB dihadiri\VB oleh\IN</phrase><phrase type="np" id="1694" ne="TITLE|OTHER">Menteri\NNP Negara\NNP BUMN,\NNP</phrase><phrase type="np" id="1695" ne="OTHER" coref="1694">Sugiharto,\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1696" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1697" ne="OTHER">Kamis.\NNP</phrase>
</sentence>
<sentence id="294">
<phrase type="np" id="1698" ne="PERSON" coref="1692">Ia\PRP</phrase><phrase type="other">mengatakan\VB dengan\IN kondisi\NN kredit\NN bermasalah\VB NPL\FW yang\SC telah\MD mencapai\VB</phrase><phrase type="np" id="1699" ne="OTHER|FACILITY">di\VB bawah\VB 5\CD persen\CD</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1700" ne="OTHER">semester\NN kedua,\OD</phrase><phrase type="other">maka\SC</phrase><phrase type="np" id="1701" ne="OTHER">pertumbuhan\NN</phrase><phrase type="other">akan\MD mencapai\VB</phrase><phrase type="np" id="1702" ne="NUM">18\CD persen\CD</phrase><phrase type="other">dan\CC pada\IN</phrase><phrase type="np" id="1703" ne="OTHER|TIME">bulan\NN Juli\NNP</phrase><phrase type="other">mendatang.\VB</phrase>
</sentence>
<sentence id="295">
<phrase type="other">Sehingga\SC ,kata\VB</phrase><phrase type="np" id="1704" ne="OTHER" coref="1698">nya,\PRP</phrase><phrase type="other">akan\MD dilakukan\VB</phrase><phrase type="np" id="1705" ne="OTHER">revisi\NN rencana\NN bisnis\NN</phrase><phrase type="other">untuk\SC mempercepat\VB perkembangan\NN</phrase><phrase type="np" id="1706" ne="ORGANIZATION|OTHER" coref="1687">Bank\NNP Mandiri.\NNP</phrase>
</sentence>
<sentence id="296">
<phrase type="np-sbj" id="1707" ne="PERSON">Agus\NNP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np" id="1708" ne="OTHER">saat\NN ini\PR</phrase><phrase type="other">NPL\FW</phrase><phrase type="np" id="1709" ne="ORGANIZATION" coref="1706">bank\NNP Mandiri\NNP</phrase><phrase type="other">yaitu\SC</phrase><phrase type="np" id="1710" ne="PERSON|OTHER">4,7\CD persen,\CD</phrase><phrase type="other">dengan\IN NPL\FW yang\SC</phrase><phrase type="np" id="1711" ne="OTHER|THINGS">kurang\RB dari\IN 5\CD persen\CD</phrase><phrase type="other">tersebut,\PR</phrase><phrase type="np-sbj" id="1712" ne="ORGANIZATION" coref="1709">bank\NNP Mandiri\NNP</phrase><phrase type="other">siap\VB untuk\SC mengembangkan\VB</phrase><phrase type="np" id="1713" ne="OTHER">bisnis\NN</phrase><phrase type="other">dan\CC melakukan\VB</phrase><phrase type="np" id="1714" ne="OTHER">merger\NN maupun\CC akuisisi.\NN</phrase>
</sentence>
<sentence id="297">
<phrase type="np-sbj" id="1715" ne="ORGANIZATION" coref="1712">Bank\NNP Mandiri\NNP</phrase><phrase type="other">punya\VB</phrase><phrase type="np" id="1716" ne="PERSON">5\CD strategi\NN bisnis\NN</phrase><phrase type="other">dan\CC berusaha\VB mencapai\VB pangsa\NN pasar\NN</phrase><phrase type="np" id="1717" ne="NUM|OTHER">20\CD persen\CD hingga\IN 30\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1718" ne="OTHER">'\Z revenue\FW pool\FW '\Z</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1719" ne="OTHER">masing-masing\CD segmen,\NN</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1720" ne="OTHER" coref="1707">nya.\PRP</phrase>
</sentence>
<sentence id="298">
<phrase type="other">Meski\SC telah\MD merencanakan\VB untuk\IN</phrase><phrase type="np" id="1721" ne="OTHER">merger\NN</phrase><phrase type="other">dan\CC mengakuisisi\VB perusahaan\NN</phrase><phrase type="np" id="1722" ne="OTHER">multifinance,\FW</phrase><phrase type="np-sbj" id="1723" ne="PERSON" coref="1720">Agus\NNP</phrase><phrase type="other">enggan\RB mengemukakan\VB lebih\RB lanjut\JJ perihal\IN rencana\NN</phrase><phrase type="np" id="1724" ne="THINGS" coref="1723">nya\PRP</phrase><phrase type="other">tersebut.\PR</phrase>
</sentence>
<sentence id="299">
<phrase type="np" id="1725" ne="PERSON">Kita\PRP</phrase><phrase type="other">tunggu\VB saja,\RB kata\VB</phrase><phrase type="np" id="1726" ne="OTHER" coref="1724">nya.\PRP</phrase>
</sentence>
<sentence id="300">
<phrase type="other">Sementara\SC</phrase><phrase type="np" id="1727" ne="OTHER">itu,\PR</phrase><phrase type="other">menurut\IN</phrase><phrase type="np" id="1728" ne="TITLE|OTHER">Menteri\NNP Negara\NNP BUMN,\NNP</phrase><phrase type="np" id="1729" ne="OTHER" coref="1728">Sugiharto,\NNP</phrase><phrase type="np-sbj" id="1730" ne="ORGANIZATION" coref="1715">Bank\NNP Mandiri\NNP</phrase><phrase type="other">adalah\VB bank\NN yang\SC berhasil\VB menurunkan\VB NPL\FW</phrase><phrase type="np" id="1731" ne="OTHER" coref="1730">nya\PRP</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1732" ne="PERSON">16,17\CD persen\CD</phrase><phrase type="other">atau\CC</phrase><phrase type="np" id="1733" ne="THINGS|NUM">Rp\SYM 16,2\CD triliun\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1734" ne="TIME">2005\CD</phrase><phrase type="other">menjadi\VB</phrase><phrase type="np" id="1735" ne="NUM|THINGS">6,06\CD persen\CD</phrase><phrase type="other">atau\CC</phrase><phrase type="np" id="1736" ne="THINGS|NUM">sebesar\JJ Rp\SYM 6,6\CD triliun\CD</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1737" ne="TIME">tahun\NN 2006.\CD</phrase>
</sentence>
<sentence id="301">
<phrase type="other">Pada\IN</phrase><phrase type="np" id="1738" ne="OTHER">2006,\CD</phrase><phrase type="np-sbj" id="1739" ne="ORGANIZATION" coref="1731">Bank\NNP Mandiri\NNP</phrase><phrase type="other">berhasil\VB memperoleh\VB penghargaan\NN</phrase><phrase type="np" id="1740" ne="THINGS">The\NNP Best\NNP Overall\NNP for\NNP Corporate\NNP Governance\NNP Award\NNP</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1741" ne="THINGS">The\NNP Best\NNP Disclosure\NNP and\NNP Transparency\NNP</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1742" ne="LOCATION|OTHER">Asia\NNP Money.\NNP</phrase>
</sentence>
<sentence id="302">
<phrase type="np" id="1743" ne="TITLE">Meneg\NNP Perencanaan\NNP Pembangunan\NNP Nasional/\NNP</phrase><phrase type="np" id="1744" ne="OTHER|TITLE">Kepala\NNP Bappenas,\NNP</phrase><phrase type="np" id="1745" ne="TITLE|PERSON" coref="1744">Paskah\NNP Suzetta\NNP</phrase><phrase type="other">direncanakan\VB mengadakan\VB</phrase><phrase type="np" id="1746" ne="OTHER">sejumlah\CD pertemuan,\NN</phrase><phrase type="other">di\IN antara\NN</phrase><phrase type="np" id="1747" ne="OTHER">nya\PRP</phrase><phrase type="other">dengan\IN</phrase><phrase type="np" id="1748" ne="OTHER|TITLE|FACILITY">Presiden\NNP Bank\NNP Dunia,\NNP</phrase><phrase type="np" id="1749" ne="FACILITY" coref="1748">Paul\NNP Wolfowitz\NNP</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="1750" ne="OTHER|FACILITY">Spring\NNP Meeting\NNP</phrase><phrase type="np" id="1751" ne="FACILITY">Dana\NNP Moneter\NNP Internasional/\NNP</phrase><phrase type="np" id="1752" ne="FACILITY|OTHER">Bank\NNP Dunia\NNP</phrase><phrase type="np" id="1753" ne="ORGANIZATION">IMF/\NNP WB\NNP</phrase><phrase type="np" id="1754" ne="ORGANIZATION|OTHER">pekan\NN ini\PR</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1755" ne="ORGANIZATION|OTHER">Washington\NNP AS.\NNP</phrase>
</sentence>
<sentence id="303">
<phrase type="other">Salah\CD satu\CD</phrase><phrase type="np" id="1756" ne="NUM">nya\PRP</phrase><phrase type="np-sbj" id="1757" ne="TITLE" coref="1745">Pak\NN Menteri\NN</phrase><phrase type="other">bakal\MD ketemu\VB dengan\IN</phrase><phrase type="np" id="1758" ne="LOCATION|OTHER" coref="1749">Paul\NNP Wolfowitz,\NNP</phrase><phrase type="other">tentu\RB saja\RB ditemani\VB oleh\IN</phrase><phrase type="np" id="1759" ne="PERSON|OTHER">James\NNP Adams,\NNP</phrase><phrase type="np" id="1760" ne="PERSON">Vice\NNP President\NNP</phrase><phrase type="np" id="1761" ne="FACILITY">Bank\NNP Dunia\NNP</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1762" ne="LOCATION|OTHER">Asia\NNP Pasifik,\NNP</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1763" ne="TITLE|OTHER">Sekretaris\NNP Utama\NNP Bappenas,\NNP</phrase><phrase type="np" id="1764" ne="PERSON" coref="1763">Syahrial\NNP Loetan\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1765" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1766" ne="OTHER">Jumat.\NNP</phrase>
</sentence>
<sentence id="304">
<phrase type="np" id="1767" ne="PERSON" coref="1764">Dia\PRP</phrase><phrase type="other">menjelaskan\VB dalam\IN</phrase><phrase type="np" id="1768" ne="OTHER">pertemuan\NN itu,\PR</phrase><phrase type="np-sbj" id="1769" ne="TITLE|ORGANIZATION" coref="1757">Meneg\NN PPN\NN</phrase><phrase type="other">akan\MD menyampaikan\VB</phrase><phrase type="np" id="1770" ne="OTHER">kondisi\NN terakhir\JJ</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1771" ne="LOCATION">Indonesia\NNP</phrase><phrase type="other">yang\SC mengalami\VB</phrase><phrase type="np" id="1772" ne="OTHER">banyak\CD bencana\NN</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1773" ne="OTHER|TIME">awal\NN tahun\NN 2007\CD</phrase><phrase type="other">sehingga\SC akan\MD ada\VB</phrase><phrase type="np-sbj" id="1774" ne="OTHER">kenaikan\NN defisit\NN</phrase><phrase type="other">dan\CC kemungkinan\MD meminta\VB</phrase><phrase type="np" id="1775" ne="OTHER|THINGS">bantuan\NN pinjaman\NN</phrase><phrase type="other">berbunga\VB rendah\JJ kepada\IN</phrase><phrase type="np" id="1776" ne="ORGANIZATION|OTHER">Bank\NNP Dunia.\NNP</phrase>
</sentence>
<sentence id="305">
<phrase type="np-sbj" id="1777" ne="TITLE|PERSON" coref="1759">Pak\NNP Adams\NNP</phrase><phrase type="np" id="1778" ne="PERSON">kemarin\NN</phrase><phrase type="other">sudah\MD beri\VB petunjuk\NN kalau\SC</phrase><phrase type="np" id="1779" ne="OTHER" coref="1777">dia\PRP</phrase><phrase type="other">akan\MD membantu\VB</phrase><phrase type="np" id="1780" ne="LOCATION" coref="1771">Indonesia\NNP</phrase><phrase type="other">yang\SC ingin\RB meminta\VB</phrase><phrase type="np" id="1781" ne="EVENT">IDA\FW</phrase><phrase type="np" id="1782" ne="EVENT" coref="1781">International\FW Development\FW Assistance\FW</phrase><phrase type="other">-\Z</phrase><phrase type="np" id="1783" ne="EVENT">red\NN</phrase><phrase type="other">yang\SC berbunga\VB rendah,\JJ tapi\CC</phrase><phrase type="np" id="1784" ne="OTHER" coref="1780">kita\PRP</phrase><phrase type="other">tahu\VB</phrase><phrase type="np" id="1785" ne="OTHER">diri\NN</phrase><phrase type="other">juga.\RB</phrase>
</sentence>
<sentence id="306">
<phrase type="np" id="1786" ne="OTHER" coref="1784">Kita\PRP</phrase><phrase type="other">kan\RP sudah\MD masuk\VB</phrase><phrase type="np" id="1787" ne="OTHER|EVENT">'\Z middle\FW income\FW countries,\FW</phrase><phrase type="other">jadi\SC jangan-jangan\RB susah.\JJ</phrase>
</sentence>
<sentence id="307">
<phrase type="other">Namun,\CC</phrase><phrase type="np" id="1788" ne="OTHER" coref="1767">dia\PRP</phrase><phrase type="other">menambahkan\VB kemungkinan\NN mengajukan\VB pinjaman\NN berbunga\VB rendah\JJ ke\IN</phrase><phrase type="np" id="1789" ne="ORGANIZATION">Bank\NNP Dunia\NNP</phrase><phrase type="other">hanya\RB sebagai\IN</phrase><phrase type="np" id="1790" ne="OTHER">tindakan\NN antisipasi.\NN</phrase>
</sentence>
<sentence id="308">
<phrase type="np" id="1791" ne="EVENT">Bunga\NN pinjaman\NN</phrase><phrase type="np" id="1792" ne="ORGANIZATION" coref="1782">IDA\FW</phrase><phrase type="np" id="1793" ne="OTHER|THINGS">hanya\RB sekitar\IN -\Z 2\CD persen\CD</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1794" ne="OTHER">tahun.\NN</phrase>
</sentence>
<sentence id="309">
<phrase type="np" id="1795" ne="OTHER" coref="1786">Kita\PRP</phrase><phrase type="other">pengen\X menunjukkan\VB kayak-kayaknya\X nih\UH kalau\SC</phrase><phrase type="np-sbj" id="1796" ne="OTHER">besok\NN</phrase><phrase type="other">susah,\JJ</phrase><phrase type="np" id="1797" ne="OTHER" coref="1795">kita\PRP</phrase><phrase type="other">mau\MD minjam\VB ke\IN</phrase><phrase type="np" id="1798" ne="ORGANIZATION|OTHER" coref="1789">Bank\NNP Dunia,\NNP</phrase><phrase type="other">tutur\VB</phrase><phrase type="np" id="1799" ne="OTHER" coref="1788">nya.\PRP</phrase>
</sentence>
<sentence id="310">
<phrase type="other">Kehadiran\NN</phrase><phrase type="np" id="1800" ne="TITLE|ORGANIZATION">Meneg\NN PPN/\NN</phrase><phrase type="np" id="1801" ne="OTHER|TITLE">Kepala\NN Bappenas\NN</phrase><phrase type="np" id="1802" ne="ORGANIZATION">sendiri\NN</phrase><phrase type="other">di\IN pertemuan\NN tahunan\NN</phrase><phrase type="np" id="1803" ne="OTHER|ORGANIZATION">IMF/\NNP WB\NNP</phrase><phrase type="other">itu\PR sebagai\IN</phrase><phrase type="np" id="1804" ne="OTHER">Alternate\FW Governor\FW</phrase><phrase type="np" id="1805" ne="FACILITY">Bank\NNP Dunia\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1806" ne="FACILITY">Indonesia,\NNP</phrase><phrase type="other">sedangkan\CC</phrase><phrase type="np" id="1807" ne="OTHER">Governor\FW</phrase><phrase type="np" id="1808" ne="OTHER|PERSON">Bank\NNP Dunia\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1809" ne="PERSON">Indonesia\NNP</phrase><phrase type="other">adalah\VB</phrase><phrase type="np" id="1810" ne="LOCATION|OTHER|TITLE|PERSON">Menkeu\NNP Sri\NNP Mulyani\NNP Indrawati.\NNP</phrase>
</sentence>
<sentence id="311">
<phrase type="np-sbj" id="1811" ne="LOCATION">Jepang\NNP</phrase><phrase type="other">menghibahkan\VB</phrase><phrase type="np" id="1812" ne="NUM|ORGANIZATION">1\CD juta\CD dolar\NN AS\NNP</phrase><phrase type="other">yang\SC berasal\VB dari\IN</phrase><phrase type="np" id="1813" ne="LOCATION">Policy\FW and\FW Human\FW Resource\FW Development\FW</phrase><phrase type="np" id="1814" ne="LOCATION" coref="1813">PHRD\FW</phrase><phrase type="np" id="1815" ne="LOCATION|OTHER">Trust\FW Fund,\FW</phrase><phrase type="other">untuk\SC mendukung\VB penguatan\NN</phrase><phrase type="np" id="1816" ne="OTHER">sistem\NN administrasi\NN perpajakan\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1817" ne="OTHER">perbaikan\NN pelayanan.\NN</phrase>
</sentence>
<sentence id="312">
<phrase type="np-sbj" id="1818" ne="EVENT" coref="1816">Sistem\NN administrasi\NN perpajakan\NN</phrase><phrase type="other">adalah\VB</phrase><phrase type="np" id="1819" ne="OTHER">faktor\NN kunci\NN</phrase><phrase type="other">dalam\IN upaya\NN memperbaiki\VB</phrase><phrase type="np" id="1820" ne="OTHER">iklim\NN investasi\NN</phrase><phrase type="other">dan\CC memobilisasi\VB</phrase><phrase type="np" id="1821" ne="OTHER">pendanaan\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1822" ne="OTHER">pembangunan.\NN</phrase>
</sentence>
<sentence id="313">
<phrase type="np-sbj" id="1823" ne="TITLE" coref="1811">Jepang\NNP</phrase><phrase type="other">tetap\RB berkomitmen\VB untuk\SC membantu\VB</phrase><phrase type="np-sbj" id="1824" ne="OTHER|LOCATION">pemerintah\NNP Indonesia\NNP</phrase><phrase type="other">memperbaiki\VB sistem\NN pajak\NN</phrase><phrase type="np" id="1825" ne="OTHER" coref="1824">mereka,\PRP</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1826" ne="PERSON|OTHER">Ken\NNP Okinawa,\NNP</phrase><phrase type="other">pejabat\NN</phrase><phrase type="np" id="1827" ne="ORGANIZATION">Kedutaan\NNP Besar\NNP Jepang\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1828" ne="LOCATION">Jakarta\NNP</phrase><phrase type="other">dalam\IN siaran\NN pers\NN</phrase><phrase type="np" id="1829" ne="ORGANIZATION">Bank\NNP Dunia\NNP</phrase><phrase type="other">yang\SC diterima\VB</phrase><phrase type="np" id="1830" ne="OTHER">ANTARA,\NNP</phrase><phrase type="np" id="1831" ne="OTHER">Jumat.\NNP</phrase>
</sentence>
<sentence id="314">
<phrase type="other">Sedangkan\CC</phrase><phrase type="np" id="1832" ne="TITLE|OTHER">Dirjen\NNP Pajak\NNP Depkeu,\NNP</phrase><phrase type="np" id="1833" ne="PERSON" coref="1832">Darmin\NNP Nasution\NNP</phrase><phrase type="other">mengatakan\VB pihak\NN</phrase><phrase type="np" id="1834" ne="OTHER" coref="1833">nya\PRP</phrase><phrase type="other">menyambut\VB baik\JJ</phrase><phrase type="np" id="1835" ne="OTHER">dukungan\NN masyarakat\NN internasional\JJ</phrase><phrase type="other">terhadap\IN</phrase><phrase type="np" id="1836" ne="OTHER">reformasi\NN perpajakan\NN</phrase><phrase type="other">yang\SC tengah\MD dilakukan\VB pihak\NN</phrase><phrase type="np" id="1837" ne="OTHER" coref="1834">nya.\PRP</phrase>
</sentence>
<sentence id="315">
<phrase type="np" id="1838" ne="EVENT">Hibah\NN</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1839" ne="LOCATION">Jepang\NNP</phrase><phrase type="other">akan\MD digunakan\VB untuk\SC membiayai\VB</phrase><phrase type="np" id="1840" ne="OTHER|ORGANIZATION">sebuah\NND kajian\NN</phrase><phrase type="other">atas\IN praktik\NN</phrase><phrase type="np" id="1841" ne="OTHER">kami\PRP</phrase><phrase type="other">selama\IN</phrase><phrase type="np" id="1842" ne="OTHER">ini\PR</phrase><phrase type="other">dan\CC membuat\VB</phrase><phrase type="np" id="1843" ne="OTHER">sebuah\NND rencana\NN reformasi\NN</phrase><phrase type="other">yang\SC komprehensif\JJ dalam\IN bidang\NN</phrase><phrase type="np" id="1844" ne="THINGS|OTHER">proses\NN bisnis,\NN</phrase><phrase type="np" id="1845" ne="THINGS">IT\FW</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1846" ne="THINGS|OTHER">pengembangan\NN sumber\NN daya,\NN</phrase><phrase type="other">kata\VB</phrase><phrase type="np-sbj" id="1847" ne="OTHER" coref="1837">Darmin.\NNP</phrase>
</sentence>
<sentence id="316">
<phrase type="np" id="1848" ne="TIME">Saat\NN ini,\PR</phrase><phrase type="np-sbj" id="1849" ne="TIME" coref="1839">Jepang\NNP</phrase><phrase type="other">tengah\MD berkolaborasi\VB dengan\IN</phrase><phrase type="np" id="1850" ne="ORGANIZATION" coref="1829">Bank\NNP Dunia\NNP</phrase><phrase type="other">membantu\VB</phrase><phrase type="np" id="1851" ne="THINGS">Ditjen\NNP Pajak\NNP</phrase><phrase type="other">dalam\IN modernisasi\NN rencana\NN untuk\SC mendukung\VB reformasi\NN</phrase><phrase type="np" id="1852" ne="OTHER">lembaga\NN dan\CC organisasi,\NN</phrase><phrase type="other">kemampuan\NN</phrase><phrase type="np" id="1853" ne="OTHER">IT,\FW</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1854" ne="OTHER|THINGS">manajemen\NN sumber\NN daya\NN manusia.\NN</phrase>
</sentence>
<sentence id="317">
<phrase type="np" id="1855" ne="OTHER">Pejabat\NN sementara\RB</phrase><phrase type="np" id="1856" ne="TITLE">Country\FW Director\FW</phrase><phrase type="np" id="1857" ne="ORGANIZATION">Bank\NNP Dunia\NNP</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1858" ne="OTHER">Indonesia,\NNP</phrase><phrase type="np" id="1859" ne="PERSON">Joel\NNP Hellman\NNP</phrase><phrase type="other">menganggap\VB bahwa\SC</phrase><phrase type="np-sbj" id="1860" ne="OTHER|LOCATION">pemerintah\NNP Indonesia\NNP</phrase><phrase type="other">telah\MD melakukan\VB</phrase><phrase type="np" id="1861" ne="OTHER">awalan\NN yang\SC sangat\RB baik\JJ</phrase><phrase type="other">dalam\IN</phrase><phrase type="np" id="1862" ne="OTHER|ORGANIZATION">agenda\NN reformasi\NN pajak.\NN</phrase>
</sentence>
<sentence id="318">
<phrase type="np-sbj" id="1863" ne="ORGANIZATION" coref="1860">Pemerintah\NN</phrase><phrase type="other">akan\MD terus\RB menjaga\VB</phrase><phrase type="np" id="1864" ne="OTHER|THINGS">ketahanan\NN fiskal\JJ</phrase><phrase type="other">Indonesia\NNP atas\IN kemungkinan\NN terjadinya\NN</phrase><phrase type="np" id="1865" ne="OTHER|EVENT">over\FW exposure\FW</phrase><phrase type="np" id="1866" ne="EVENT">paparan\NN berlebihan\JJ</phrase><phrase type="np" id="1867" ne="EVENT">ekonomi\NN Indonesia\NNP</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1868" ne="EVENT">pihak\NN luar\NN</phrase><phrase type="other">dengan\SC</phrase><phrase type="np-sbj" id="1869" ne="EVENT">cara\NN</phrase><phrase type="other">terus\RB memonitor\VB</phrase><phrase type="np" id="1870" ne="OTHER">seluruh\CD pinjaman\NN luar\NN negeri\NN</phrase><phrase type="other">mengingat\IN banyak\CD</phrase><phrase type="np" id="1871" ne="OTHER">nya\PRP</phrase><phrase type="other">perusahaan\NN swasta\NN yang\SC</phrase><phrase type="np" id="1872" ne="OTHER">kini\NN</phrase><phrase type="other">sedang\MD melirik\VB</phrase><phrase type="np" id="1873" ne="OTHER">pembiayaan\NN luar\NN negeri.\NN</phrase>
</sentence>
<sentence id="319">
<phrase type="np-sbj" id="1874" ne="OTHER">Ini\PR</phrase><phrase type="other">akan\MD mempengaruhi\VB neraca\NN pembayaran\NN</phrase><phrase type="np" id="1875" ne="OTHER">kita.\PRP</phrase>
</sentence>
<sentence id="320">
<phrase type="other">Karena\SC</phrase><phrase type="np" id="1876" ne="OTHER">itu\PR</phrase><phrase type="other">perlu\MD</phrase><phrase type="np" id="1877" ne="OTHER">kita\PRP</phrase><phrase type="other">monitor\VB dengan\IN baik,\JJ kata\VB</phrase><phrase type="np" id="1878" ne="TITLE">Gubernur\NNP BI,\NNP</phrase><phrase type="np" id="1879" ne="PERSON" coref="1878">Burhanuddin\NNP Abdullah\NNP</phrase><phrase type="other">usai\SC</phrase><phrase type="np" id="1880" ne="OTHER">rapat\NN koordinasi\NN terbatas\JJ</phrase><phrase type="np" id="1881" ne="OTHER" coref="1880">rakortas\NN</phrase><phrase type="other">membahas\VB</phrase><phrase type="np" id="1882" ne="OTHER">exposure\FW</phrase><phrase type="other">ekonomi\NN Indonesia\NNP terhadap\IN</phrase><phrase type="np" id="1883" ne="OTHER">luar\NN negeri\NN</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1884" ne="OTHER|LOCATION">Gedung\NNP Depkeu\NNP Jakarta,\NNP</phrase><phrase type="np" id="1885" ne="OTHER">Senin.\NNP</phrase>
</sentence>
<sentence id="321">
<phrase type="np" id="1886" ne="OTHER" coref="1879">Dia\PRP</phrase><phrase type="other">mengatakan,\VB rakortas\NN yang\SC dihadiri\VB</phrase><phrase type="np" id="1887" ne="OTHER">seluruh\CD</phrase><phrase type="other">pengambil\NN</phrase><phrase type="np" id="1888" ne="OTHER|THINGS">kebijakan\NN moneter\JJ dan\CC fiskal\JJ</phrase><phrase type="other">itu\PR belum\NEG menentukan\VB apakah\SC</phrase><phrase type="np" id="1889" ne="ORGANIZATION">Tim\NN Koordinasi\NN</phrase><phrase type="np" id="1890" ne="ORGANIZATION">Pinjaman\NN Komersial\JJ Luar\NN Negeri\NN</phrase><phrase type="np" id="1891" ne="OTHER" coref="1890">PKLN.\NN</phrase>
</sentence>
<sentence id="322">
<phrase type="np-sbj" id="1892" ne="EVENT|OTHER">Pembahasan\NN tadi\PR</phrase><phrase type="other">masih\MD dalam\IN</phrase><phrase type="np" id="1893" ne="OTHER">tahap\NN awal.\NN</phrase>
</sentence>
<sentence id="323">
<phrase type="other">Pertanyaan\NN</phrase><phrase type="np" id="1894" ne="OTHER">nya\PRP</phrase><phrase type="other">apakah\SC</phrase><phrase type="np" id="1895" ne="OTHER">kita\PRP</phrase><phrase type="other">masih\MD meneruskan\VB</phrase><phrase type="np" id="1896" ne="OTHER">tim\NN itu,\PR</phrase><phrase type="other">kata\VB</phrase><phrase type="np-sbj" id="1897" ne="OTHER" coref="1879">Gubernur.\NN</phrase>
</sentence>
<sentence id="324">
<phrase type="np-sbj" id="1898" ne="PERSON" coref="1897">Burhanuddin\NNP</phrase><phrase type="other">menegaskan\VB</phrase><phrase type="np" id="1899" ne="OTHER">rakortas\NN</phrase><phrase type="other">sama\RB sekali\RB tidak\NEG dibahas\VB</phrase><phrase type="np" id="1900" ne="OTHER|THINGS">adanya\NN pembatasan\NN pinjaman\NN</phrase><phrase type="other">yang\SC dilakukan\VB oleh\IN swasta,\JJ termasuk\VB</phrase><phrase type="np" id="1901" ne="OTHER">BUMN.\NN</phrase>
</sentence>
<sentence id="325">
<phrase type="other">Menurut\IN</phrase><phrase type="np" id="1902" ne="OTHER">data\NN BI,\NNP</phrase><phrase type="other">outstanding\FW</phrase><phrase type="np" id="1903" ne="OTHER|THINGS">pinjaman\NN LN\NN</phrase><phrase type="other">Indonesia,\NNP termasuk\VB</phrase><phrase type="np" id="1904" ne="OTHER">pemerintah\NN</phrase><phrase type="other">dan\CC swasta,\JJ pada\IN</phrase><phrase type="np" id="1905" ne="OTHER|TIME">tahun\NN 2006\CD</phrase><phrase type="other">berada\VB pada\IN</phrase><phrase type="np" id="1906" ne="OTHER">trend\FW</phrase><phrase type="other">yang\SC menurun\VB hingga\SC mencapai\VB</phrase><phrase type="np" id="1907" ne="PERSON">125,257\CD miliar\CD dolar\NN AS\NNP</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1908" ne="PERSON|OTHER">Desember\NNP 2006.\CD</phrase>
</sentence>
<sentence id="326">
<phrase type="other">Sedangkan\CC outstanding\FW</phrase><phrase type="np" id="1909" ne="OTHER|ORGANIZATION">pinjaman\NN LN\NN</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1910" ne="OTHER|LOCATION">akhir\NN triwulan\NN I/\OD 2006\CD</phrase><phrase type="other">mencapai\VB</phrase><phrase type="np" id="1911" ne="NUM">134,627\CD miliar\CD dolar\NN AS,\NNP</phrase><phrase type="other">turun\VB menjadi\VB</phrase><phrase type="np" id="1912" ne="OTHER|PERSON">129,934\CD miliar\CD dolar\NN AS\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1913" ne="OTHER|TITLE">akhir\NN triwulan\NN II/\OD 2006,\CD</phrase><phrase type="other">dan\CC menjadi\VB</phrase><phrase type="np" id="1914" ne="OTHER|PERSON">127,528\CD miliar\CD dolar\NN AS\NNP</phrase><phrase type="other">pada\IN</phrase><phrase type="np" id="1915" ne="PERSON|OTHER">akhir\NN triwulan\NN III/\OD 2006.\CD</phrase>
</sentence>
<sentence id="327">
<phrase type="np-sbj" id="1916" ne="ORGANIZATION|PERSON">PT\NNP Astra\NNP Otoparts\NNP Tbk\NNP</phrase><phrase type="other">menjual\VB kepemilikan\NN saham\NN</phrase><phrase type="np" id="1917" ne="OTHER" coref="1916">nya\PRP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1918" ne="ORGANIZATION|LOCATION">PT\NNP Exedy\NNP Indonesia\NNP</phrase><phrase type="np" id="1919" ne="OTHER|PERSON">sebanyak\CD 7.072\CD saham\NN</phrase><phrase type="other">dengan\IN</phrase><phrase type="np-sbj" id="1920" ne="OTHER">harga\NN</phrase><phrase type="np" id="1921" ne="NUM">Rp\SYM 1.835.000\CD</phrase><phrase type="other">per\IN</phrase><phrase type="np" id="1922" ne="THINGS">saham\NN</phrase><phrase type="other">atau\CC total\NN</phrase><phrase type="np" id="1923" ne="THINGS">nya\PRP</phrase><phrase type="np" id="1924" ne="OTHER|THINGS|NUM">senilai\NN Rp\SYM 12,977\CD miliar\CD</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="1925" ne="ORGANIZATION" coref="1918">Exedy\NNP Corporation\NNP</phrase><phrase type="other">yang\SC berkedudukan\VB di\IN</phrase><phrase type="np" id="1926" ne="OTHER">Jepang.\NNP</phrase>
</sentence>
<sentence id="328">
<phrase type="np" id="1927" ne="OTHER" coref="1917">Kami\PRP</phrase><phrase type="other">telah\MD menandatangani\VB</phrase><phrase type="np" id="1928" ne="OTHER">perjanjian\NN pengikatan\NN</phrase><phrase type="other">untuk\IN penjualan\NN</phrase><phrase type="np" id="1929" ne="OTHER">seluruh\CD saham\NN</phrase><phrase type="other">milik\NN</phrase><phrase type="np" id="1930" ne="ORGANIZATION" coref="1917">PT\NNP Astra\NNP Otoparts\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1931" ne="ORGANIZATION" coref="1925">PT\NNP Exedy\NNP Indonesia\NNP</phrase><phrase type="other">kepada\IN</phrase><phrase type="np" id="1932" ne="LOCATION|OTHER" coref="1931">Exedy\NNP Corporation,\NNP</phrase><phrase type="other">kata\VB</phrase><phrase type="np" id="1933" ne="TITLE|ORGANIZATION|OTHER">Sekretaris\NNP Perusahaan\NNP Astra\NNP Otoparts,\NNP</phrase><phrase type="np" id="1934" ne="PERSON" coref="1933">Kartina\NNP Rahayu\NNP</phrase><phrase type="other">di\IN</phrase><phrase type="np" id="1935" ne="OTHER">Jakarta,\NNP</phrase><phrase type="np" id="1936" ne="OTHER">Senin.\NNP</phrase>
</sentence>
<sentence id="329">
<phrase type="other">Menurut\IN</phrase><phrase type="np" id="1937" ne="OTHER" coref="1934">dia,\PRP</phrase><phrase type="np-sbj" id="1938" ne="OTHER">penjualan\NN saham\NN tersebut\PR</phrase><phrase type="other">akan\MD berlaku\VB efektif\JJ apabila\SC syarat-syarat\NN sebagaimana\SC termuat\VB dalam\IN</phrase><phrase type="np" id="1939" ne="OTHER">perjanjian\NN pengikatan\NN jual\NN beli\NN saham\NN</phrase><phrase type="other">telah\MD terpenuhi.\VB</phrase>
</sentence>
<sentence id="330">
<phrase type="np" id="1940" ne="OTHER" coref="1937">Dia\PRP</phrase><phrase type="other">mengatakan\VB</phrase><phrase type="np-sbj" id="1941" ne="OTHER">transaksi\NN tersebut\PR</phrase><phrase type="other">tidak\NEG mengandung\VB</phrase><phrase type="np" id="1942" ne="OTHER">unsur\NN benturan\NN kepentingan\NN</phrase><phrase type="other">dilihat\VB dari\IN sisi\NN</phrase><phrase type="np" id="1943" ne="OTHER">direksi,\NN</phrase><phrase type="np" id="1944" ne="THINGS">komisaris\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1945" ne="THINGS|OTHER">pemegang\NN saham\NN utama.\JJ</phrase>
</sentence>
<sentence id="331">
<phrase type="other">Lagi\CC pula\CC nilai\NN</phrase><phrase type="np" id="1946" ne="OTHER">nya\PRP</phrase><phrase type="np" id="1947" ne="OTHER">tidak\NEG cukup\JJ material\NN</phrase><phrase type="other">yakni\SC</phrase><phrase type="np" id="1948" ne="OTHER|NUM">kurang\RB 10\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1949" ne="OTHER">pendapatan\NN</phrase><phrase type="other">dan\CC</phrase><phrase type="np" id="1950" ne="NUM">20\CD persen\CD</phrase><phrase type="other">dari\IN</phrase><phrase type="np" id="1951" ne="OTHER">ekuitas,\NN</phrase><phrase type="other">tambah\VB</phrase><phrase type="np" id="1952" ne="OTHER" coref="1940">nya.\PRP</phrase>
</sentence>
<sentence id="332">
<phrase type="np-sbj" id="1953" ne="TITLE|PERSON">Menkeu\NNP Sri\NNP Mulyani\NNP Indrawati\NNP</phrase><phrase type="other">membebaskan\VB</phrase><phrase type="np" id="1954" ne="OTHER">tarif\NN akhir\NN</phrase><phrase type="np" id="1955" ne="OTHER">bea\NN masuk\NN</phrase><phrase type="np" id="1956" ne="ORGANIZATION" coref="1955">BM\NN</phrase><phrase type="other">atas\IN</phrase><phrase type="np" id="1957" ne="OTHER">impor\NN bahan\NN baku\NN</phrase><phrase type="other">untuk\IN</phrase><phrase type="np" id="1958" ne="ORGANIZATION|OTHER">pembuatan\NN komponen\NN kendaraan\NN bermotor\NN</phrase><phrase type="other">oleh\IN</phrase><phrase type="np" id="1959" ne="OTHER|ORGANIZATION">industri\NN komponen\NN kendaraan\NN bermotor.\NN</phrase>
</sentence>
<sentence id="333">
<phrase type="np-sbj" id="1960" ne="OTHER">Ketentuan\NN tersebut\PR</phrase><phrase type="other">diatur\VB dalam\IN</phrase><phrase type="np" id="1961" ne="THINGS|TIME|LOCATION|OTHER">Permenkeu\NNP No.\NNP 34/\NNP PMK.011/\NNP 2007\NNP</phrase><phrase type="other">tanggal\NN 3\CD April\NNP 2007\CD dan\CC mulai\MD berlaku\VB</phrase><phrase type="np" id="1962" ne="OTHER">30\CD hari\NN</phrase><phrase type="other">setelah\SC ditetapkan\VB selama\IN</phrase><phrase type="np" id="1963" ne="OTHER">satu\CD tahun\NN</phrase><phrase type="other">sejak\IN tanggal\NN berlaku.\VB</phrase>