-
Notifications
You must be signed in to change notification settings - Fork 1
/
assault_gsr.xml
3358 lines (2986 loc) · 253 KB
/
assault_gsr.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
<Sentences>
<Sentence date="20080110" id="5b520e266203c42f8aa08eb9" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="انتحاريون مفجرون" targettext="سياسيين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="PAK OPP" />
<Location loc_in_sentence="false"></Location>
<Text>
كما هاجم مفجرون انتحاريون سياسيين بينهم زعيمة المعارضة بي نظير بوتو التي اغتيلت في هجوم بالأسلحة والقنابل يوم 27 ديسمبر الماضي.
</Text>
</Sentence>
<Sentence date="20071208" id="5b520e266203c42f8aa08eba" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="IRQ CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال ان «سيارة مفخخة انفجرت قرب مقر مجلس للصحوة في ضاحية المنصورية الواقعة في بلدة المقدادية (100 كلم شمال شرقي بغداد)، مما أدى الى مقتل عشرة اشخاص على الاقل وإصابة آخرين بجروح».
</Text>
</Sentence>
<Sentence date="20080228" id="5b520e266203c42f8aa08ebb" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اغتيال" sourcetext="إسرائيل" targettext="عماد مغنيّة" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR None" targetcode="LBN REB" />
<Location loc_in_sentence="false"></Location>
<Text>
لكن إسرائيل ردّت استخباراتيّا عبر اغتيال عماد مغنيّة مع أنها لم تتبنّ حتى الآن عملية الاغتيال.
</Text>
</Sentence>
<Sentence date="20070104" id="5b520e266203c42f8aa08ebc" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وخطفت" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="INT None" targetcode="INT None" />
<Location loc_in_sentence="false"></Location>
<Text>
وخطفت الحركة عشرات العاملين الاجانب خلال سلسلة هجمات في يناير (كانون الثاني) وفبراير (شباط) من العام الماضي، وأفرجت عنهم جميعا وفق شروط غير معلنة.
</Text>
</Sentence>
<Sentence date="20070506" id="5b520e266203c42f8aa08ebd" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وقتل" sourcetext="الحركة" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وتبنت الحركة المسؤولية عن عملية تفجير عربة «أورال» في الطريق بين «مقديشو» و«بيدوا» وتدميرها بالكامل وقتل كل من فيها الاثنين الماضي، موضحة أن هذه هي أول عملية من نوعها بعد الانسحاب من المواجه.
</Text>
</Sentence>
<Sentence date="20080731" id="5b520e266203c42f8aa08ebe" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وقتل" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="IRQ MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقتل ما لا يقل عن 28 متطوعا في الجيش العراقي وجرح 55 شخصا اخرون منتصف يوليو (تموز) الحالي، في هجوم انتحاري مزدوج بحزامين ناسفين استهدفا مقرا للتطوع شرق بعقوبة، وفقا لمصادر امنية عراقية.
</Text>
</Sentence>
<Sentence date="20080119" id="5b520e266203c42f8aa08ebf" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None MIL" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وأكد شهود عيان لـ«الشرق الأوسط»، أن أكثر من عشرين قذيفة هاون وصاروخ انطلقت من منطقة الفيحاء في الضفة الشرقية لشط العرب باتجاه قاعدة المطار، أعقبها بقليل صوت انفجارات لقنابل طائرات عسكرية أطلقت قذائفها على مكان قريب من إطلاق القذائف.
</Text>
</Sentence>
<Sentence date="20070108" id="5b520e266203c42f8aa08ec0" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="بقتل" sourcetext="المارينز جنود" targettext="المدنيين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None MIL" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وبحسب التقرير، قام عدد من جنود «المارينز» بقتل المدنيين بعدما فجرت عبوة ناسفة إحدى مركباتهم، وتسببت بمقتل جندي أميركي.
</Text>
</Sentence>
<Sentence date="20070107" id="5b520e266203c42f8aa08ec1" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="بخطف" sourcetext="مسلحون" targettext="مهدي حنبلي" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None REB" targetcode="None GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
وطاولت عمليات الخطف اثنين من المسؤولين في حماس، ففي نابلس قام مسلحون مقنعون بخطف نائب رئيس البلدية مهدي حنبلي من سيارته، ولم يعرف اي شيء عن مصيره.
</Text>
</Sentence>
<Sentence date="20061208" id="5b520e266203c42f8aa08ec2" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="حركة طالبان" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="IMG REB" targetcode="AFG MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وتأتي تلك التطورات فيما تبنت حركة طالبان أمس مسؤوليتها عن الهجوم، الذي أودى بحياة سبعة أفغان وأميركيين في هجوم انتحاري في ولاية قندهار الجنوبية، وتعهدها بتصعيد هجماتها ضد القوات الأجنبية.
</Text>
</Sentence>
<Sentence date="20070427" id="5b520e266203c42f8aa08ec3" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="انفجر" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None COP" />
<Location loc_in_sentence="false"></Location>
<Text>
قال مصدر امني عراقي إن رأسا مقطوعا انفجر أمس لدى مرور دورية تقدم عناصرها لرفعه من مكانه في مدينة الحويجة شمال العراق، من دون ان يسفر ذلك عن اصابات.
</Text>
</Sentence>
<Sentence date="20080821" id="5b520e266203c42f8aa08ec4" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="ووقع الهجوم" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="INT MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
ووقع الهجوم فجر امس في منطقة كيلو 4 الواقعة علي الطريق بين القصر الرئاسي ومطار مقديشو حيث تتمركز فيها القوات الأفريقية.
</Text>
</Sentence>
<Sentence date="20080304" id="5b520e266203c42f8aa08eb7" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="أشخاص" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وفي سامراء (120 كلم شمال بغداد)، أعلنت الشرطة مقتل سبعة أشخاص بينهم امرأة وطفل بتفجير انتحاري بواسطة شاحنة مفخخة في منطقة الحويش التي تبعد 11 كيلومترا شمال غربي سامراء.
</Text>
</Sentence>
<Sentence date="20081111" id="5b520e266203c42f8aa08eb8" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وخطفوا" sourcetext="مسلحون" targettext="كينيين أوروبيين وطيارين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None REB" targetcode="KEN CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
كما اقتحم مسلحون الاسبوع الماضي مهبطا للطائرات في وسط الصومال وخطفوا أربعة أوروبيين يعملون في مجال المساعدات وطيارين كينيين اثنين، وقال سكان محليون ان الرهائن نقلوا الى مقديشو.
</Text>
</Sentence>
<Sentence date="20081207" id="5b520e266203c42f8aa08ec5" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="الجماعة" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None CVL" targetcode="None JUD" />
<Location loc_in_sentence="false"></Location>
<Text>
وألقي اللوم على الجماعة في سلسلة من التفجيرات في بنغلاديش بين شهري أغسطس (آب) وديسمبر (كانون الاول) من عام 2005 وأسفرت عن مقتل 30 شخصا على الأقل بينهم قضاة ورجال شرطة وصحافيون.
</Text>
</Sentence>
<Sentence date="20070811" id="5b520e266203c42f8aa08ec6" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="بمقتل" sourcetext="" targettext="مسلحا" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
وأفيد بمقتل زهاء 15 مسلحا في اشتباكات عنيفة امس، فيما تردد ان احد مسؤولي المسلحين شاهين شاهين جدد طلبه الاستسلام شرط عدم تنفيذ حكم الاعدام به.
</Text>
</Sentence>
<Sentence date="20080203" id="5b520e266203c42f8aa08ec7" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وصدر عن قيادة الجيش بيان اشارت فيه الى «تعرض بعض مراكز الجيش في الايام الاخيرة، وفي أماكن مختلفة من العاصمة وضواحيها، لاعتداءات متفرقة كان آخرها إطلاق النار على احدى نقاط المراقبة في محلة غاليري سمعان، مما أدى الى إصابة جنديين بجروح».
</Text>
</Sentence>
<Sentence date="20070411" id="5b520e266203c42f8aa08ec8" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتل" sourcetext="" targettext="الانتحاري" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None COP" targetcode="None REB" />
<Location loc_in_sentence="false"></Location>
<Text>
وصرح معاون قائد الشرطة في الدار البيضاء ان الانتحاري الذي قتل بالرصاص خرج من المنزل يحمل سيفا وحزاما ناسفا وهدد بتفجير نفسه.
</Text>
</Sentence>
<Sentence date="20070206" id="5b520e266203c42f8aa08ec9" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتل" sourcetext="" targettext="شخصا" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None CRM" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
قتل 18 شخصا وأصيب عشرات آخرون بجروح في انفجار سيارتين مفخختين، يقود إحداهما انتحاري، في بغداد امس.
</Text>
</Sentence>
<Sentence date="20080425" id="5b520e266203c42f8aa08eca" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="التركي الجيش" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="TUR MIL" targetcode="KUR REB" />
<Location loc_in_sentence="false"></Location>
<Text>
الجيش التركي يضرب مسلحين في شمال العراق * أنقرة ـ رويترز: قال الجيش التركي في بيان نشر على موقعه على الانترنت، أمس ان طائراته قصفت مجموعة من المتمردين الاكراد في شمال العراق أمس، بينما كانوا يحاولون التسلل الى داخل الاراضي التركية.
</Text>
</Sentence>
<Sentence date="20080119" id="5b520e266203c42f8aa08ecb" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="شخصا" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
والثلاثاء اصيب 37 شخصا بجروح حين انفجرت قنبلة في سوق في ولاية يالا المجاورة.
</Text>
</Sentence>
<Sentence date="20070627" id="5b520e266203c42f8aa08ecc" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="للتعذيب" sourcetext="" targettext="نصر" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="EGY None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
ويقول نصر انه تعرض خلال الاستجواب في مصر للتعذيب بالصدمات الكهربائية والضرب والانتهاكات الجنسية.
</Text>
</Sentence>
<Sentence date="20070418" id="5b520e266203c42f8aa08ecd" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اغتالت" sourcetext="وحدة اسرائيلية" targettext="كتائب في ناشطاً الاقصى" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR MIL" targetcode="PSE REB" />
<Location loc_in_sentence="false"></Location>
<Text>
في تطور اخر قالت مصادر فلسطينية إن وحدة اسرائيلية خاصة اغتالت قبل ظهر امس الثلاثاء ناشطاً في كتائب الاقصى من بلدة قباطية شرق مدينة جنين، اقصى شمال الضفة.
</Text>
</Sentence>
<Sentence date="20080121" id="5b520e266203c42f8aa08ece" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وقتل" sourcetext="" targettext="شخص" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وقتل شخص بعد تعرضه للضرب.
</Text>
</Sentence>
<Sentence date="20081223" id="5b520e266203c42f8aa08ecf" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="يطلقون النار" sourcetext="القبائل مسلحين من" targettext="الطائرات الاميركية" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="USA None" />
<Location loc_in_sentence="false"></Location>
<Text>
كما قال شاهد آخر لوكالة رويترز انه شاهد مسلحين من القبائل يطلقون النار على الطائرات الاميركية بعد الهجوم.
</Text>
</Sentence>
<Sentence date="20081007" id="5b520e266203c42f8aa08ed0" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلت" sourcetext="قوات الباكستانية الامن" targettext="متشددين سلاميين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="PAK MIL" targetcode="None REB" />
<Location loc_in_sentence="false"></Location>
<Text>
الى ذلك قتلت قوات الامن الباكستانية ستة متشددين سلاميين في غارة شنتها ليلا شمال غربي البلاد، في الوقت الذي أطلق فيه متمردون آخرون صواريخ سقطت بالقرب من منزل رئيس حكومة المنطقة.
</Text>
</Sentence>
<Sentence date="20070810" id="5b520e266203c42f8aa08ed1" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلت" sourcetext="قوات الإرهاب مكافحة" targettext="المتهمين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None MIL" targetcode="None UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
وكانت فرقة مظلية من قوات مكافحة الإرهاب قد قتلت أول من أمس أربعة من المتهمين بالهجوم الانتحاري الذي نفذته خلية من «القاعدة» على قافلة سياحية في معبد بلقيس القريب من مدينة مأرب .
</Text>
</Sentence>
<Sentence date="20061218" id="5b520e266203c42f8aa08ed2" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وكانت المواجهات قد وقعت عقب هجوم مسلح نفذه مجهولون فجر امس ضد مركز للتدريب تابع لقوات حرس الرئاسة في غزة وقتل فيه احد العناصر.
</Text>
</Sentence>
<Sentence date="20080630" id="5b520e266203c42f8aa08ed3" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اغتالوا" sourcetext="مسلحين مجهولين" targettext="، جبار العميد مساعد" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="IRQ COP" />
<Location loc_in_sentence="false"></Location>
<Text>
وأوضحت المصادر أن «مسلحين مجهولين اغتالوا العميد جبار مساعد، مدير استخبارات الشرطة الوطنية في البصرة».
</Text>
</Sentence>
<Sentence date="20071002" id="5b520e266203c42f8aa08ed4" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلوا" sourcetext="" targettext="اليزيدية الاقلية" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None BUS" targetcode="None OPP" />
<Location loc_in_sentence="false"></Location>
<Text>
وكان ربع من سقطوا قتلى في اغسطس هم 411 شخصا قتلوا في تفجير شاحنات ملغومة استهدفت الاقلية اليزيدية في شمال العراق يوم 14 اغسطس.
</Text>
</Sentence>
<Sentence date="20061106" id="5b520e266203c42f8aa08ed5" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتل" sourcetext="الجيش" targettext="المسلحين الفلسطينيين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None MIL" targetcode="PSE REB" />
<Location loc_in_sentence="false"></Location>
<Text>
وقالوا ان الجيش نجح في قتل العشرات من المسلحين الفلسطينيين ذوي العلاقة في صنع وإطلاق صواريخ القسام، وصادروا كميات كبيرة من الأسلحة والمواد التفجيرية.
</Text>
</Sentence>
<Sentence date="20070419" id="5b520e266203c42f8aa08ed6" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None COP" />
<Location loc_in_sentence="false"></Location>
<Text>
وفي هجوم اخر، اكد مصدر عسكري «مقتل اربعة من عناصر الشرطة وإصابة ستة اشخاص بجروح في هجوم انتحاري بسيارة مفخخة استهدف دورية للشرطة في منطقة عوريج (غرب)».
</Text>
</Sentence>
<Sentence date="20080627" id="5b520e266203c42f8aa08ed7" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="مقتل" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وفي هجوم اخر، اعلنت مصادر امنية عراقية مقتل 15 شخصا على الاقل واصابة اكثر من عشرين اخرين بجروح في هجوم انتحاري بحزام ناسف داخل مبنى مديرية ناحية الكرمة (50 كلم غرب بغداد) التابعة لمحافظة الانبار.
</Text>
</Sentence>
<Sentence date="20080205" id="5b520e266203c42f8aa08ed8" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وقالت كتائب الاقصى في بيان «إن العملية مركبة من عمليتين، الأولى تمت عندما فجر استشهادي نفسه والثانية كانت اشتباكا مسلحا خاضته مجموعة من المقاومين من كتائب الأقصى وأبو علي مصطفى وسرايا المقاومة الموحدة، دون ان يقدم أي تفاصيل».
</Text>
</Sentence>
<Sentence date="20080401" id="5b520e266203c42f8aa08ed9" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="لهجوم" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="USA GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
من ناحية ثانية، قالت الشرطة العراقية ان المنطقة الخضراء المحصنة في بغداد التي تحوي مقار الحكومة والسفارة الاميركية، تعرضت لهجوم بقذائف المورتر.
</Text>
</Sentence>
<Sentence date="20070322" id="5b520e266203c42f8aa08eda" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلوا" sourcetext="الاميركي الجيش" targettext="مسلحين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="USA MIL" targetcode="None UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال الجيش الاميركي ان جنوده قتلوا خمسة مسلحين مشتبه فيهم أمس خلال غارة على مصنع للقنابل شمال بغداد دمر في وقت لاحق في ضربة جوية.
</Text>
</Sentence>
<Sentence date="20061125" id="5b520e266203c42f8aa08edb" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="بالضرب واعتدت" sourcetext="العراقية الشرطة" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="IRQ COP" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
في سياق آخر قال عدد من سكان منطقة حسن كوي في تلعفر، إن قوة من الشرطة العراقية قامت بمداهمة جامع النور بعد صلاة العشاء من ليلة الخميس واعتدت على المصلين بالضرب والإهانة من دون ان توجد اسباب لهذا العمل، ويشكو السنة في تلعفر من المعاملة السيئة التي يتلقونها على يد قوات الأمن العراقية وتمييزهم عن الشعية القاطنين فيها.
</Text>
</Sentence>
<Sentence date="20061122" id="5b520e266203c42f8aa08edc" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="الجميل" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وقد نفذت عملية الاغتيال عند الثالثة والنصف من بعد ظهر امس قرب كنيسة مار انطونيوس في منطقة الجديدة حيث افادت المعلومات الاولية ان سيارة رانج روفر اعترضت موكب الجميل وترجل منها 3 مسلحين اطلقوا النار مباشرة باتجاه رأس الجميل الذي اصيب على الفور كما اصيب مرافقه سمير الشرتوني ففارقا الحياة لاحقاً، فيما فر القتلة بسيارتهم الى جهة مجهولة.
</Text>
</Sentence>
<Sentence date="20070727" id="5b520e266203c42f8aa08edd" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتل" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
قتل 20 شخصا واصيب 60 حين انفجرت سيارة مفخخة كانت متوقفة قرب تقاطع في حي الكرادة بوسط بغداد أمس.
</Text>
</Sentence>
<Sentence date="20080803" id="5b520e266203c42f8aa08ede" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجرا" sourcetext="الانتحاريين" targettext="الجيش" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
واضاف ان «الانتحاريين فجرا نفسيهما قرب القوة المداهمة لاحد المنازل، ما اسفر عن اصابة ثلاثة من عناصر الجيش بجروح».
</Text>
</Sentence>
<Sentence date="20081012" id="5b520e266203c42f8aa08edf" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="مستوطني" targettext="كفر من المواطنين قليل قرية" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR CRM" targetcode="PSE CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال غسان دغلس مسؤول الشؤون القروية في محافظة نابلس «ان العشرات من مستوطني براخة هاجموا المواطنين من قرية كفر قليل جنوب نابلس، واعتدوا عليهم بالضرب ورشقهم بالحجارة، مما أدى الى إصابة عدد منهم».
</Text>
</Sentence>
<Sentence date="20071015" id="5b520e266203c42f8aa08ee0" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وقد نجحوا في يوليو (تموز) 2005 بتنفيذ اول تفجيرات انتحارية في اوروبا الغربية وقتل 52 شخصا.
</Text>
</Sentence>
<Sentence date="20071005" id="5b520e266203c42f8aa08ee1" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="أصيب" sourcetext="" targettext="التنفيذية التابعة لوزارة الفلسطينية القوة الحكومة في عناصر الداخلية" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="PSE GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
في حادثة هي الثانية من نوعها في أقل من يومين، أصيب فجر أمس ثلاثة من عناصر القوة التنفيذية التابعة لوزارة الداخلية في الحكومة الفلسطينية المقالة برئاسة إسماعيل هنية، في انفجار عبوة جانبية بالقرب من دوريتهم في حي «عسقولة» وسط مدينة غزة.
</Text>
</Sentence>
<Sentence date="20081003" id="5b520e266203c42f8aa08ee2" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجر" sourcetext="" targettext="رئيس حزب" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None CRM" targetcode="PAK GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
نجا رئيس حزب حليف للرئيس الباكستاني علي آصف زرداري من الموت، بعد ان فجر انتحاري نفسه خارج منزله من دون أن يقتله.
</Text>
</Sentence>
<Sentence date="20080923" id="5b520e266203c42f8aa08ee3" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="خطفوا" sourcetext="" targettext="القنصل الافغاني" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="AFG GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
أعلنت القنصلية الافغانية ان مجهولين خطفوا امس القنصل الافغاني العام في بيشاور شمال غرب باكستان وقتلوا سائقه في كمين.
</Text>
</Sentence>
<Sentence date="20070910" id="5b520e266203c42f8aa08ee4" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="أطلقت صواريخ" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="PAK CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
أطلقت بعد حلول الليل طائرة بلا طيار من نوع بريداتور وتوجهها «سي.آي.ايه»، صواريخ على بيتين في قرية دمادولا التي تقع شمال شرقي باكستان، على بعد أميال قليلة من الحدود مع أفغانستان.
</Text>
</Sentence>
<Sentence date="20071004" id="5b520e266203c42f8aa08ee5" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="بولندا سفير" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="POL GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
في تطور يشكل نكسة لجهود العراق لإقناع دول العالم بفتح سفارات لديه، أصيب سفير بولندا أمس عندما تعرضت قافلته الدبلوماسية لهجوم بعدة قنابل في وسط بغداد في ما وصفه مسؤولون بولنديون بأنه محاولة اغتيال.
</Text>
</Sentence>
<Sentence date="20080822" id="5b520e266203c42f8aa08ee6" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجرا" sourcetext="انتحاريان" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="PAK MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وكان انتحاريان قد فجرا نفسيهما امام مصنع عسكري للسلاح شمال باكستان امس، مما ادى الى مقتل 59 شخصا على الاقل، في هجوم يزيد من ضعف الائتلاف الحاكم الذي تشله خلافات داخلية.
</Text>
</Sentence>
<Sentence date="20071121" id="5b520e266203c42f8aa08ee7" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="أطلقت صواريخ" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="PSE None" targetcode="ISR None" />
<Location loc_in_sentence="false"></Location>
<Text>
يذكر ان امس شهد سلسلة عمليات فلسطينية مكثفة، حيث أطلقت 5 صواريخ «قسام»، سقط أحدها في منطقة مفتوحة في مدينة عسقلان، و18 قذيفة مدفعية.
</Text>
</Sentence>
<Sentence date="20070324" id="5b520e266203c42f8aa08ee8" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اغتيال بتعرض" sourcetext="" targettext="السيستاني علي" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="IRQ REL" />
<Location loc_in_sentence="false"></Location>
<Text>
*5 فبراير 2004: افادت تقارير بتعرض المرجع الشيعي آية الله علي السيستاني لمحاولة اغتيال في النجف.
</Text>
</Sentence>
<Sentence date="20070330" id="5b520e266203c42f8aa08ee9" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR MIL" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وذكرت المصادر أن قوة إسرائيلية مكونة من عدة آليات عسكرية اقتحمت البلدة فجراً، وحاصرت منزل ربيع عصاعصه الناشط في كتائب الأقصى ـ الجناح العسكري لحركة فتح، إلا أنه فر من منزله، فشن الجنود الإسرائيليون حملة تفتيش واسعة في البلدة بحثاً عنه، دارت خلالها مواجهات بالحجارة بين عشرات الشباب والجنود الإسرائيليين الذين أطلقوا النار بكثافة على راشقي الحجارة، فقتلوا عصاعصه بعد إصابته برصاصة في رأسه ووقوع الإصابتين.
</Text>
</Sentence>
<Sentence date="20070111" id="5b520e266203c42f8aa08eea" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قذائف" sourcetext="" targettext="مدنيين" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
من جانب اخر، ذكر مصدر في الشرطة العراقية أن عدة قذائف هاون سقطت على مبان سكنية فجر امس في ضاحية «مدينة الصدر» شرق بغداد ما ادى الى مقتل مدنيين اثنين وتدمير عدة منازل.
</Text>
</Sentence>
<Sentence date="20080930" id="5b520e266203c42f8aa08eeb" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وأدت العملية الى مقتل 17 شخصا وجرح أكثر من 14 آخرين، بينهم أطفال ونساء، فيما أشارت مصادر مطلعة الى أن عدد الجرحى هو ضعف العدد المذكور، إذ أن كثيرا من السكان في محيط موقع التفجير أصيبوا في منازلهم جراء تحطم زجاج النوافذ.
</Text>
</Sentence>
<Sentence date="20080919" id="5b520e266203c42f8aa08eec" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال العميد سرحد قادر مدير شرطة الاقضية والنواحي، «انفجرت عبوة ناسفة اليوم (الخميس) في قرية (كرحه بازان) بالطريق العام الواصل بين الرياض والحويجة 50 كيلومترا غرب كركوك، مما أدى الى إصابة اثنين من المدنيين بجروح»، حسبما افادت به وكالة الأنباء الألمانية «د ب أ».
</Text>
</Sentence>
<Sentence date="20071228" id="5b520e266203c42f8aa08eed" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلت" sourcetext="القوات الاميركية" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="USA MIL" targetcode="None UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
قتلت القوات الاميركية 11 مسلحا، قالت انهم ينتمون الى جماعة منشقة عن «جيش المهدي»، التابع للزعيم الشيعي مقتدى الصدر، في عملية فجر امس بمدينة الكوت، مركز محافظة واسط التي تقع جنوب شرق بغداد.
</Text>
</Sentence>
<Sentence date="20070107" id="5b520e266203c42f8aa08eee" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="شرطة قائد النجدة" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="IRQ COP" />
<Location loc_in_sentence="false"></Location>
<Text>
نجا قائد شرطة النجدة في بغداد، أمس، من محاولة اغتيال اثر تعرض موكبه لانفجار سيارة مفخخة أدى الى مقتل أحد المارة.
</Text>
</Sentence>
<Sentence date="20081028" id="5b520e266203c42f8aa08eef" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اختطفوا" sourcetext="أميركيين جنود" targettext="مواطنا سوريا" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="USA MIL" targetcode="SYR None" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال مواطنون سوريون في منطقة البوكمال إن ثمانية جنود أميركيين نفذوا الغارة وانهم اختطفوا «مواطنا سوريا» بعد أن جرحوا وقتلوا عددا من الموجودين بالمكان.
</Text>
</Sentence>
<Sentence date="20080205" id="5b520e266203c42f8aa08ef0" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="EGY COP" targetcode="PSE CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وفي فجر اليوم التالي تم تفجير سور الحدود الحديدي بين رفح الفلسطينية ورفح المصرية، ليس بواسطة التعاسة والجوع، ولكن بواسطة الديناميت، هكذا اندفع مئات الألوف من سكان غزة المنكوبة إلى رفح المصرية والعريش وبقية مدن شمال سيناء، بعد أن صدرت الأوامر للأمن المصري بعدم التعرض لهم تفاديا لحدوث مذبحة لا أحد يعرف المدى الذي يمكن أن تصل إليه، هكذا اكتفى الأمن المصري بإقامة أطواق أمنية جنوبا يمنعهم بها من التوغل داخل البلاد، وهو ما يسميه قاموس الحرب، الانسحاب لخطوط الدفاع الخلفية.
</Text>
</Sentence>
<Sentence date="20070808" id="5b520e266203c42f8aa08ef1" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وقتل" sourcetext="صوماليون مسلحون" targettext="إثيوبيين جنود" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="SOM UAF" targetcode="ETH MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقتل اول من امس 4 جنود إثيوبيين في هجوم شنه مسلحون صوماليون مجهولون، على ثكنة للقوات الإثيوبية في منطقة «اكس كونترول» بشمال شرقي مقديشو.
</Text>
</Sentence>
<Sentence date="20080507" id="5b520e266203c42f8aa08ef2" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None CVL" targetcode="IRQ None" />
<Location loc_in_sentence="false"></Location>
<Text>
ونقلت وكالة الصحافة الفرنسية عن الخبيرة قولها ان 12 امرأة نفذت عمليات انتحارية في العراق في الاشهر الثلاثة الاولى من العام الجاري مقابل 11 امرأة بين 2003 و2007 .
</Text>
</Sentence>
<Sentence date="20080421" id="5b520e266203c42f8aa08ef3" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قنبلة انفجرت" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None PTY" />
<Location loc_in_sentence="false"></Location>
<Text>
وأفادت وزارة الداخلية في الباسك بأن الحادث الذي وقع عندما انفجرت قنبلة أمام مكاتب الحزب في بلدة إلجويبار الصغيرة بالقرب من سان سباستيان، لم يسفر عن وقوع أي إصابات.
</Text>
</Sentence>
<Sentence date="20071231" id="5b520e266203c42f8aa08ef4" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="مركزا أفراد للشرطة لتجنيد" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None CRM" targetcode="PAK COP" />
<Location loc_in_sentence="false"></Location>
<Text>
وفي واقعة منفصلة استهدف مفجر انتحاري مركزا لتجنيد أفراد للشرطة في منطقة ديرا اسماعيل خان بالاقليم ذاته فقتل 29 شخصا.
</Text>
</Sentence>
<Sentence date="20070425" id="5b520e266203c42f8aa08ef5" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="أطلقت الصواريخ" sourcetext="كتائب الدين عز القسام" targettext="المحيطة بقطاع البلدات غزة" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="PSE REB" targetcode="PSE None" />
<Location loc_in_sentence="false"></Location>
<Text>
وكانت «كتائب عز الدين القسام»، الجناح العسكري لحركة حماس قد أطلقت عشرات الصواريخ فجر امس على البلدات المحيطة بقطاع غزة.
</Text>
</Sentence>
<Sentence date="20080927" id="5b520e266203c42f8aa08ef6" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="للهجوم" sourcetext="صوماليون قراصنة" targettext="سفينة" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="SOM UAF" targetcode="None MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
واعلن المكتب البحري الدولي ان 55 سفينة على الاقل تعرضت للهجوم في خليج عدن والمحيط الهندي منذ يناير 2008 في عمليات نفذها قراصنة صوماليون.
</Text>
</Sentence>
<Sentence date="20070420" id="5b520e266203c42f8aa08ef7" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتل" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="IRQ EDU" />
<Location loc_in_sentence="false"></Location>
<Text>
فيما قتل 12 شخصا واصيب 28 بجروح في هجوم انتحاري بسيارة مفخخة استهدفت مقصفا يقصده طلاب جامعة بغداد في منطقة الجادرية (وسط) ظهر امس، أمر رئيس الوزراء العراقي، القائد العام للقوات المسلحة، باعتقال ضابط كبير مسؤول عن الأمن في منطقة الصدرية في بغداد، التي شهدت اول من امس اسوأ تفجير منذ الغزو اوقع نحو مائتي قتيل.
</Text>
</Sentence>
<Sentence date="20070625" id="5b520e266203c42f8aa08ef8" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="صواريخ باطلاق" sourcetext="" targettext="كريات مستوطنة شمونة" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="LBN None" targetcode="ISR None" />
<Location loc_in_sentence="false"></Location>
<Text>
وكان الاحد الماضي شهد حادثا امنيا تمثل باطلاق صواريخ كاتيوشا من جنوب لبنان على مستوطنة كريات شمونة.
</Text>
</Sentence>
<Sentence date="20080208" id="5b520e266203c42f8aa08ef9" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="الاسرائيلية القوات" targettext="المدرسة الزراعية" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR MIL" targetcode="None EDU" />
<Location loc_in_sentence="false"></Location>
<Text>
وفي بلدة «بيت حانون شمال غزة، اطلقت القوات الاسرائيلية المتمركزة شرق القطاع صاروخ ارض ـ ارض على المدرسة الزراعية شرق البلدة فقتلت المدرس هاني شعبان نعيم 40 عاما، وإصابة ثلاثة طلاب بجراح.
</Text>
</Sentence>
<Sentence date="20070415" id="5b520e266203c42f8aa08efa" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجر" sourcetext="انتحاريين" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="USA GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
10 أبريل (نيسان) 2007 فجر 3 انتحاريين أنفسهم بينما قتل الرابع برصاص رجال الأمن في الدار البيضاء، فيما قتل رجل أمن وأصيب آخر بجروح خطيرة.
</Text>
</Sentence>
<Sentence date="20080602" id="5b520e266203c42f8aa08efb" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="ESP None" />
<Location loc_in_sentence="false"></Location>
<Text>
ثلاثة جرحى في تفجير لـ«إيتا» في منطقة الباسك * مدريد ـ «الشرق الاوسط»: أعلنت سلطات اقليم الباسك ان قنبلة انفجرت امس شمال اسبانيا، مما اسفر عن اصابة ثلاثة اشخاص بجروح طفيفة بعد اتصال اجرته منظمة «ايتا» المسلحة الانفصالية للتحذير عن هذا الهجوم.
</Text>
</Sentence>
<Sentence date="20061203" id="5b520e266203c42f8aa08efc" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="التفجيرات" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وذكر شاهد عيان ان اثنين من التفجيرات وقعا في سوق خضراوات مكتظ بنساء يتسوقن في منطقة الصدرية، قرب الوسط التجاري لبغداد.
</Text>
</Sentence>
<Sentence date="20071026" id="5b520e266203c42f8aa08efd" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="الفدائيين" targettext="الرئيسي المقر للاستخبارات" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="JOR SPY" />
<Location loc_in_sentence="false"></Location>
<Text>
ففي 9 يونيو أطلق بعض الفدائيين النار على المقر الرئيسي للاستخبارات في العاصمة عمان وأصر الملك حسين على التوجه إلى موقع مسرح الهجوم، وتعرضت قافلة الملك لإطلاق نار مكثف أسفر عن مقتل أحد حراسه.
</Text>
</Sentence>
<Sentence date="20070708" id="5b520e266203c42f8aa08efe" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وفجر" sourcetext="المهاجمون" targettext="قطارات الحافلات" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وفجر المهاجمون قنابلهم على متن 3 قطارات للمترو وإحدى الحافلات.
</Text>
</Sentence>
<Sentence date="20080212" id="5b520e266203c42f8aa08eff" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اطلقوا النار" sourcetext="جنودا" targettext="رئيس الشرقية خوسيه راموس تيمور" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None REB" targetcode="TLS GOV" />
<Location loc_in_sentence="false"></Location>
<Text>
وصرح مسؤولون بان جنودا متمردين اطلقوا النار على رئيس تيمور الشرقية خوسيه راموس هورتا في منزله في ديلي امس في محاولة اغتيال يقول محللون انها قد تجدد أعمال العنف والفوضى السياسية في الدولة الصغيرة.
</Text>
</Sentence>
<Sentence date="20081231" id="5b520e266203c42f8aa08f00" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
ـ 20: تفجير انتحاري في فندق ماريوت بإسلام أباد، بباكستان، يقتل 60 شخصا على الأقل.
</Text>
</Sentence>
<Sentence date="20070627" id="5b520e266203c42f8aa08f01" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اغتالوا" sourcetext="" targettext="حجة الاسلام هشام سيموري" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None REL" />
<Location loc_in_sentence="false"></Location>
<Text>
الى ذلك، افادت صحيفة «كيهان» الايرانية المحافظة امس ان مجهولين اغتالوا رجل الدين الشيعي حجة الاسلام هشام سيموري، وهو عربي شيعي.
</Text>
</Sentence>
<Sentence date="20071110" id="5b520e266203c42f8aa08f02" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="اعضاء ديالى مجلس انقاذ" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="IRQ UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
ونقلت وكالة رويترز عن مصادر امنية عراقية قولها، ان المهاجم فجر نفسه خلال اجتماع لزعماء العشائر ليقتل خمسة من اعضاء «مجلس انقاذ ديالى»، الذي شكل لمكافحة عناصر «القاعدة» في المحافظة.
</Text>
</Sentence>
<Sentence date="20070128" id="5b520e266203c42f8aa08f03" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="USA MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وأوضح ان «عددا منهم اقتحموا غرفة التنسيق، حيث يوجد الضابط الاميركي، وبدا الهجوم باستخدام القنابل الصوتية داخل المبنى وإطلاق نار على الجنود الاميركيين، في حين قام الذين احاطوا بسيارة الهامر بقتل الجندي الاميركي بعد سماع اطلاق النار».
</Text>
</Sentence>
<Sentence date="20070818" id="5b520e266203c42f8aa08f04" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="AFG REB" targetcode="IGO MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال بيان للتحالف الدولي بقيادة الناتو، ان عبوة ناسفة انفجرت بقواته، تلا ذلك هجوم بالاسلحة النارية وقذائف الهاون، مما ادى الى اندلاع معارك بين قوات الناتو ومسلحي طالبان، قتل خلالها المدنيون الخمسة واصيب ثلاثة اخرون.
</Text>
</Sentence>
<Sentence date="20070325" id="5b520e266203c42f8aa08f05" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="قوات مناوي" targettext="السكان" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="SDN MIL" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وجاء في الشكوى المقدمة للشرطة ان قوات مناوي تتعدى على السكان بالضرب وإغلاق عدد من الشوارع بدعوى تأمين المساحة التي يقطنون فيها.
</Text>
</Sentence>
<Sentence date="20070105" id="5b520e266203c42f8aa08f06" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلت" sourcetext="مديريات العراق" targettext="ارهابياً" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="IRQ GOV" targetcode="None UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال اللواء عبد الكريم خلف، مدير مركز القيادة الوطنية في وزارة الداخلية، في مؤتمر صحافي أمس: «مديريات عموم العراق خلال الاسبوع الماضي قتلت 47 ارهابياً، وضبطت كميات كبيرة من الاسلحة والمتفجرات».
</Text>
</Sentence>
<Sentence date="20070704" id="5b520e266203c42f8aa08f07" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وحسب شهود عيان في مدينة غزة فان العناصر المسلحة من الطرفين احتلوا اسطح الابراج السكنية في المدينة استعدادا للحظة الحسم، بعد عمليات الاختطاف المتبادلة بين الطرفين التي شملت عددا من عناصر حماس في ايدي جيش الاسلام، وعناصر هذا الفصيل في ايدي حماس بمن فيهم الناطق باسمه احمد المظلوم الملقب بخطاب المقدسي وهو من حي التفاح في مدينة غزة.
</Text>
</Sentence>
<Sentence date="20070526" id="5b520e266203c42f8aa08f08" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="انفجرت" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وأضاف أن عبوة ناسفة تمت زراعتها وسط النفايات في شارع القدس قرب (محطة الوقود) في مدينة الصدر انفجرت ودمرت ساحبة لرفع النفايات وأصابت سائقها «إضافة إلى استشهاد احد المواطنين المارين بالقرب من الانفجار».
</Text>
</Sentence>
<Sentence date="20070920" id="5b520e266203c42f8aa08f09" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اغتالوا" sourcetext="" targettext="مسلم البطاط يعقوب" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="IRQ CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
يذكر ان مسلحين مجهولين اغتالوا الأسبوع الماضي مسلم يعقوب البطاط إمام جامع العروة الوثقى، أحد ممثلي السيستاني، عندما أطلقوا عليه النار من أسلحتهم الخفيفة في منطقة الفرسي أثناء خروجه من الجامع.
</Text>
</Sentence>
<Sentence date="20070618" id="5b520e266203c42f8aa08f0a" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجر" sourcetext="حركة طالبان" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="IMG REB" targetcode="None COP" />
<Location loc_in_sentence="false"></Location>
<Text>
قالت الشرطة الأفغانية إن مهاجما انتحاريا من حركة طالبان، فجر حافلة تابعة للشرطة في العاصمة كابول أمس، مما أسفر عن سقوط نحو 35 قتيلا في أحد أكثر الانفجارات دموية في كابل في الشهور الأخيرة، وسط أعمال عنف متزايدة في شتى أنحاء البلاد.
</Text>
</Sentence>
<Sentence date="20070211" id="5b520e266203c42f8aa08f0d" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="أطلقت قذيفتان" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="None CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال أحد مشايخ القبائل المشارك في محادثات المصالحة، انه في الوقت ذاته أطلقت قذيفتان (آر.بي.جي) في شمال المدينة، مما أسفر عن تفجير مطعم فندق ومقتل فتاة صغيرة واصابة نادل.
</Text>
</Sentence>
<Sentence date="20080913" id="5b520e266203c42f8aa08f0e" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="جوية غارة" sourcetext="اميركية" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="USA MIL" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
كما تزامن مع غارة جوية شنتها طائرة اميركية بدون طيار على الارجح فجر امس واسفرت عن سقوط 12 قتيلا.
</Text>
</Sentence>
<Sentence date="20070909" id="5b520e266203c42f8aa08f0f" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قصفت" sourcetext="كتائب الدين عز القسام" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="PSE REB" targetcode="PSE None" />
<Location loc_in_sentence="false"></Location>
<Text>
ورداً على عملية الاختطاف، قصفت كتائب عز الدين القسام معبر كرم ابو سالم بقذاف الهاون.
</Text>
</Sentence>
<Sentence date="20080220" id="5b520e266203c42f8aa08f10" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="التفجير" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="IRQ REB" />
<Location loc_in_sentence="false"></Location>
<Text>
وعملية التفجير التي وقعت في منطقة سنية، استهدفت واحدة من اهم العتبات الشيعية، القبة الذهبية لمرقد الامامين علي الهادي والحسن العسكري في سامراء.
</Text>
</Sentence>
<Sentence date="20080120" id="5b520e266203c42f8aa08f11" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلوا" sourcetext="" targettext="للشيعة" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None MIL" targetcode="None REL" />
<Location loc_in_sentence="false"></Location>
<Text>
قال مسؤول محلي رفيع المستوى، إن سبعة اشخاص على الاقل قتلوا وأصيب حوالي 20، نتيجة سقوط صاروخ كاتيوشا على تجمع للشيعة التركمان، خلال احياء ذكرى عاشوراء في تلعفر، شمال العراق أمس.
</Text>
</Sentence>
<Sentence date="20070204" id="5b520e266203c42f8aa08f12" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="IRQ CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
كما شهدت مدينة كركوك أسوأ موجة عنف أمس أثر سلسلة تفجيرات لسيارات ملغومة، بلغ عددها 7 سيارات، اسفرت عن مقتل 4 أشخاص واصابة 37 اخرين بجروح، ما أدى بالسلطات الى اعلان فرض حظر التجول، في المدينة المتعددة الاعراق والغنية بالنفط، لمدة 24 ساعة تنتهي صباح اليوم.
</Text>
</Sentence>
<Sentence date="20080117" id="5b520e266203c42f8aa08f13" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجرت" sourcetext="انتحارية" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None REB" targetcode="IRQ CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال اللواء الركن عبد الكريم الربيعي قائد عمليات ديالى، ان «انتحارية ترتدي حزاما ناسفا فجرت نفسها في بلدة خان بني سعد (50 كلم شمال شرق بغداد) ما اسفر عن مقتل ثمانية اشخاص على الاقل واصابة سبعة اخرين».
</Text>
</Sentence>
<Sentence date="20070911" id="5b520e266203c42f8aa08f14" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="الانفجارات" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="IRQ None" />
<Location loc_in_sentence="false"></Location>
<Text>
وادت سلسلة من الانفجارات بينها سيارة مفخخة ضربت في 26 من يوليو(تموز) منطقة الكرادة الشرقية، الى مقتل 31 شخصا واصابة 115 اخرين بينهم نساء واطفال بجروح، وفقا لمصادر امنية.
</Text>
</Sentence>
<Sentence date="20080918" id="5b520e266203c42f8aa08f15" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="اسلامي متطرف" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="USA HLH" />
<Location loc_in_sentence="false"></Location>
<Text>
ـ 30 ديسمبر (كانون الاول) 2002: مقتل ثلاثة اطباء اميركيين واصابة رابع بجروح في هجوم مسلح نفذه متطرف اسلامي ضد مستشفى للكنيسة المعمدانية في جنوب صنعاء.
</Text>
</Sentence>
<Sentence date="20070301" id="5b520e266203c42f8aa08f16" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجروا" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
من جانب آخر، أفاد قاسم دخيل مسؤول الادارة المحلية لمدينة سنجار (80 كلم غرب الموصل) بأن مسلحين فجروا في وقت مبكر من صباح أمس الطريق الرئيسي الذي يربط المدينة بالمناطق المجاورة لها.
</Text>
</Sentence>
<Sentence date="20070527" id="5b520e266203c42f8aa08f17" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="اطلقت صواريخ" sourcetext="الاسرائيلية" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR None" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
ونقل عن شهود عيان القول إن الطائرات الاسرائيلية اطلقت صباح امس خمسة صواريخ على الموقع، الذي دمر بالكامل.
</Text>
</Sentence>
<Sentence date="20080220" id="5b520e266203c42f8aa08f18" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="اسرائيلي" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR MIL" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وخلال تنقلهم في سيارة في المدينة اصاب صاروخ اسرائيلي السيارة وقتلهم جميعاً.
</Text>
</Sentence>
<Sentence date="20080718" id="5b520e266203c42f8aa08f19" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="أطلق أعيرة نارية" sourcetext="الوحيدي" targettext="غربيون سياح" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="INT CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وكان الوحيدي أطلق عدة أعيرة نارية على مجموعة اعتقد انهم سياح غربيون في منطقة المدرج الروماني وسط عمان حيث كانت جوقة الكسليك اللبنانية قد احيت أمسية موسيقية لبنانية ـ أردنية نظمها المعهد الوطني للموسيقى فأصاب ستة بجروح ثم حاول الانتحار اثناء القاء القبض عليه.
</Text>
</Sentence>
<Sentence date="20061208" id="5b520e266203c42f8aa08f1a" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="فجر" sourcetext="مهاجما انتحاريا" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="USA UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
وأفاد مسؤولون بأن مهاجما انتحاريا فجر نفسه خارج مكتب شركة اميركية للأمن، التي تعمل على توفير حراس لحماية الشركات الأجنبية العاملة في الإقليم.
</Text>
</Sentence>
<Sentence date="20080124" id="5b520e266203c42f8aa08f1b" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وانفجرت" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="SOM GOV" targetcode="SOM None" />
<Location loc_in_sentence="false"></Location>
<Text>
وانفجرت خمس قذائف هاون في موقع غير بعيد من مقر اقامة رئيس وزراء الصومال نور عدي الذي من المقرر ان يجتمع في وقت لاحق مع سعيد جينيت مفوض الاتحاد الافريقي للسلم والامن.
</Text>
</Sentence>
<Sentence date="20070602" id="5b520e266203c42f8aa08f1c" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتل" sourcetext="" targettext="جنديا عراقيا" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="IRQ MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال النقيب محمد جاسم من شرطة كركوك إن «جنديا عراقيا قتل وأصيب آخر بجروح في هجوم مسلح استهدف دوريتهما عند قرية العباسي (75 كلم غرب كركوك)».
</Text>
</Sentence>
<Sentence date="20081110" id="5b520e266203c42f8aa08f1d" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="وقتل" sourcetext="الاميركية" targettext="مدنيا افغانيا" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="USA MIL" targetcode="AFG CVL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقتل 150 مدنيا افغانيا على الاقل في سلسلة من الضربات الجوية الاميركية التي اخطأت اهدافها مما قوض تأييدا عاما لاستمرار وجود اكثر من 60 الفا من القوات التي يقودها حلف شمال الاطلسي وقوات التحالف بقيادة الولايات المتحدة في افغانستان.
</Text>
</Sentence>
<Sentence date="20080921" id="5b520e266203c42f8aa08f1e" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="قتلوا" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="PAK BUS" />
<Location loc_in_sentence="false"></Location>
<Text>
قال ضابط رفيع في الشرطة، ان 60 شخصا قتلوا وجرح 200 على الاقل امس في ما يشتبه بأنه هجوم انتحاري بسيارة ملغومة على فندق ماريوت في العاصمة الباكستانية اسلام أباد وقع بعد آذان المغرب بـ10 دقائق وان من المتوقع أن يرتفع العدد أكثر من ذلك.
</Text>
</Sentence>
<Sentence date="20081107" id="5b520e266203c42f8aa08f1f" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="الهجوم بالقنبلة" sourcetext="طالبان" targettext="العشائر" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="IMG REB" targetcode="None None" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال شهود عيان لـ«الشرق الاوسط» ان الهجوم بالقنبلة نفذ ضد عناصر من العشائر كانوا يحضرون لتدمير منازل لعناصر من طالبان في منطقتهم.
</Text>
</Sentence>
<Sentence date="20080117" id="5b520e266203c42f8aa08f20" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="القتل" sourcetext="اسرائيل" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="ISR None" targetcode="PSE None" />
<Location loc_in_sentence="false"></Location>
<Text>
واصلت اسرائيل اعمال القتل في قطاع غزة والضفة الغربية، وراح ضحية اعتداءاتها امس 7 فلسطينيين، ليصل عدد الضحايا في غضون 36 ساعة الى 26، اضافة الى عشرات الجرحى.
</Text>
</Sentence>
<Sentence date="20071217" id="5b520e266203c42f8aa08f21" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="خطفوا" sourcetext="" targettext="مصورا فرنسيا" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="FRA MED" />
<Location loc_in_sentence="false"></Location>
<Text>
من جهة ثانية، افادت مصادر متطابقة ان مجهولين خطفوا مصورا فرنسيا في بوساسو بشمال الصومال.
</Text>
</Sentence>
<Sentence date="20070618" id="5b520e266203c42f8aa08f22" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="صواريخ باطلاق" sourcetext="" targettext="اسرائيل" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="ISR None" />
<Location loc_in_sentence="false"></Location>
<Text>
وعلمت «الشرق الاوسط» ان سيارة مستأجرة تحمل لوحة زرقاء قدمت من جهة بلدة الطيبة نحو بلدة العديسة في منطقة مرجعيون، وقام من فيها باطلاق ثلاثة صواريخ «كاتيوشا» في اتجاه شمال اسرائيل، فسقط احدها داخل الاراضي اللبنانية قرب مركز للقوات الدولية.
</Text>
</Sentence>
<Sentence date="20070227" id="5b520e266203c42f8aa08f23" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="بتفجير" sourcetext="بلجيكية امرأة" targettext="للقوات الاميركية" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="BEL None" targetcode="USA MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وفي نوفمبر (تشرين الثاني) 2005 قامت امرأة بلجيكية اعتنقت الاسلام ومتزوجة من مغربي بتفجير نفسها مستهدفة دورية للقوات الاميركية جنوب بغداد.
</Text>
</Sentence>
<Sentence date="20071231" id="5b520e266203c42f8aa08f24" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="القاعدة تنظيم" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="IMG None" targetcode="None UAF" />
<Location loc_in_sentence="false"></Location>
<Text>
كما تعرضت ثكنة الغلاوية في الشمال لاعتداء أسفر عن مقتل ثلاثة جنود، وقد تبناه «تنظيم القاعدة في بلاد المغرب الإسلامي».
</Text>
</Sentence>
<Sentence date="20070702" id="5b520e266203c42f8aa08f25" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="انتحاريا" targettext="رجال الشرطة" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="None COP" />
<Location loc_in_sentence="false"></Location>
<Text>
الى ذلك، قالت الشرطة إن انتحاريا يقود سيارة ملغومة فجر نفسه فقتل خمسة من رجال الشرطة، امس، في محافظة الانبار ذات الاغلبية السنية.
</Text>
</Sentence>
<Sentence date="20071107" id="5b520e266203c42f8aa08f26" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None None" targetcode="USA MIL" />
<Location loc_in_sentence="false"></Location>
<Text>
وقال الاميرال جيري جوري سميث المتحدث باسم الجيش الاميركي «للأسف فقدنا امس (الاثنين) خمسة من جنودنا في انفجار عبوتين ناسفتين في هجومين منفصلين في العراق».
</Text>
</Sentence>
<Sentence date="20061122" id="5b520e266203c42f8aa08f27" evaluate="true" category="ASSAULT">
<EventText eid="0" eventtext="" sourcetext="" targettext="للحزب الأمين العام جورج حاوي السابق الشيوعي" />
<EventCoding eid="0" eventcode="" plover="ASSAULT" sourcecode="None UAF" targetcode="LBN ELI" />
<Location loc_in_sentence="false"></Location>
<Text>
* 21 مايو(أيار) 2005: اغتيال الأمين العام السابق للحزب الشيوعي جورج حاوي في اعتداء بسيارة مفخخة في بيروت.
</Text>
</Sentence>