-
Notifications
You must be signed in to change notification settings - Fork 4
/
BibleBooks.py
1694 lines (1690 loc) · 47.4 KB
/
BibleBooks.py
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
class BibleBooks:
# English abbreviations according to SBL-style
eng = {
"1": ("Gen", "Genesis"),
"2": ("Exod", "Exodus"),
"3": ("Lev", "Leviticus"),
"4": ("Num", "Numbers"),
"5": ("Deut", "Deuteronomy"),
"6": ("Josh", "Joshua"),
"7": ("Judg", "Judges"),
"8": ("Ruth", "Ruth"),
"9": ("1Sam", "1 Samuel"),
"10": ("2Sam", "2 Samuel"),
"11": ("1Kgs", "1 Kings"),
"12": ("2Kgs", "2 Kings"),
"13": ("1Chr", "1 Chronicles"),
"14": ("2Chr", "2 Chronicles"),
"15": ("Ezra", "Ezra"),
"16": ("Neh", "Nehemiah"),
"17": ("Esth", "Esther"),
"18": ("Job", "Job"),
"19": ("Ps", "Psalms"),
"20": ("Prov", "Proverbs"),
"21": ("Eccl", "Ecclesiastes"),
"22": ("Song", "Song of Songs"),
"23": ("Isa", "Isaiah"),
"24": ("Jer", "Jeremiah"),
"25": ("Lam", "Lamentations"),
"26": ("Ezek", "Ezekiel"),
"27": ("Dan", "Daniel"),
"28": ("Hos", "Hosea"),
"29": ("Joel", "Joel"),
"30": ("Amos", "Amos"),
"31": ("Obad", "Obadiah"),
"32": ("Jonah", "Jonah"),
"33": ("Mic", "Micah"),
"34": ("Nah", "Nahum"),
"35": ("Hab", "Habakkuk"),
"36": ("Zeph", "Zephaniah"),
"37": ("Hag", "Haggai"),
"38": ("Zech", "Zechariah"),
"39": ("Mal", "Malachi"),
"40": ("Matt", "Matthew"),
"41": ("Mark", "Mark"),
"42": ("Luke", "Luke"),
"43": ("John", "John"),
"44": ("Acts", "Acts"),
"45": ("Rom", "Romans"),
"46": ("1Cor", "1 Corinthians"),
"47": ("2Cor", "2 Corinthians"),
"48": ("Gal", "Galatians"),
"49": ("Eph", "Ephesians"),
"50": ("Phil", "Philippians"),
"51": ("Col", "Colossians"),
"52": ("1Thess", "1 Thessalonians"),
"53": ("2Thess", "2 Thessalonians"),
"54": ("1Tim", "1 Timothy"),
"55": ("2Tim", "2 Timothy"),
"56": ("Titus", "Titus"),
"57": ("Phlm", "Philemon"),
"58": ("Heb", "Hebrews"),
"59": ("Jas", "James"),
"60": ("1Pet", "1 Peter"),
"61": ("2Pet", "2 Peter"),
"62": ("1John", "1 John"),
"63": ("2John", "2 John"),
"64": ("3John", "3 John"),
"65": ("Jude", "Jude"),
"66": ("Rev", "Revelation"),
"70": ("Bar", "Baruch"),
"71": ("AddDan", "Additions to Daniel"),
"72": ("PrAzar", "Prayer of Azariah"),
"73": ("Bel", "Bel and the Dragon"),
"75": ("Sus", "Susanna"),
"76": ("1Esd", "1 Esdras"),
"77": ("2Esd", "2 Esdras"),
"78": ("AddEsth", "Additions to Esther"),
"79": ("EpJer", "Epistle of Jeremiah"),
"80": ("Jdt", "Judith"),
"81": ("1Macc", "1 Maccabees"),
"82": ("2Macc", "2 Maccabees"),
"83": ("3Macc", "3 Maccabees"),
"84": ("4Macc", "4 Maccabees"),
"85": ("PrMan", "Prayer of Manasseh"),
"86": ("Ps151", "Psalm 151"),
"87": ("Sir", "Sirach"),
"88": ("Tob", "Tobit"),
"89": ("Wis", "Wisdom of Solomon"),
"90": ("PssSol", "Psalms of Solomon"),
"91": ("Odes", "Odes"),
"92": ("EpLao", "Epistle to Laodiceans"),
}
# Traditional Chinese
tc = {
"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": ("啟", "啟示錄"),
"70": ("巴錄書", "巴錄書"),
"71": ("但以理書補編", "但以理書補編"),
"72": ("三童歌", "三童歌"),
"73": ("比勒與大龍", "比勒與大龍"),
"75": ("蘇撒拿傳", "蘇撒拿傳"),
"76": ("以斯拉續篇上卷", "以斯拉續篇上卷"),
"77": ("以斯拉續篇下卷", "以斯拉續篇下卷"),
"78": ("以斯帖記補編", "以斯帖記補編"),
"79": ("耶利米書信", "耶利米書信"),
"80": ("猶滴傳", "猶滴傳"),
"81": ("馬加比一書", "馬加比一書"),
"82": ("馬加比二書", "馬加比二書"),
"83": ("馬加比三書", "馬加比三書"),
"84": ("馬加比四書", "馬加比四書"),
"85": ("瑪拿西禱言", "瑪拿西禱言"),
"86": ("詩篇一五一", "詩篇一五一"),
"87": ("便西拉智訓", "便西拉智訓"),
"88": ("多比傳", "多比傳"),
"89": ("所羅門智訓", "所羅門智訓"),
"90": ("所羅門詩篇", "所羅門詩篇"),
"91": ("頌歌", "頌歌"),
"92": ("老底嘉書", "老底嘉書"),
}
# Simplified Chinese
sc = {
"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": ("启", "启示录"),
"70": ("巴录书", "巴录书"),
"71": ("但以理书补编", "但以理书补编"),
"72": ("三童歌", "三童歌"),
"73": ("比勒与大龙", "比勒与大龙"),
"75": ("苏撒拿传", "苏撒拿传"),
"76": ("以斯拉续篇上卷", "以斯拉续篇上卷"),
"77": ("以斯拉续篇下卷", "以斯拉续篇下卷"),
"78": ("以斯帖记补编", "以斯帖记补编"),
"79": ("耶利米书信", "耶利米书信"),
"80": ("犹滴传", "犹滴传"),
"81": ("马加比一书", "马加比一书"),
"82": ("马加比二书", "马加比二书"),
"83": ("马加比三书", "马加比三书"),
"84": ("马加比四书", "马加比四书"),
"85": ("玛拿西祷言", "玛拿西祷言"),
"86": ("诗篇一五一", "诗篇一五一"),
"87": ("便西拉智训", "便西拉智训"),
"88": ("多比传", "多比传"),
"89": ("所罗门智训", "所罗门智训"),
"90": ("所罗门诗篇", "所罗门诗篇"),
"91": ("颂歌", "颂歌"),
"92": ("老底嘉书", "老底嘉书"),
}
# mapping bible book abbreviation / bible book name to book number
name2number = {
"Ge.": "1",
"Gen.": "1",
"GEN.": "1",
"Genesis": "1",
"Gn.": "1",
"Ex.": "2",
"Exo.": "2",
"EXO.": "2",
"Exod.": "2",
"Exodus": "2",
"Le.": "3",
"Lev.": "3",
"LEV.": "3",
"Leviticus": "3",
"Lv.": "3",
"Nb.": "4",
"Nm.": "4",
"Nu.": "4",
"Num.": "4",
"NUM.": "4",
"Numbers": "4",
"De.": "5",
"Deu.": "5",
"DEU.": "5",
"Deut.": "5",
"Deuteronomy": "5",
"Dt.": "5",
"Jos.": "6",
"JOS.": "6",
"Josh.": "6",
"JoshA.": "6",
"Joshua": "6",
"Jsa.": "6",
"JSA.": "6",
"Jsh.": "6",
"Jdb.": "7",
"JDB.": "7",
"Jdg.": "7",
"JDG.": "7",
"Jdgs.": "7",
"Jg.": "7",
"Judg.": "7",
"JudgB.": "7",
"Judges": "7",
"Rth.": "8",
"Ru.": "8",
"Rut.": "8",
"RUT.": "8",
"Ruth": "8",
"1 S.": "9",
"1 Sa.": "9",
"1 Sam.": "9",
"1 Samuel": "9",
"1 Sm.": "9",
"1S.": "9",
"1Sa.": "9",
"1SA.": "9",
"1Sam.": "9",
"1st Sam.": "9",
"1st Samuel": "9",
"First Sam.": "9",
"First Samuel": "9",
"I Sa.": "9",
"I Sam.": "9",
"2 S.": "10",
"2 Sa.": "10",
"2 Sam.": "10",
"2 Samuel": "10",
"2 Sm.": "10",
"2nd Sam.": "10",
"2nd Samuel": "10",
"2S.": "10",
"2Sa.": "10",
"2SA.": "10",
"2Sam.": "10",
"II Sa.": "10",
"II Sam.": "10",
"Second Sam.": "10",
"Second Samuel": "10",
"1 Kgs.": "11",
"1 Ki.": "11",
"1 Kings": "11",
"1K.": "11",
"1Kg.": "11",
"1Kgs.": "11",
"1Ki.": "11",
"1KI.": "11",
"1Kin.": "11",
"1st Kgs.": "11",
"1st Kings": "11",
"First Kgs.": "11",
"First Kings": "11",
"I Kgs.": "11",
"I Ki.": "11",
"2 Kgs.": "12",
"2 Ki.": "12",
"2 Kings": "12",
"2K.": "12",
"2Kg.": "12",
"2Kgs.": "12",
"2Ki.": "12",
"2KI.": "12",
"2Kin.": "12",
"2nd Kgs.": "12",
"2nd Kings": "12",
"II Kgs.": "12",
"II Ki.": "12",
"Second Kgs.": "12",
"Second Kings": "12",
"1 Ch.": "13",
"1 Chr.": "13",
"1 Chron.": "13",
"1 Chronicles": "13",
"1Ch.": "13",
"1CH.": "13",
"1Chr.": "13",
"1Chron.": "13",
"1st Chron.": "13",
"1st Chronicles": "13",
"First Chron.": "13",
"First Chronicles": "13",
"I Ch.": "13",
"I Chr.": "13",
"I Chron.": "13",
"2 Ch.": "14",
"2 Chr.": "14",
"2 Chron.": "14",
"2 Chronicles": "14",
"2Ch.": "14",
"2CH.": "14",
"2Chr.": "14",
"2Chron.": "14",
"2nd Chron.": "14",
"2nd Chronicles": "14",
"II Ch.": "14",
"II Chr.": "14",
"II Chron.": "14",
"Second Chron.": "14",
"Second Chronicles": "14",
"Ez.": "15",
"Ezr.": "15",
"EZR.": "15",
"Ezra": "15",
"Ne.": "16",
"Neh.": "16",
"NEH.": "16",
"Nehemiah": "16",
"Es.": "17",
"Est.": "17",
"EST.": "17",
"Esth.": "17",
"Esther": "17",
"Jb.": "18",
"Job": "18",
"JOB": "18",
"Ps.": "19",
"Psa.": "19",
"PSA.": "19",
"Psalm": "19",
"Psalms": "19",
"Pslm.": "19",
"Psm.": "19",
"Pr.": "20",
"Pro.": "20",
"PRO.": "20",
"Prov.": "20",
"Proverbs": "20",
"Prv.": "20",
"Ec.": "21",
"Ecc.": "21",
"ECC.": "21",
"Eccl.": "21",
"Eccle.": "21",
"Eccles.": "21",
"Ecclesiastes": "21",
"Qoh.": "21",
"Cant.": "22",
"Canticle of Canticles": "22",
"Canticles": "22",
"Sg.": "22",
"Sng.": "22",
"SNG.": "22",
"So.": "22",
"Son.": "22",
"Song": "22",
"Song of Solomon": "22",
"Song of Songs": "22",
"SOS.": "22",
"Is.": "23",
"Isa.": "23",
"ISA.": "23",
"Isaiah": "23",
"Je.": "24",
"Jer.": "24",
"JER.": "24",
"Jeremiah": "24",
"Jr.": "24",
"La.": "25",
"Lam.": "25",
"LAM.": "25",
"Lamentations": "25",
"Lm.": "25",
"Eze.": "26",
"Ezek.": "26",
"Ezekiel": "26",
"Ezk.": "26",
"EZK.": "26",
"Da.": "27",
"Dan.": "27",
"DAN.": "27",
"Daniel": "27",
"Dn.": "27",
"Ho.": "28",
"Hos.": "28",
"HOS.": "28",
"Hosea": "28",
"Hs.": "28",
"Jl.": "29",
"Joe.": "29",
"Joel": "29",
"Jol.": "29",
"JOL.": "29",
"Am.": "30",
"Amo.": "30",
"AMO.": "30",
"Amos": "30",
"Ob.": "31",
"Oba.": "31",
"OBA.": "31",
"Obad.": "31",
"Obadiah": "31",
"Jnh.": "32",
"Jon.": "32",
"JON.": "32",
"Jonah": "32",
"Mc.": "33",
"Mic.": "33",
"MIC.": "33",
"Micah": "33",
"Na.": "34",
"Nah.": "34",
"Nahum": "34",
"Nam.": "34",
"NAM.": "34",
"Hab.": "35",
"HAB.": "35",
"Habakkuk": "35",
"Hb.": "35",
"Zep.": "36",
"ZEP.": "36",
"Zeph.": "36",
"Zephaniah": "36",
"Zp.": "36",
"Zph.": "36",
"Hag.": "37",
"HAG.": "37",
"Haggai": "37",
"Hg.": "37",
"Zc.": "38",
"Zch.": "38",
"Zec.": "38",
"ZEC.": "38",
"Zech.": "38",
"Zechariah": "38",
"Mal.": "39",
"MAL.": "39",
"Malachi": "39",
"Ml.": "39",
"Mat.": "40",
"MAT.": "40",
"Matt.": "40",
"Matthew": "40",
"Mt.": "40",
"Mar.": "41",
"Mark": "41",
"Mk.": "41",
"Mr.": "41",
"Mrk.": "41",
"MRK.": "41",
"Lk.": "42",
"Luk.": "42",
"LUK.": "42",
"Luke": "42",
"Jhn.": "43",
"JHN.": "43",
"Jn.": "43",
"Joh.": "43",
"John": "43",
"Ac.": "44",
"Act.": "44",
"ACT.": "44",
"Acts": "44",
"Rm.": "45",
"Ro.": "45",
"Rom.": "45",
"ROM.": "45",
"Romans": "45",
"1 Co.": "46",
"1 Cor.": "46",
"1 Corinthians": "46",
"1Co.": "46",
"1CO.": "46",
"1Cor.": "46",
"1Corinthians": "46",
"1st Corinthians": "46",
"First Corinthians": "46",
"I Co.": "46",
"I Cor.": "46",
"I Corinthians": "46",
"2 Co.": "47",
"2 Cor.": "47",
"2 Corinthians": "47",
"2Co.": "47",
"2CO.": "47",
"2Cor.": "47",
"2Corinthians": "47",
"2nd Corinthians": "47",
"II Co.": "47",
"II Cor.": "47",
"II Corinthians": "47",
"Second Corinthians": "47",
"Ga.": "48",
"Gal.": "48",
"GAL.": "48",
"Galatians": "48",
"Gl.": "48",
"Eph.": "49",
"EPH.": "49",
"Ephes.": "49",
"Ephesians": "49",
"Phi.": "50",
"Phil.": "50",
"Philip.": "50",
"Philippians": "50",
"Php.": "50",
"PHP.": "50",
"Pp.": "50",
"Co.": "51",
"Col.": "51",
"COL.": "51",
"Colossians": "51",
"1 Th.": "52",
"1 Thes.": "52",
"1 Thess.": "52",
"1 Thessalonians": "52",
"1st Thess.": "52",
"1st Thessalonians": "52",
"1Th.": "52",
"1TH.": "52",
"1Thes.": "52",
"1Thess.": "52",
"1Thessalonians": "52",
"First Thess.": "52",
"First Thessalonians": "52",
"I Th.": "52",
"I Thes.": "52",
"I Thess.": "52",
"I Thessalonians": "52",
"2 Th.": "53",
"2 Thes.": "53",
"2 Thess.": "53",
"2 Thessalonians": "53",
"2nd Thess.": "53",
"2nd Thessalonians": "53",
"2Th.": "53",
"2TH.": "53",
"2Thes.": "53",
"2Thess.": "53",
"2Thessalonians": "53",
"II Th.": "53",
"II Thes.": "53",
"II Thess.": "53",
"II Thessalonians": "53",
"Second Thess.": "53",
"Second Thessalonians": "53",
"1 Ti.": "54",
"1 Tim.": "54",
"1 Timothy": "54",
"1st Tim.": "54",
"1st Timothy": "54",
"1Ti.": "54",
"1TI.": "54",
"1Tim.": "54",
"1Timothy": "54",
"1Tm.": "54",
"First Tim.": "54",
"First Timothy": "54",
"I Ti.": "54",
"I Tim.": "54",
"I Timothy": "54",
"2 Ti.": "55",
"2 Tim.": "55",
"2 Timothy": "55",
"2nd Tim.": "55",
"2nd Timothy": "55",
"2Ti.": "55",
"2TI.": "55",
"2Tim.": "55",
"2Timothy": "55",
"2Tm.": "55",
"II Ti.": "55",
"II Tim.": "55",
"II Timothy": "55",
"Second Tim.": "55",
"Second Timothy": "55",
"ti.": "56",
"Tit.": "56",
"TIT.": "56",
"Titus": "56",
"Philem.": "57",
"Philemon": "57",
"Phlm.": "57",
"Phm.": "57",
"PHM.": "57",
"Pm.": "57",
"Heb.": "58",
"HEB.": "58",
"Hebrews": "58",
"Jam.": "59",
"James": "59",
"Jas.": "59",
"JAS.": "59",
"Jms.": "59",
"Jm.": "59",
"Js.": "59",
"1 P.": "60",
"1 Pe.": "60",
"1 Pet.": "60",
"1 Peter": "60",
"1 Pt.": "60",
"1P.": "60",
"1Pe.": "60",
"1PE.": "60",
"1Pet.": "60",
"1Peter": "60",
"1Pt.": "60",
"1st Peter": "60",
"First Peter": "60",
"I Pe.": "60",
"I Pet.": "60",
"I Peter": "60",
"I Pt.": "60",
"2 P.": "61",
"2 Pe.": "61",
"2 Pet.": "61",
"2 Peter": "61",
"2 Pt.": "61",
"2nd Peter": "61",
"2P.": "61",
"2Pe.": "61",
"2PE.": "61",
"2Pet.": "61",
"2Peter": "61",
"2Pt.": "61",
"II Pe.": "61",
"II Pet.": "61",
"II Peter": "61",
"II Pt.": "61",
"Second Peter": "61",
"1 J.": "62",
"1 Jhn.": "62",
"1 Jn.": "62",
"1 John": "62",
"1J.": "62",
"1Jhn.": "62",
"1Jn.": "62",
"1JN.": "62",
"1Jo.": "62",
"1Joh.": "62",
"1John": "62",
"1st John": "62",
"First John": "62",
"I Jhn.": "62",
"I Jn.": "62",
"I Jo.": "62",
"I Joh.": "62",
"I John": "62",
"2 J.": "63",
"2 Jhn.": "63",
"2 Jn.": "63",
"2 John": "63",
"2J.": "63",
"2Jhn.": "63",
"2Jn.": "63",
"2JN.": "63",
"2Jo.": "63",
"2Joh.": "63",
"2John": "63",
"2nd John": "63",
"II Jhn.": "63",
"II Jn.": "63",
"II Jo.": "63",
"II Joh.": "63",
"II John": "63",
"Second John": "63",
"3 J.": "64",
"3 Jhn.": "64",
"3 Jn.": "64",
"3 John": "64",
"3J.": "64",
"3Jhn.": "64",
"3Jn.": "64",
"3JN.": "64",
"3Jo.": "64",
"3Joh.": "64",
"3John": "64",
"3rd John": "64",
"III Jhn.": "64",
"III Jn.": "64",
"III Jo.": "64",
"III Joh.": "64",
"III John": "64",
"Third John": "64",
"Jd.": "65",
"Jud.": "65",
"JUD.": "65",
"Jude": "65",
"Apocalypse of John": "66",
"Re.": "66",
"Rev.": "66",
"REV.": "66",
"Revelation": "66",
"Revelation to John": "66",
"Rv.": "66",
"The Revelation": "66",
"Bar.": "70",
"BAR.": "70",
"Baruch": "70",
"Add. Dan.": "71",
"Adddan.": "71",
"AddDan.": "71",
"Additions to Daniel": "71",
"Dag.": "71",
"DAG.": "71",
"DanGr.": "71",
"DanTh.": "71",
"Dnt.": "71",
"DNT.": "71",
"Azariah": "72",
"Pr. Az.": "72",
"Pr. Azar.": "72",
"Prayer of Azariah": "72",
"PrAzar.": "72",
"S3Y.": "72",
"Sg. of 3 Childr.": "72",
"Sg. Three": "72",
"Song of the Three Holy Children": "72",
"Song of Thr.": "72",
"Song of Three": "72",
"Song of Three Children": "72",
"Song of Three Jews": "72",
"Song of Three Youths": "72",
"Song Thr.": "72",
"The Song of the Three Holy Children": "72",
"The Song of Three Jews": "72",
"The Song of Three Youths": "72",
"Bel": "73",
"BEL": "73",
"Bel and Dr.": "73",
"Bel and the Dragon": "73",
"Bel.": "73",
"BelTh.": "73",
"Blt.": "73",
"BLT.": "73",
"Sst.": "75",
"SST.": "75",
"Sus.": "75",
"SUS.": "75",
"Susanna": "75",
"SusTh.": "75",
"1 Esd.": "76",
"1 Esdr.": "76",
"1 Esdras": "76",
"1Es.": "76",
"1ES.": "76",
"1Esd.": "76",
"1Esdr.": "76",
"1Esdras.": "76",
"1st Esdras": "76",
"First Esdras": "76",
"I Es.": "76",
"I Esd.": "76",
"I Esdr.": "76",
"I Esdras": "76",
"2 Esd.": "77",
"2 Esdr.": "77",
"2 Esdras": "77",
"2Es.": "77",
"2ES.": "77",
"2Esd.": "77",
"2Esdr.": "77",
"2Esdras": "77",
"2nd Esdras": "77",
"II Es.": "77",
"II Esd.": "77",
"II Esdr.": "77",
"II Esdras": "77",
"Second Esdras": "77",
"Add. Es.": "78",
"Add. Esth.": "78",
"AddEsth.": "78",
"Additions to Esther": "78",
"Ade.": "78",
"ADE.": "78",
"AEs.": "78",
"Esg.": "78",
"ESG.": "78",
"EsthGr.": "78",
"Rest of Esther": "78",
"The Rest of Esther": "78",
"Ep. Jer.": "79",
"EpJer.": "79",
"Let. Jer.": "79",
"Letter of Jeremiah": "79",
"Lje.": "79",
"LJe.": "79",
"LJE.": "79",
"Ltr. Jer.": "79",
"Jdt.": "80",
"JDT.": "80",
"Jdth.": "80",
"Jth.": "80",
"Judith": "80",
"1 Mac.": "81",
"1 Macc.": "81",
"1 Maccabees": "81",
"1M.": "81",
"1Ma.": "81",
"1MA.": "81",
"1Mac.": "81",
"1Macc.": "81",
"1Maccabees": "81",
"1st Maccabees": "81",
"First Maccabees": "81",
"I Ma.": "81",
"I Mac.": "81",
"I Macc.": "81",
"I Maccabees": "81",
"2 Mac.": "82",
"2 Macc.": "82",
"2 Maccabees": "82",
"2M.": "82",
"2Ma.": "82",
"2MA.": "82",
"2Mac.": "82",
"2Macc.": "82",
"2Maccabees": "82",
"2nd Maccabees": "82",
"II Ma.": "82",
"II Mac.": "82",
"II Macc.": "82",
"II Maccabees": "82",
"Second Maccabees": "82",
"3 Mac.": "83",
"3 Macc.": "83",
"3 Maccabees": "83",
"3M.": "83",
"3Ma.": "83",
"3MA.": "83",
"3Mac.": "83",
"3Macc.": "83",
"3Maccabees": "83",
"3rd Maccabees": "83",
"III Ma.": "83",
"III Mac.": "83",
"III Macc.": "83",
"III Maccabees": "83",
"Third Maccabees": "83",
"4 Mac.": "84",
"4 Macc.": "84",
"4 Maccabees": "84",
"4M.": "84",
"4Ma.": "84",
"4MA.": "84",
"4Mac.": "84",
"4Macc.": "84",
"4Maccabees": "84",
"4th Maccabees": "84",
"Fourth Maccabees": "84",
"IV Ma.": "84",
"IV Mac.": "84",
"IV Macc.": "84",
"IV Maccabees": "84",
"Man.": "85",
"MAN.": "85",
"PMa.": "85",
"Pr. Man": "85",
"Pr. of Man.": "85",
"Prayer of Manasseh": "85",
"Prayer of Manasses": "85",
"PrMan.": "85",
"Add. Ps.": "86",
"Add. Psalm": "86",
"Additional Psalm": "86",
"AddPs.": "86",
"Ps. 151": "86",
"Ps2.": "86",
"PS2.": "86",
"Ps151": "86",
"Psalm 151": "86",
"Ecclesiasticus": "87",
"Ecclus.": "87",
"Sir.": "87",
"SIR.": "87",
"Sirach": "87",
"Sirp.": "87",
"SirP.": "87",
"Tb.": "88",
"Tbs.": "88",
"TBS.": "88",
"TOB": "88",
"Tob.": "88",
"Tobit": "88",
"TobS.": "88",
"Wis.": "89",
"WIS.": "89",
"Wisd. of Sol.": "89",
"Wisdom": "89",
"Wisdom of Solomon": "89",
"Ws.": "89",