-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprint.json
More file actions
3183 lines (3182 loc) · 100 KB
/
print.json
File metadata and controls
3183 lines (3182 loc) · 100 KB
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
[
{
"url": "http://amzn.to/2xjwDSo",
"img": "https://images.bible.cloud/covers/110x170/AAKWBT.jpg",
"tt": "Ankave 1990 Edition",
"id": "AAKWBT"
},
{
"url": "http://amzn.to/2xjsspQ",
"img": "https://images.bible.cloud/covers/110x170/AAUWBT.jpg",
"tt": "The New Testament in Abau",
"id": "AAUWBT"
},
{
"url": "http://amzn.to/2gWpbWh",
"img": "https://images.bible.cloud/covers/110x170/ABTWBT.jpg",
"tt": "Maprik Ambulas New Testament",
"id": "ABTWBT"
},
{
"url": "http://amzn.to/2xMmhe1",
"img": "https://images.bible.cloud/covers/110x170/ABXWBT.jpg",
"tt": "The New Testament in Inabaknon",
"id": "ABXWBT"
},
{
"url": "http://amzn.to/2gYZdxF",
"img": "https://images.bible.cloud/covers/110x170/ABYWBT.jpg",
"tt": "The New Testament in Aneme Wake",
"id": "ABYWBT"
},
{
"url": "http://amzn.to/2wVWzlK",
"img": "https://images.bible.cloud/covers/110x170/ACCIBS.jpg",
"tt": "1992 Edition",
"id": "ACCIBS"
},
{
"url": "http://amzn.to/2jiXI1S",
"img": "https://images.bible.cloud/covers/110x170/ACRNNT.jpg",
"tt": "2009 Edition (New Alphabet)",
"id": "ACRNNT"
},
{
"url": "http://amzn.to/2wVSHkt",
"img": "https://images.bible.cloud/covers/110x170/ACRTNT.jpg",
"tt": "2009 Edition (Traditional)",
"id": "ACRTNT"
},
{
"url": "http://amzn.to/2w25H9A",
"img": "https://images.bible.cloud/covers/110x170/ACUTBL.jpg",
"tt": "Achuar-Shiwiar 1994 Edition",
"id": "ACUTBL"
},
{
"url": "https://amzn.to/2KpIq7Y",
"img": "https://images.bible.cloud/covers/110x170/AGDWBT.jpg",
"tt": "The New Testament in Agarabi",
"id": "AGDWBT"
},
{
"url": "http://amzn.to/2wkVwbj",
"img": "https://images.bible.cloud/covers/110x170/AGGPNG.jpg",
"tt": "Angor 2001 Edition",
"id": "AGGPNG"
},
{
"url": "http://amzn.to/2gWSacJ",
"img": "https://images.bible.cloud/covers/110x170/AGMWBT.jpg",
"tt": "Angaataha 2004 Edition",
"id": "AGMWBT"
},
{
"url": "http://amzn.to/2gXvnxt",
"img": "https://images.bible.cloud/covers/110x170/AGNWPS.jpg",
"tt": "The New Agreement Agutaynen Bible",
"id": "AGNWPS"
},
{
"url": "https://amzn.to/2KmwKCR",
"img": "https://images.bible.cloud/covers/110x170/AGRTBL.jpg",
"tt": "Aguaruna 2005 Edition",
"id": "AGRTBL"
},
{
"url": "https://amzn.to/2yJtVHg",
"img": "https://images.bible.cloud/covers/110x170/AKEBSS.jpg",
"tt": "Akawaio 2010 Edition",
"id": "AKEBSS"
},
{
"url": "http://amzn.to/2xsjRAX",
"img": "https://images.bible.cloud/covers/110x170/AKHBSP.jpg",
"tt": "Angal Heneng 1978 Edition",
"id": "AKHBSP"
},
{
"url": "http://amzn.to/2jj7H7f",
"img": "https://images.bible.cloud/covers/110x170/AMETBL.jpg",
"tt": "Yanesha' 2014 Edition",
"id": "AMETBL"
},
{
"url": "http://amzn.to/2wkPVlx",
"img": "https://images.bible.cloud/covers/110x170/AMMWBT.jpg",
"tt": "The New Testament in Ama",
"id": "AMMWBT"
},
{
"url": "http://amzn.to/2gWsAEM",
"img": "https://images.bible.cloud/covers/110x170/AMNNAI.jpg",
"tt": "Naineri Amanab New Testament",
"id": "AMNNAI"
},
{
"url": "http://amzn.to/2jjIQjF",
"img": "https://images.bible.cloud/covers/110x170/AMNWBT.jpg",
"tt": "The New Testament in Amanab",
"id": "AMNWBT"
},
{
"url": "http://amzn.to/2eRxVZE",
"img": "https://images.bible.cloud/covers/110x170/AMPWBT.jpg",
"tt": "The New Testament in Alamblak",
"id": "AMPWBT"
},
{
"url": "http://amzn.to/2jCb7Cc",
"img": "https://images.bible.cloud/covers/110x170/AMRWBT.jpg",
"tt": "The New Testament in Amarakaeri",
"id": "AMRWBT"
},
{
"url": "http://amzn.to/2xrOTcq",
"img": "https://images.bible.cloud/covers/110x170/AMULLB.jpg",
"tt": "Amuzgo de Guerrero New Testament",
"id": "AMULLB"
},
{
"url": "http://amzn.to/2hdb3Vi",
"img": "https://images.bible.cloud/covers/110x170/ANVWBT.jpg",
"tt": "Denya 2010 Edition",
"id": "ANVWBT"
},
{
"url": "https://amzn.to/2N22RGs",
"img": "https://images.bible.cloud/covers/110x170/AOJFIL.jpg",
"tt": "Mufian 1998 Edition",
"id": "AOJFIL"
},
{
"url": "http://amzn.to/2wltI6J",
"img": "https://images.bible.cloud/covers/110x170/AOJWBT.jpg",
"tt": "Mufian 1998 Edition",
"id": "AOJWBT"
},
{
"url": "http://amzn.to/2jjEskL",
"img": "https://images.bible.cloud/covers/110x170/AOMWBT.jpg",
"tt": "Ömie 1991 Edition",
"id": "AOMWBT"
},
{
"url": "https://amzn.to/2N2jUbh",
"img": "https://images.bible.cloud/covers/110x170/AONTBL.jpg",
"tt": "Bumbita Arapesh 2003 Edition",
"id": "AONTBL"
},
{
"url": "https://amzn.to/2yJq0Ky",
"img": "https://images.bible.cloud/covers/110x170/APEAMA.jpg",
"tt": "The New Testament in Mountain Arapesh",
"id": "APEAMA"
},
{
"url": "https://amzn.to/2tGyzQL",
"img": "https://images.bible.cloud/covers/110x170/APETBL.jpg",
"tt": "Mountain Arapesh New Testament",
"id": "APETBL"
},
{
"url": "http://amzn.to/2jiP1Ve",
"img": "https://images.bible.cloud/covers/110x170/APRWBT.jpg",
"tt": "The New Testament in the Arop dialect of the Arop-Lokep language",
"id": "APRWBT"
},
{
"url": "https://amzn.to/2yGWrtm",
"img": "https://images.bible.cloud/covers/110x170/APUTSA.jpg",
"tt": "The New Testament in Apurina",
"id": "APUTSA"
},
{
"url": "http://amzn.to/2f177tM",
"img": "https://images.bible.cloud/covers/110x170/APWWNT.jpg",
"tt": "Western Apache New Testament",
"id": "APWWNT"
},
{
"url": "https://amzn.to/2yJCEcv",
"img": "https://images.bible.cloud/covers/110x170/APYWBT.jpg",
"tt": "The New Testament in Apalai",
"id": "APYWBT"
},
{
"url": "https://amzn.to/2N1At7t",
"img": "https://images.bible.cloud/covers/110x170/APZWBT.jpg",
"tt": "Safeyoka 1988 Edition",
"id": "APZWBT"
},
{
"url": "http://amzn.to/2gYbSku",
"img": "https://images.bible.cloud/covers/110x170/ARLWBT.jpg",
"tt": "The New Testament in Arabela",
"id": "ARLWBT"
},
{
"url": "http://amzn.to/2wT7RYS",
"img": "https://images.bible.cloud/covers/110x170/ARNSBU.jpg",
"tt": "Mapudungun UBS Edition",
"id": "ARNSBU"
},
{
"url": "https://amzn.to/2It89XO",
"img": "https://images.bible.cloud/covers/110x170/ASOTBL.jpg",
"tt": "Dano 1989 Edition",
"id": "ASOTBL"
},
{
"url": "https://amzn.to/2N0U1bP",
"img": "https://images.bible.cloud/covers/110x170/ATAPNG.jpg",
"tt": "Pele-Ata 2009 Edition",
"id": "ATAPNG"
},
{
"url": "https://amzn.to/2N0HPYL",
"img": "https://images.bible.cloud/covers/110x170/ATBWBT.jpg",
"tt": "New Testament in Zaiwa",
"id": "ATBWBT"
},
{
"url": "http://amzn.to/2eRhYCI",
"img": "https://images.bible.cloud/covers/110x170/ATDWBT.jpg",
"tt": "New Testament in Manobo, Ata",
"id": "ATDWBT"
},
{
"url": "http://amzn.to/2wSDQbp",
"img": "https://images.bible.cloud/covers/110x170/ATGWYI.jpg",
"tt": "Ivbie North-Okpela-Arhe 2012 Edition",
"id": "ATGWYI"
},
{
"url": "http://amzn.to/2wC3a1f",
"img": "https://images.bible.cloud/covers/110x170/ATTANT.jpg",
"tt": "The New Testament in Atta, Pamplona",
"id": "ATTANT"
},
{
"url": "http://amzn.to/2xsnerT",
"img": "https://images.bible.cloud/covers/110x170/AUCWBT.jpg",
"tt": "The New Testament in Waorani",
"id": "AUCWBT"
},
{
"url": "http://amzn.to/2gZtLja",
"img": "https://images.bible.cloud/covers/110x170/AUYWBT.jpg",
"tt": "The New Testament in Awiyaana",
"id": "AUYWBT"
},
{
"url": "http://amzn.to/2jjIJ7N",
"img": "https://images.bible.cloud/covers/110x170/AVTWBT.jpg",
"tt": "Au 1992 Edition",
"id": "AVTWBT"
},
{
"url": "http://amzn.to/2eRBqzg",
"img": "https://images.bible.cloud/covers/110x170/AWBTBL.jpg",
"tt": "Awa 2002 Edition",
"id": "AWBTBL"
},
{
"url": "http://amzn.to/2wTgYsl",
"img": "https://images.bible.cloud/covers/110x170/AWXWBT.jpg",
"tt": "Genesis, Ruth, and Jonah in Awara",
"id": "AWXWBT"
},
{
"url": "http://amzn.to/2eRIRpX",
"img": "https://images.bible.cloud/covers/110x170/AZGTBL.jpg",
"tt": "San Pedro Amuzgos Amuzgo 1992 Edition",
"id": "AZGTBL"
},
{
"url": "http://amzn.to/2fvay8K",
"img": "https://images.bible.cloud/covers/110x170/AZZTBL.jpg",
"tt": "Highland Puebla Nahuatl 1979 Edition",
"id": "AZZTBL"
},
{
"url": "http://amzn.to/2wl0e9h",
"img": "https://images.bible.cloud/covers/110x170/BAON10.jpg",
"tt": "Waimaha 2010 Edition",
"id": "BAON10"
},
{
"url": "http://amzn.to/2eZWozK",
"img": "https://images.bible.cloud/covers/110x170/BBRWBT.jpg",
"tt": "Girawa 1994 Edition",
"id": "BBRWBT"
},
{
"url": "http://amzn.to/2wlhhYv",
"img": "https://images.bible.cloud/covers/110x170/BDDPNG.jpg",
"tt": "Bunama 1991 Edition",
"id": "BDDPNG"
},
{
"url": "http://amzn.to/2wVzEH4",
"img": "https://images.bible.cloud/covers/110x170/BEFWBT.jpg",
"tt": "Benabena 1982 Edition",
"id": "BEFWBT"
},
{
"url": "http://amzn.to/2fv7eur",
"img": "https://images.bible.cloud/covers/110x170/BGSWBT.jpg",
"tt": "The New Testament in Tagabawa",
"id": "BGSWBT"
},
{
"url": "http://amzn.to/2eRyeUc",
"img": "https://images.bible.cloud/covers/110x170/BHGBHG.jpg",
"tt": "Portions in Binandere",
"id": "BHGBHG"
},
{
"url": "http://amzn.to/2y9URuT",
"img": "https://images.bible.cloud/covers/110x170/BIGWBT.jpg",
"tt": "Biangai 2013 Edition",
"id": "BIGWBT"
},
{
"url": "https://amzn.to/2Kfi6hG",
"img": "https://images.bible.cloud/covers/110x170/BJRWBT.jpg",
"tt": "Binumarien 1983 Edition",
"id": "BJRWBT"
},
{
"url": "http://amzn.to/2gVZ55Y",
"img": "https://images.bible.cloud/covers/110x170/BJVWYI.jpg",
"tt": "Bedjond 2011 Edition",
"id": "BJVWYI"
},
{
"url": "http://amzn.to/2xscFVD",
"img": "https://images.bible.cloud/covers/110x170/BKDWBT.jpg",
"tt": "The New Testament in Binukid",
"id": "BKDWBT"
},
{
"url": "http://amzn.to/2wT3Bsd",
"img": "https://images.bible.cloud/covers/110x170/BKQWBT.jpg",
"tt": "The New Testament in Bakairi",
"id": "BKQWBT"
},
{
"url": "https://amzn.to/2tw1Azp",
"img": "https://images.bible.cloud/covers/110x170/BKXWBT.jpg",
"tt": "Baikeno Gospel of Mark",
"id": "BKXWBT"
},
{
"url": "https://amzn.to/2MXPPtr",
"img": "https://images.bible.cloud/covers/110x170/BLWWBT.jpg",
"tt": "The New Testament in Balangao",
"id": "BLWWBT"
},
{
"url": "http://amzn.to/2wWgKA8",
"img": "https://images.bible.cloud/covers/110x170/BLZLAI.jpg",
"tt": "Formal Balantak version, 2010",
"id": "BLZLAI"
},
{
"url": "http://amzn.to/2jkIauK",
"img": "https://images.bible.cloud/covers/110x170/BMHWBT.jpg",
"tt": "Kein 2005 Edition",
"id": "BMHWBT"
},
{
"url": "http://amzn.to/2xswOLd",
"img": "https://images.bible.cloud/covers/110x170/BMKWBT.jpg",
"tt": "Ghayavi 2010 Edition",
"id": "BMKWBT"
},
{
"url": "http://amzn.to/2gWXE7d",
"img": "https://images.bible.cloud/covers/110x170/BMRWBT.jpg",
"tt": "Muinane 2009 Edition",
"id": "BMRWBT"
},
{
"url": "https://amzn.to/2N238sY",
"img": "https://images.bible.cloud/covers/110x170/BMUPNG.jpg",
"tt": "Somba-Siawari New Testament and Portions",
"id": "BMUPNG"
},
{
"url": "https://amzn.to/2Iue3bz",
"img": "https://images.bible.cloud/covers/110x170/BNPWBT.jpg",
"tt": "The Scriptures in Bola",
"id": "BNPWBT"
},
{
"url": "http://amzn.to/2wWiFoj",
"img": "https://images.bible.cloud/covers/110x170/BOATBL.jpg",
"tt": "The Scriptures in Bora",
"id": "BOATBL"
},
{
"url": "http://amzn.to/2wSBlpA",
"img": "https://images.bible.cloud/covers/110x170/BOJWBT.jpg",
"tt": "Anjam New Testament, 2014 revision",
"id": "BOJWBT"
},
{
"url": "https://amzn.to/2lBR2Ko",
"img": "https://images.bible.cloud/covers/110x170/BOJYAA.jpg",
"tt": "The New Testament in Anjam",
"id": "BOJYAA"
},
{
"url": "https://amzn.to/2lBElj5",
"img": "https://images.bible.cloud/covers/110x170/BONPNG.jpg",
"tt": "Bine 1993 Edition",
"id": "BONPNG"
},
{
"url": "https://amzn.to/2Itnc3W",
"img": "https://images.bible.cloud/covers/110x170/BOXWYI.jpg",
"tt": "Buamu 2012 Edition",
"id": "BOXWYI"
},
{
"url": "http://amzn.to/2gZwigD",
"img": "https://images.bible.cloud/covers/110x170/BPRWYI.jpg",
"tt": "Koronadal Blaan 1995 Edition",
"id": "BPRWYI"
},
{
"url": "https://amzn.to/2tCGMGz",
"img": "https://images.bible.cloud/covers/110x170/BREBRB.jpg",
"tt": "The Breton Bible",
"id": "BREBRB"
},
{
"url": "http://amzn.to/2gYXHfb",
"img": "https://images.bible.cloud/covers/110x170/BSNTBL.jpg",
"tt": "Barasana-Eduria 2001 Edition",
"id": "BSNTBL"
},
{
"url": "https://amzn.to/2ItoxYw",
"img": "https://images.bible.cloud/covers/110x170/BSPPBT.jpg",
"tt": "God's Holy Book",
"id": "BSPPBT"
},
{
"url": "http://amzn.to/2y9SgRm",
"img": "https://images.bible.cloud/covers/110x170/BSSWBT.jpg",
"tt": "Akoose 2011 Edition",
"id": "BSSWBT"
},
{
"url": "https://amzn.to/2tMjY6v",
"img": "https://images.bible.cloud/covers/110x170/BUSSIM.jpg",
"tt": "Bokobaru 2005 Edition",
"id": "BUSSIM"
},
{
"url": "http://amzn.to/2wl1wkl",
"img": "https://images.bible.cloud/covers/110x170/BYRWBT.jpg",
"tt": "Baruya 1994 Edition",
"id": "BYRWBT"
},
{
"url": "https://amzn.to/2lyu5rH",
"img": "https://images.bible.cloud/covers/110x170/BZDWBT.jpg",
"tt": "Common Language (Popular Version)",
"id": "BZDWBT"
},
{
"url": "https://amzn.to/2IuzokP",
"img": "https://images.bible.cloud/covers/110x170/BZHPNG.jpg",
"tt": "Buang (Mapos) New Testament 2003",
"id": "BZHPNG"
},
{
"url": "http://amzn.to/2xrVy6q",
"img": "https://images.bible.cloud/covers/110x170/BZJBSW.jpg",
"tt": "Belize Kriol English 2012 Edition",
"id": "BZJBSW"
},
{
"url": "https://amzn.to/2yMDlSo",
"img": "https://images.bible.cloud/covers/110x170/CAAWBT.jpg",
"tt": "Ch'orti' 1996 Edition",
"id": "CAAWBT"
},
{
"url": "http://amzn.to/2xsjN4m",
"img": "https://images.bible.cloud/covers/110x170/CABNVS.jpg",
"tt": "Garifuna 2002 Edition",
"id": "CABNVS"
},
{
"url": "http://amzn.to/2gXKabk",
"img": "https://images.bible.cloud/covers/110x170/CAFWBT.jpg",
"tt": "The Bible in Southern Carrier",
"id": "CAFWBT"
},
{
"url": "https://amzn.to/2N3X57k",
"img": "https://images.bible.cloud/covers/110x170/CAKEAS.jpg",
"tt": "Cakchiquel, Eastern 2012 Edition",
"id": "CAKEAS"
},
{
"url": "http://amzn.to/2xsNG4q",
"img": "https://images.bible.cloud/covers/110x170/CAKSBG.jpg",
"tt": "Cakchiquel, Central 2003 Edition",
"id": "CAKSBG"
},
{
"url": "http://amzn.to/2hd8OkQ",
"img": "https://images.bible.cloud/covers/110x170/CAKSDS.jpg",
"tt": "The Bible in Kaqchikel",
"id": "CAKSDS"
},
{
"url": "http://amzn.to/2xhtod7",
"img": "https://images.bible.cloud/covers/110x170/CAKSMJ.jpg",
"tt": "Cakchiquel, Santa Maria de Jesus 2006 Edition",
"id": "CAKSMJ"
},
{
"url": "http://amzn.to/2f1Aegh",
"img": "https://images.bible.cloud/covers/110x170/CAKSOU.jpg",
"tt": "Cakchiquel South Central 2007 Edition",
"id": "CAKSOU"
},
{
"url": "http://amzn.to/2y9KR4J",
"img": "https://images.bible.cloud/covers/110x170/CAKSWT.jpg",
"tt": "Cakchiquel, Southwestern Yepocapa 2012 Edition",
"id": "CAKSWT"
},
{
"url": "https://amzn.to/2yMw84Y",
"img": "https://images.bible.cloud/covers/110x170/CAKWSK.jpg",
"tt": "New Testament in Kaqchikel, Western Solola",
"id": "CAKWSK"
},
{
"url": "http://amzn.to/2wVZRFG",
"img": "https://images.bible.cloud/covers/110x170/CAOWBT.jpg",
"tt": "The New Testament in Chacobo",
"id": "CAOWBT"
},
{
"url": "http://amzn.to/2f12EXI",
"img": "https://images.bible.cloud/covers/110x170/CAPSBB.jpg",
"tt": "Chipaya 2004 Edition",
"id": "CAPSBB"
},
{
"url": "http://amzn.to/2gWXYmx",
"img": "https://images.bible.cloud/covers/110x170/CARBSS.jpg",
"tt": "Galibi Carib 2003 Edition",
"id": "CARBSS"
},
{
"url": "https://amzn.to/2KbJdKj",
"img": "https://images.bible.cloud/covers/110x170/CAVWBT.jpg",
"tt": "The New Testament in Cavineña",
"id": "CAVWBT"
},
{
"url": "http://amzn.to/2y2cf5A",
"img": "https://images.bible.cloud/covers/110x170/CAXSBB.jpg",
"tt": "The New Testament in Chiquitano 2002",
"id": "CAXSBB"
},
{
"url": "http://amzn.to/2xrZUKG",
"img": "https://images.bible.cloud/covers/110x170/CBCWBT.jpg",
"tt": "Carapana 1992 Edition",
"id": "CBCWBT"
},
{
"url": "https://amzn.to/2twdol8",
"img": "https://images.bible.cloud/covers/110x170/CBITBL.jpg",
"tt": "Genesis, Exodus and the New Testament in Chachi",
"id": "CBITBL"
},
{
"url": "http://amzn.to/2wVYpmw",
"img": "https://images.bible.cloud/covers/110x170/CBKWBT.jpg",
"tt": "The New Testament in Chavacano",
"id": "CBKWBT"
},
{
"url": "http://amzn.to/2wW73l6",
"img": "https://images.bible.cloud/covers/110x170/CBSWBT.jpg",
"tt": "New Testament in Kashinawa for Peru",
"id": "CBSWBT"
},
{
"url": "http://amzn.to/2xsaHo9",
"img": "https://images.bible.cloud/covers/110x170/CBVTBL.jpg",
"tt": "Cacua 2004 Edition",
"id": "CBVTBL"
},
{
"url": "http://amzn.to/2wWNfy1",
"img": "https://images.bible.cloud/covers/110x170/CCOTBL.jpg",
"tt": "Comaltepec Chinantec 2002 Edition",
"id": "CCOTBL"
},
{
"url": "http://amzn.to/2y0Okn3",
"img": "https://images.bible.cloud/covers/110x170/CGCTBL.jpg",
"tt": "Kagayanen 2007 Edition",
"id": "CGCTBL"
},
{
"url": "http://amzn.to/2hdMhEp",
"img": "https://images.bible.cloud/covers/110x170/CHDWBT.jpg",
"tt": "Highland Oaxaca Chontal New Testament",
"id": "CHDWBT"
},
{
"url": "http://amzn.to/2xsjd6M",
"img": "https://images.bible.cloud/covers/110x170/CHFTBL.jpg",
"tt": "Tabasco Chontal 1977 Edition",
"id": "CHFTBL"
},
{
"url": "https://amzn.to/2K7UBa9",
"img": "https://images.bible.cloud/covers/110x170/CHKBSM.jpg",
"tt": "Paipel",
"id": "CHKBSM"
},
{
"url": "http://amzn.to/2y0x55h",
"img": "https://images.bible.cloud/covers/110x170/CHQBLI.jpg",
"tt": "Quiotepec Chinanteco New Testament",
"id": "CHQBLI"
},
{
"url": "http://amzn.to/2gYpLmF",
"img": "https://images.bible.cloud/covers/110x170/CHZWBT.jpg",
"tt": "Ozumacín Chinantec 2003 Edition",
"id": "CHZWBT"
},
{
"url": "https://amzn.to/2K9n6Ed",
"img": "https://images.bible.cloud/covers/110x170/CJOWBT.jpg",
"tt": "The New Testament in Ashéninka Pajonal",
"id": "CJOWBT"
},
{
"url": "http://amzn.to/2jjpUSr",
"img": "https://images.bible.cloud/covers/110x170/CJVTBL.jpg",
"tt": "Chuave 1992 Edition",
"id": "CJVTBL"
},
{
"url": "http://amzn.to/2wW1JxT",
"img": "https://images.bible.cloud/covers/110x170/CLETBL.jpg",
"tt": "Lealao Chinantec 2008 Edition",
"id": "CLETBL"
},
{
"url": "http://amzn.to/2gWALRg",
"img": "https://images.bible.cloud/covers/110x170/CLUMBB.jpg",
"tt": "The New Testament in Caluyanun",
"id": "CLUMBB"
},
{
"url": "http://amzn.to/2y0R184",
"img": "https://images.bible.cloud/covers/110x170/CMEWBT.jpg",
"tt": "Cerma 2011 Edition",
"id": "CMEWBT"
},
{
"url": "http://amzn.to/2wT7m0T",
"img": "https://images.bible.cloud/covers/110x170/CNLTBI.jpg",
"tt": "Chinanteco de Lalana New Testament",
"id": "CNLTBI"
},
{
"url": "https://amzn.to/2tw999c",
"img": "https://images.bible.cloud/covers/110x170/CNTTBL.jpg",
"tt": "Tepetotutla Chinantec 1994 Edition",
"id": "CNTTBL"
},
{
"url": "http://amzn.to/2eRBYoV",
"img": "https://images.bible.cloud/covers/110x170/COFWBT.jpg",
"tt": "Colorado Bible",
"id": "COFWBT"
},
{
"url": "https://amzn.to/2yMF0aI",
"img": "https://images.bible.cloud/covers/110x170/CONWBT.jpg",
"tt": "Cofán 1998 Edition",
"id": "CONWBT"
},
{
"url": "https://amzn.to/2KcneD9",
"img": "https://images.bible.cloud/covers/110x170/COTTBL.jpg",
"tt": "Caquinte 2005 Edition",
"id": "COTTBL"
},
{
"url": "http://amzn.to/2jDmzO7",
"img": "https://images.bible.cloud/covers/110x170/CPATBL.jpg",
"tt": "Palantla Chinantec 1973 Edition",
"id": "CPATBL"
},
{
"url": "http://amzn.to/2gZ30v5",
"img": "https://images.bible.cloud/covers/110x170/CPBWBT.jpg",
"tt": "Ucayali-Yura Ashninka New Testament",
"id": "CPBWBT"
},
{
"url": "http://amzn.to/2gWZ6Gy",
"img": "https://images.bible.cloud/covers/110x170/CPCWBT.jpg",
"tt": "Ajyíninka Apurucayali New Testament",
"id": "CPCWBT"
},
{
"url": "http://amzn.to/2wWl95M",
"img": "https://images.bible.cloud/covers/110x170/CPUWBT.jpg",
"tt": "New Testament in Asheninka Pichis",
"id": "CPUWBT"
},
{
"url": "http://amzn.to/2xt1IT9",
"img": "https://images.bible.cloud/covers/110x170/CPYWBT.jpg",
"tt": "South Ucayali Ashéninka New Testament and Portions",
"id": "CPYWBT"
},
{
"url": "http://amzn.to/2hdPmV0",
"img": "https://images.bible.cloud/covers/110x170/CRNWBT.jpg",
"tt": "The Bible in El Nayar",
"id": "CRNWBT"
},
{
"url": "http://amzn.to/2jjMDNZ",
"img": "https://images.bible.cloud/covers/110x170/CRXNNT.jpg",
"tt": "The New Testament in Nak'albun/Dzinhubun",
"id": "CRXNNT"
},
{
"url": "http://amzn.to/2wT3HA4",
"img": "https://images.bible.cloud/covers/110x170/CSOTBL.jpg",
"tt": "Sochiapam Chinantec 1986 Edition",
"id": "CSOTBL"
},
{
"url": "http://amzn.to/2xtJgth",
"img": "https://images.bible.cloud/covers/110x170/CTACFB.jpg",
"tt": "The Bible in Chatino, Tataltepec",
"id": "CTACFB"
},
{
"url": "https://amzn.to/2twSJ0m",
"img": "https://images.bible.cloud/covers/110x170/CTPBLI.jpg",
"tt": "The Bible in Chatino, Western Highland",
"id": "CTPBLI"
},
{
"url": "http://amzn.to/2w2souq",
"img": "https://images.bible.cloud/covers/110x170/CUBWBT.jpg",
"tt": "The New Testament in Cubeo",
"id": "CUBWBT"
},
{
"url": "http://amzn.to/2xM48gv",
"img": "https://images.bible.cloud/covers/110x170/CUCTBL.jpg",
"tt": "Usila Chinantec 1994 Edition",
"id": "CUCTBL"
},
{
"url": "http://amzn.to/2wThlmV",
"img": "https://images.bible.cloud/covers/110x170/CUIWBT.jpg",
"tt": "Cuiba 1987 Edition",
"id": "CUIWBT"
},
{
"url": "http://amzn.to/2f17ZOK",
"img": "https://images.bible.cloud/covers/110x170/CUKNVS.jpg",
"tt": "The Bible in San Blas Kuna",
"id": "CUKNVS"
},
{
"url": "http://amzn.to/2wWdnZS",
"img": "https://images.bible.cloud/covers/110x170/CUKWB9.jpg",
"tt": "The New Testament in San Blas Kuna",
"id": "CUKWB9"
},
{
"url": "http://amzn.to/2xM710F",
"img": "https://images.bible.cloud/covers/110x170/CUTWBT.jpg",
"tt": "Cuicateco de Teutila New Testament",
"id": "CUTWBT"
},
{
"url": "http://amzn.to/2w2NZme",
"img": "https://images.bible.cloud/covers/110x170/CUXCFB.jpg",
"tt": "The Bible in Cuicatec, Tepeuxila",
"id": "CUXCFB"
},
{
"url": "https://amzn.to/2Kej2CH",
"img": "https://images.bible.cloud/covers/110x170/CWEPBT.jpg",
"tt": "The New Testament in Kwere",
"id": "CWEPBT"
},
{
"url": "http://amzn.to/2w2UQvU",
"img": "https://images.bible.cloud/covers/110x170/CYAAVV.jpg",
"tt": "Nopala Chatino 2000 Edition",
"id": "CYAAVV"
},
{
"url": "http://amzn.to/2xrXn3d",
"img": "https://images.bible.cloud/covers/110x170/DAAWYI.jpg",
"tt": "Dangaléat 2012 Edition",
"id": "DAAWYI"
},
{
"url": "http://amzn.to/2wWlzcr",
"img": "https://images.bible.cloud/covers/110x170/DAHPNG.jpg",
"tt": "The New Testament in Gwahatike",
"id": "DAHPNG"
},
{
"url": "http://amzn.to/2wWqwSu",
"img": "https://images.bible.cloud/covers/110x170/DEDWBT.jpg",
"tt": "Dedua 2005 Edition",
"id": "DEDWBT"
},
{
"url": "http://amzn.to/2f1ok6l",
"img": "https://images.bible.cloud/covers/110x170/DEUL12.jpg",
"tt": "1912 Luther Bible",
"id": "DEUL12"
},
{
"url": "http://amzn.to/2ykqZgb",
"img": "https://images.bible.cloud/covers/110x170/DGCWBT.jpg",
"tt": "New Testament in Agta, Casiguran Dumagat",
"id": "DGCWBT"
},
{
"url": "http://amzn.to/2gXzkCg",
"img": "https://images.bible.cloud/covers/110x170/DIKTBL.jpg",
"tt": "Southwestern Dinka 2006 Edition",
"id": "DIKTBL"
},
{
"url": "http://amzn.to/2wSPSl3",
"img": "https://images.bible.cloud/covers/110x170/DJKWBT.jpg",
"tt": "Eastern Maroon Creole 1999 Edition",
"id": "DJKWBT"
},
{
"url": "http://amzn.to/2w2yc73",
"img": "https://images.bible.cloud/covers/110x170/DOBPNG.jpg",
"tt": "Dobu 1985 Edition",
"id": "DOBPNG"
},
{
"url": "http://amzn.to/2gXfqY1",
"img": "https://images.bible.cloud/covers/110x170/DWRENT.jpg",
"tt": "Dawro 2011 Edition",
"id": "DWRENT"
},
{
"url": "http://amzn.to/2wln8xj",
"img": "https://images.bible.cloud/covers/110x170/DWRTBL.jpg",
"tt": "Dawro 2009 Edition",
"id": "DWRTBL"
},
{
"url": "https://amzn.to/2yMyMrq",
"img": "https://images.bible.cloud/covers/110x170/DWWTBL.jpg",
"tt": "The New Testament in Dawawa",
"id": "DWWTBL"
},
{
"url": "http://amzn.to/2w2NnNC",
"img": "https://images.bible.cloud/covers/110x170/EBKWBT.jpg",
"tt": "The New Testament in Eastern Bontok",
"id": "EBKWBT"
},
{
"url": "http://amzn.to/2xM0O4T",
"img": "https://images.bible.cloud/covers/110x170/EMPWYI.jpg",
"tt": "The New Testament in Northern Emberá",
"id": "EMPWYI"
},
{
"url": "http://amzn.to/2gXU9xm",
"img": "https://images.bible.cloud/covers/110x170/ENQPNG.jpg",
"tt": "The New Testament in Enga",
"id": "ENQPNG"
},
{
"url": "http://amzn.to/2f0DGry",
"img": "https://images.bible.cloud/covers/110x170/ESEWBT.jpg",
"tt": "The New Testament in Ese Ejja",
"id": "ESEWBT"
},
{
"url": "http://amzn.to/2wVETGH",
"img": "https://images.bible.cloud/covers/110x170/ESKWBT.jpg",
"tt": "Northwest Alaska Inupiatun 1997 Edition",
"id": "ESKWBT"
},
{
"url": "https://amzn.to/2KntiEO",
"img": "https://images.bible.cloud/covers/110x170/ETRTBL.jpg",
"tt": "Edolo 2012 Edition",
"id": "ETRTBL"
},
{
"url": "http://amzn.to/2f1nQx4",
"img": "https://images.bible.cloud/covers/110x170/FAAWBT.jpg",
"tt": "Fasu 2012 Edition",
"id": "FAAWBT"
},
{
"url": "https://amzn.to/2yKDjKP",
"img": "https://images.bible.cloud/covers/110x170/FAIPNG.jpg",
"tt": "The New Testament in Faiwol",
"id": "FAIPNG"
},
{
"url": "http://amzn.to/2gZArO4",
"img": "https://images.bible.cloud/covers/110x170/FFMWBT.jpg",
"tt": "The New Testament in Maasina Fulfulde",
"id": "FFMWBT"
},
{
"url": "https://amzn.to/2yQHBQK",
"img": "https://images.bible.cloud/covers/110x170/FRAOST.jpg",
"tt": "Ostervald's French Bible",
"id": "FRAOST"
},
{
"url": "http://amzn.to/2wWt0QO",
"img": "https://images.bible.cloud/covers/110x170/GAHPNG.jpg",
"tt": "The New Testament in Alekano",
"id": "GAHPNG"
},
{
"url": "https://amzn.to/2MsMn9p",
"img": "https://images.bible.cloud/covers/110x170/GAMWBT.jpg",
"tt": "The New Testament in Kandawo",
"id": "GAMWBT"
},
{
"url": "http://amzn.to/2eRLR5I",
"img": "https://images.bible.cloud/covers/110x170/GAWWBT.jpg",
"tt": "Nobonob 1990 Edition",
"id": "GAWWBT"
},
{
"url": "https://amzn.to/2yJCTUX",
"img": "https://images.bible.cloud/covers/110x170/GDNPNG.jpg",
"tt": "Umanakaina 1999 Edition",
"id": "GDNPNG"
},
{
"url": "http://amzn.to/2xtUiP8",
"img": "https://images.bible.cloud/covers/110x170/GDRPNG.jpg",
"tt": "Wipi 2001 Edition",
"id": "GDRPNG"
},
{
"url": "http://amzn.to/2f0py1L",
"img": "https://images.bible.cloud/covers/110x170/GEBPBT.jpg",