forked from amnestywebsite/amnesty-death-penalty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
21809 lines (21773 loc) · 593 KB
/
data.json
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
[{
"year": "2007",
"total-executions": "1253+",
"total-death-sentences": "3345+",
"ABOLITIONIST": "91",
"ABOLITIONIST FOR ORDINARY CRIMES": "10",
"ABOLITIONIST IN PRACTICE": "33",
"RETENTIONIST": "63",
"countries": [{
"id": "DZA",
"name": "ALGERIA",
"since": "",
"executions": "0",
"death-penalties": "271",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "AFG",
"name": "AFGHANISTAN",
"since": "",
"executions": "15",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "ALB",
"name": "ALBANIA",
"since": 2007,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "BEN",
"name": "BENIN",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "AND",
"name": "ANDORRA",
"since": 1990,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "AGO",
"name": "ANGOLA",
"since": 1992,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "ATG",
"name": "ANTIGUA AND BARBUDA",
"since": "",
"executions": "0",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "ARG",
"name": "ARGENTINA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "ARM",
"name": "ARMENIA",
"since": 2003,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "AUS",
"name": "AUSTRALIA",
"since": 1985,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "AUT",
"name": "AUSTRIA",
"since": 1968,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "AZE",
"name": "AZERBAIJAN",
"since": 1998,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "BHS",
"name": "BAHAMAS",
"since": "",
"executions": "0",
"death-penalties": "+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "BHR",
"name": "BAHRAIN",
"since": "",
"executions": "0",
"death-penalties": "2",
"status": "RETENTIONIST"
},
{
"id": "BGD",
"name": "BANGLADESH",
"since": "",
"executions": "6",
"death-penalties": "93",
"status": "RETENTIONIST"
},
{
"id": "BRB",
"name": "BARBADOS",
"since": "",
"executions": "0",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "BLR",
"name": "BELARUS",
"since": "",
"executions": "1+",
"death-penalties": "4",
"status": "RETENTIONIST"
},
{
"id": "BEL",
"name": "BELGIUM",
"since": 1996,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "BLZ",
"name": "BELIZE",
"since": "",
"executions": "0",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "BRN",
"name": "BRUNEI DARUSSALAM",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "BTN",
"name": "BHUTAN",
"since": 2004,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "BOL",
"name": "BOLIVIA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "BIH",
"name": "BOSNIA AND HERZEGOVINA",
"since": 2001,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "BWA",
"name": "BOTSWANA",
"since": "",
"executions": "1+",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "BRA",
"name": "BRAZIL",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "BFA",
"name": "BURKINA FASO",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "BGR",
"name": "BULGARIA",
"since": 1998,
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST"
},
{
"id": "CAF",
"name": "CENTRAL AFRICAN REPUBLIC",
"since": "",
"executions": "0",
"death-penalties": "-",
"status": "ABOLITIONIST IN PRACTICE",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "BDI",
"name": "BURUNDI",
"since": "",
"executions": "0",
"death-penalties": "+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "CPV",
"name": "CAPE VERDE",
"since": 1981,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "KHM",
"name": "CAMBODIA",
"since": 1989,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "CMR",
"name": "CAMEROON",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "RETENTIONIST"
},
{
"id": "CAN",
"name": "CANADA",
"since": 1998,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "COG",
"name": "REPUBLIC OF CONGO",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "TCD",
"name": "CHAD",
"since": "",
"executions": "0",
"death-penalties": "+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "CHL",
"name": "CHILE",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "CHN",
"name": "CHINA",
"since": "",
"executions": "470+",
"death-penalties": "1860+",
"status": "RETENTIONIST"
},
{
"id": "COL",
"name": "COLOMBIA",
"since": 1910,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "COM",
"name": "COMOROS",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "RETENTIONIST"
},
{
"id": "ERI",
"name": "ERITREA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE",
"note": {
"en": "Official information on the use of the death penalty is very difficult to obtain in Eritrea. The majority of detainees do not go through a judicial procedure, and the government generally refuses to provide relevant information In this context, no formal executions or death sentences were recorded",
"es": "Resulta muy difícil obtener información oficial sobre el uso de la pena de muerte en Eritrea. La mayoría de los detenidos no son sometidos a un procedimiento judicial, y el gobierno, en general, se niega a proporcionar información relevante. En este contexto, no se tuvo noticia de condenas a muerte ni ejecuciones formales.",
"fr": "Il est très difficile d’obtenir des informations officielles sur l’application de la peine de mort en Érythrée. La majorité des détenus ne bénéficient pas d’une procédure judiciaire, et le gouvernement refuse généralement de fournir toute information les concernant. Dans ce contexte, aucune nouvelle condamnation à mort ni aucune exécution judiciaire n’a été recensée.",
"ar": "يصعب الحصول على معلومات رسمية بشأن استخدام عقوبة الإعدام في اريتريا. ولا يخضع غالبية المحتجزين للإجراءات القضائية، وترفض الحكومة عموماً تقديم أي معلومات ذات صلة في هذا الشأن، ولم تُسجل أي عمليات إعدام رسمية أو أحكام بالاعدام.",
"zh_TW": "死刑相關的官方資訊在厄立垂亞十分難以取得。大部分遭拘留者無法進入司法程序,一般來說,政府拒絕提供相關資料。因而在此脈絡下,未有正式處決或死刑的紀錄。",
"zh_Hans": "有关死刑适用的官方信息在厄立特里亚难以获取。大多数在押者没有经历过司法程序,而且政府一般拒绝提供相关信息,因此,在此背景下没有任何正式处决或死刑判决记录。",
"zH_Hant": "在厄立特里亞(台譯厄利垂亞)獲取與死刑相關的官方資訊相當困難。大部份被拘留者未獲通過司法程序,該國政府亦通常拒絕提供相關資訊。未有官方執行死刑和死刑判決的紀錄。",
"pt": "É muito difícil obter informações oficiais sobre o uso da pena de morte na Eritreia. A maioria dos detidos não passa por um procedimento judicial, e o governo geralmente recusa-se a fornecer informações relevantes. Neste contexto, não foram registadas execuções formais ou sentenças de morte"
}
},
{
"id": "COK",
"name": "COOK ISLANDS",
"since": 2007,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "CRI",
"name": "COSTA RICA",
"since": 1877,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "CIV",
"name": "COTE D'IVOIRE",
"since": 2000,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "HRV",
"name": "CROATIA",
"since": 1990,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "CUB",
"name": "CUBA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "RETENTIONIST"
},
{
"id": "CYP",
"name": "CYPRUS",
"since": 2002,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "CZE",
"name": "CZECH REPUBLIC",
"since": 1990,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "COD",
"name": "DEMOCRATIC REPUBLIC OF CONGO",
"since": "",
"executions": "0",
"death-penalties": "24+",
"status": "RETENTIONIST"
},
{
"id": "DNK",
"name": "DENMARK",
"since": 1978,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "DJI",
"name": "DJIBOUTI",
"since": 1995,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "DMA",
"name": "DOMINICA",
"since": "",
"executions": "0",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "DOM",
"name": "DOMINICAN REPUBLIC",
"since": 1966,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "ECU",
"name": "ECUADOR",
"since": 1906,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "EGY",
"name": "EGYPT",
"since": "",
"executions": "+",
"death-penalties": "40+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one execution but it was not possible to establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una ejecución, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une exécution a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "SLV",
"name": "EL SALVADOR",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "GNQ",
"name": "EQUATORIAL GUINEA",
"since": "",
"executions": "3",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm whether death sentences were imposed in this country.",
"es": "Amnistía Internacional no pudo confirmar si se impusieron condena a muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure de confirmer que des condamnations à mort avaient été prononcées dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم فرض أحكام إعدام في هذا البلد",
"zh_TW": "國際特赦組織無法確認該國是否判處死刑。",
"zh_Hans": "国际特赦组织无法确认该国是否有作出死刑判决。",
"zh_Hant": "國際特赦組織未能確定此國曾否作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "GAB",
"name": "GABON",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "EST",
"name": "ESTONIA",
"since": 1998,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "ETH",
"name": "ETHIOPIA",
"since": "",
"executions": "1",
"death-penalties": "+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "FJI",
"name": "FIJI",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "FIN",
"name": "FINLAND",
"since": 1972,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "FRA",
"name": "FRANCE",
"since": 1981,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "GMB",
"name": "GAMBIA",
"since": "",
"executions": "0",
"death-penalties": "2",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "GHA",
"name": "GHANA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "GEO",
"name": "GEORGIA",
"since": 1997,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "DEU",
"name": "GERMANY",
"since": 1987,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "GRD",
"name": "GRENADA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "GRC",
"name": "GREECE",
"since": 2004,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "GRL",
"name": "GREENLAND / DENMARK",
"since": 1978,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "KEN",
"name": "KENYA",
"since": "",
"executions": "0",
"death-penalties": "+",
"status": "ABOLITIONIST IN PRACTICE",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "GTM",
"name": "GUATEMALA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "RETENTIONIST"
},
{
"id": "GIN",
"name": "GUINEA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "RETENTIONIST"
},
{
"id": "GNB",
"name": "GUINEA-BISSAU",
"since": 1993,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "GUY",
"name": "GUYANA",
"since": "",
"executions": "0",
"death-penalties": "+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "HTI",
"name": "HAITI",
"since": 1987,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "VAT",
"name": "HOLY SEE",
"since": 1969,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "HND",
"name": "HONDURAS",
"since": 1956,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "HKG",
"name": "HONG KONG",
"since": 1993,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "HUN",
"name": "HUNGARY",
"since": 1990,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "ISL",
"name": "ICELAND",
"since": 1928,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "IND",
"name": "INDIA",
"since": "",
"executions": "0",
"death-penalties": "100+",
"status": "RETENTIONIST"
},
{
"id": "IDN",
"name": "INDONESIA",
"since": "",
"executions": "1+",
"death-penalties": "11+",
"status": "RETENTIONIST"
},
{
"id": "IRN",
"name": "IRAN",
"since": "",
"executions": "317+",
"death-penalties": "+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "IRQ",
"name": "IRAQ",
"since": "",
"executions": "33+",
"death-penalties": "199+",
"status": "RETENTIONIST"
},
{
"id": "IRL",
"name": "IRELAND",
"since": 1990,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "ISR",
"name": "ISRAEL",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "ITA",
"name": "ITALY",
"since": 1994,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "JAM",
"name": "JAMAICA",
"since": "",
"executions": "0",
"death-penalties": "+",
"status": "RETENTIONIST",
"note": {
"en": "+ means Amnesty International is confident that there was more than one death sentence but we could not establish a figure.",
"es": "El signo + significa que Amnistía Internacional tiene la certeza de que se llevó a cabo más de una condena a muerte, pero no pudo determinar la cifra.",
"fr": "Le signe « + » signifie qu’Amnesty International est certaine qu’au moins une condamnation à mort a eu lieu, mais qu’elle n’a pas pu parvenir à une estimation plus précise.",
"ar": "إشارة + تعني أن منظمة العفو الدولية متأكدة من تنفيذ أكثر من حالة اعدام واحدة ولكن لم تتمكن من تحديد عددها",
"zh_Hans": "+号表示国际特赦组织相信超过一人被处决,但无法确立确切数字。",
"zh_Hant": "=為國際特赦組織相信,該國有多於一宗處決,但我們不能獲得確實數字",
"zh_TW": "+號表示國際特赦組織確信處決數超過1,但無法確認確切數字。",
"pt": "O símbolo + significa que a Amnistia Internacional tem a certeza que existiu mais do que uma execução, mas não conseguiu determinar números mais precisos."
}
},
{
"id": "JPN",
"name": "JAPAN",
"since": "",
"executions": "9",
"death-penalties": "23",
"status": "RETENTIONIST"
},
{
"id": "JOR",
"name": "JORDAN",
"since": "",
"executions": "0",
"death-penalties": "17+",
"status": "RETENTIONIST"
},
{
"id": "KAZ",
"name": "KAZAKHSTAN",
"since": 2007,
"executions": "0",
"death-penalties": "0",
"status": "RETENTIONIST"
},
{
"id": "LAO",
"name": "LAOS",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "KIR",
"name": "KIRIBATI",
"since": "",
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "KWT",
"name": "KUWAIT",
"since": "",
"executions": "1+",
"death-penalties": "2+",
"status": "RETENTIONIST"
},
{
"id": "KGZ",
"name": "KYRGYZSTAN",
"since": 2007,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "MDG",
"name": "MADAGASCAR",
"since": "",
"executions": "0",
"death-penalties": "12",
"status": "ABOLITIONIST IN PRACTICE"
},
{
"id": "LVA",
"name": "LATVIA",
"since": "",
"executions": "0",
"death-penalties": "0",
"status": "ABOLITIONIST FOR ORDINARY CRIMES"
},
{
"id": "LBN",
"name": "LEBANON",
"since": "",
"executions": "0",
"death-penalties": "4+",
"status": "RETENTIONIST"
},
{
"id": "LSO",
"name": "LESOTHO",
"since": "",
"executions": "-",
"death-penalties": "-",
"status": "RETENTIONIST",
"note": {
"en": "Amnesty International was unable to confirm the judicial use of the death penalty in this country.",
"es": "Amnistía Internacional no pudo confirmar el uso judicial de la pena de muerte en este país.",
"fr": "Amnesty International n’a pas été en mesure d’obtenir des informations sur l’utilisation judiciaire de la peine de mort dans ce pays.",
"ar": "لم تتمكن منظمة العفو الدولية من تأكيد ما إذا كان قد تم استخدام عقوبة الإعدام في هذا البلد ",
"zh_TW": "國際特赦組織無法確認該國司法系統是否使用死刑。",
"zh_Hans": "国际特赦组织无法确认该国司法体系使用死刑的情况。",
"zh_Hant": "國際特赦組織未能確定此國曾否執行死刑和作出死刑判決。",
"pt": "A Amnistia Internacional não pôde confirmar se existiram sentenças de morte neste país."
}
},
{
"id": "LBR",
"name": "LIBERIA",
"since": 2000,
"executions": "",
"death-penalties": "",
"status": "ABOLITIONIST"
},
{
"id": "LBY",