codexparser 0.0.85 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/CodexParser.js +301 -187
- package/src/abbr.js +1 -1
- package/src/bible.js +1 -0
- package/src/chapterVerseCombine.js +63 -0
- package/src/chapter_verses/1chronicles.js +31 -0
- package/src/chapter_verses/1corinthians.js +18 -0
- package/src/chapter_verses/1john.js +7 -0
- package/src/chapter_verses/1kings.js +24 -0
- package/src/chapter_verses/1peter.js +7 -0
- package/src/chapter_verses/1samuel.js +33 -0
- package/src/chapter_verses/1thessalonians.js +7 -0
- package/src/chapter_verses/1timothy.js +8 -0
- package/src/chapter_verses/2chronicles.js +38 -0
- package/src/chapter_verses/2corinthians.js +15 -0
- package/src/chapter_verses/2kings.js +27 -0
- package/src/chapter_verses/2peter.js +5 -0
- package/src/chapter_verses/2samuel.js +26 -0
- package/src/chapter_verses/2thessalonians.js +5 -0
- package/src/chapter_verses/2timothy.js +6 -0
- package/src/chapter_verses/acts.js +30 -0
- package/src/chapter_verses/amos.js +11 -0
- package/src/chapter_verses/colossians.js +6 -0
- package/src/chapter_verses/daniel.js +14 -0
- package/src/chapter_verses/deuteronomy.js +36 -0
- package/src/chapter_verses/ecclesiastes.js +14 -0
- package/src/chapter_verses/ephesians.js +8 -0
- package/src/chapter_verses/esther.js +12 -0
- package/src/chapter_verses/exodus.js +42 -0
- package/src/chapter_verses/ezekiel.js +50 -0
- package/src/chapter_verses/ezra.js +12 -0
- package/src/chapter_verses/galatians.js +8 -0
- package/src/chapter_verses/genesis.js +52 -0
- package/src/chapter_verses/habakkuk.js +5 -0
- package/src/chapter_verses/haggai.js +4 -0
- package/src/chapter_verses/hebrews.js +15 -0
- package/src/chapter_verses/hosea.js +16 -0
- package/src/chapter_verses/isaiah.js +68 -0
- package/src/chapter_verses/james.js +7 -0
- package/src/chapter_verses/jeremiah.js +54 -0
- package/src/chapter_verses/job.js +44 -0
- package/src/chapter_verses/joel.js +5 -0
- package/src/chapter_verses/john.js +23 -0
- package/src/chapter_verses/jonah.js +6 -0
- package/src/chapter_verses/joshua.js +26 -0
- package/src/chapter_verses/judges.js +23 -0
- package/src/chapter_verses/lamentations.js +7 -0
- package/src/chapter_verses/leviticus.js +29 -0
- package/src/chapter_verses/luke.js +26 -0
- package/src/chapter_verses/malachi.js +6 -0
- package/src/chapter_verses/mark.js +18 -0
- package/src/chapter_verses/matthew.js +30 -0
- package/src/chapter_verses/micah.js +9 -0
- package/src/chapter_verses/nahum.js +5 -0
- package/src/chapter_verses/nehemiah.js +15 -0
- package/src/chapter_verses/numbers.js +38 -0
- package/src/chapter_verses/philippians.js +6 -0
- package/src/chapter_verses/proverbs.js +33 -0
- package/src/chapter_verses/psalms.js +152 -0
- package/src/chapter_verses/revelation.js +24 -0
- package/src/chapter_verses/romans.js +18 -0
- package/src/chapter_verses/ruth.js +6 -0
- package/src/chapter_verses/songs.js +10 -0
- package/src/chapter_verses/titus.js +5 -0
- package/src/chapter_verses/zechariah.js +16 -0
- package/src/chapter_verses/zephaniah.js +5 -0
- package/src/versifications/1chronicles.js +592 -0
- package/src/versifications/1kings.js +492 -0
- package/src/versifications/1samuel.js +202 -0
- package/src/versifications/2chronicles.js +167 -0
- package/src/versifications/2samuel.js +222 -0
- package/src/versifications/daniel.js +332 -0
- package/src/versifications/deuteronomy.js +347 -0
- package/src/versifications/ecclesiastes.js +102 -0
- package/src/versifications/exodus.js +837 -0
- package/src/versifications/ezekiel.js +222 -0
- package/src/versifications/genesis.js +192 -0
- package/src/versifications/hosea.js +207 -0
- package/src/versifications/isaiah.js +167 -0
- package/src/versifications/jeremiah.js +3892 -0
- package/src/versifications/job.js +172 -0
- package/src/versifications/joel.js +132 -0
- package/src/versifications/jonah.js +57 -0
- package/src/versifications/joshua.js +22 -0
- package/src/versifications/leviticus.js +152 -0
- package/src/versifications/malachi.js +32 -0
- package/src/versifications/micah.js +77 -0
- package/src/versifications/nahum.js +72 -0
- package/src/versifications/nehemiah.js +312 -0
- package/src/versifications/numbers.js +382 -0
- package/src/versifications/proverbs.js +17 -0
- package/src/versifications/psalms.js +12059 -0
- package/src/versifications/song.js +72 -0
- package/src/versifications/zechariah.js +87 -0
- package/src/versified.js +28 -619
- package/all-scripture-test.js +0 -19
- package/bible-loopthrough-test.js +0 -8
- package/chapter-range-test.js +0 -5
- package/find-test.js +0 -20
- package/jstester.js +0 -329
- package/mcleanTest.js +0 -14
- package/quicktest.js +0 -5
- package/regex-tester.js +0 -32
- package/scan-test.js +0 -10
- package/src/CodexParser-javascript.js +0 -317
- package/src/bookRegex.regex +0 -1
- package/sub-verse-scripture-test.js +0 -16
- package/tests/abbreviated_verses.js +0 -8
- package/tests/bcv-single-test.js +0 -19
- package/tests/bcv_test.js +0 -14
- package/tests/find.js +0 -8
- package/tests/single.js +0 -10
- package/tests/versification.js +0 -8
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"2:1": {
|
|
3
|
+
lxx: "1:18",
|
|
4
|
+
mt: "1:18",
|
|
5
|
+
eng: "2:1",
|
|
6
|
+
},
|
|
7
|
+
"2:2": {
|
|
8
|
+
lxx: "2:1",
|
|
9
|
+
mt: "2:1",
|
|
10
|
+
eng: "2:2",
|
|
11
|
+
},
|
|
12
|
+
"2:3": {
|
|
13
|
+
lxx: "2:2",
|
|
14
|
+
mt: "2:2",
|
|
15
|
+
eng: "2:3",
|
|
16
|
+
},
|
|
17
|
+
"2:4": {
|
|
18
|
+
lxx: "2:3",
|
|
19
|
+
mt: "2:3",
|
|
20
|
+
eng: "2:4",
|
|
21
|
+
},
|
|
22
|
+
"2:5": {
|
|
23
|
+
lxx: "2:4",
|
|
24
|
+
mt: "2:4",
|
|
25
|
+
eng: "2:5",
|
|
26
|
+
},
|
|
27
|
+
"2:6": {
|
|
28
|
+
lxx: "2:5",
|
|
29
|
+
mt: "2:5",
|
|
30
|
+
eng: "2:6",
|
|
31
|
+
},
|
|
32
|
+
"2:7": {
|
|
33
|
+
lxx: "2:6",
|
|
34
|
+
mt: "2:6",
|
|
35
|
+
eng: "2:7",
|
|
36
|
+
},
|
|
37
|
+
"2:8": {
|
|
38
|
+
lxx: "2:7",
|
|
39
|
+
mt: "2:7",
|
|
40
|
+
eng: "2:8",
|
|
41
|
+
},
|
|
42
|
+
"2:9": {
|
|
43
|
+
lxx: "2:8",
|
|
44
|
+
mt: "2:8",
|
|
45
|
+
eng: "2:9",
|
|
46
|
+
},
|
|
47
|
+
"2:10": {
|
|
48
|
+
lxx: "2:9",
|
|
49
|
+
mt: "2:9",
|
|
50
|
+
eng: "2:10",
|
|
51
|
+
},
|
|
52
|
+
"2:11": {
|
|
53
|
+
lxx: "2:10",
|
|
54
|
+
mt: "2:10",
|
|
55
|
+
eng: "2:11",
|
|
56
|
+
},
|
|
57
|
+
"2:12": {
|
|
58
|
+
lxx: "2:11",
|
|
59
|
+
mt: "2:11",
|
|
60
|
+
eng: "2:12",
|
|
61
|
+
},
|
|
62
|
+
"2:13": {
|
|
63
|
+
lxx: "2:12",
|
|
64
|
+
mt: "2:12",
|
|
65
|
+
eng: "2:13",
|
|
66
|
+
},
|
|
67
|
+
"2:14": {
|
|
68
|
+
lxx: "2:13",
|
|
69
|
+
mt: "2:13",
|
|
70
|
+
eng: "2:14",
|
|
71
|
+
},
|
|
72
|
+
"2:15": {
|
|
73
|
+
lxx: "2:14",
|
|
74
|
+
mt: "2:14",
|
|
75
|
+
eng: "2:15",
|
|
76
|
+
},
|
|
77
|
+
"2:16": {
|
|
78
|
+
lxx: "2:15",
|
|
79
|
+
mt: "2:15",
|
|
80
|
+
eng: "2:16",
|
|
81
|
+
},
|
|
82
|
+
"2:17": {
|
|
83
|
+
lxx: "2:16",
|
|
84
|
+
mt: "2:16",
|
|
85
|
+
eng: "2:17",
|
|
86
|
+
},
|
|
87
|
+
"2:18": {
|
|
88
|
+
lxx: "2:17",
|
|
89
|
+
mt: "2:17",
|
|
90
|
+
eng: "2:18",
|
|
91
|
+
},
|
|
92
|
+
"14:1": {
|
|
93
|
+
lxx: "13:23",
|
|
94
|
+
mt: "13:23",
|
|
95
|
+
eng: "14:1",
|
|
96
|
+
},
|
|
97
|
+
"14:2": {
|
|
98
|
+
lxx: "14:1",
|
|
99
|
+
mt: "14:1",
|
|
100
|
+
eng: "14:2",
|
|
101
|
+
},
|
|
102
|
+
"14:3": {
|
|
103
|
+
lxx: "14:2",
|
|
104
|
+
mt: "14:2",
|
|
105
|
+
eng: "14:3",
|
|
106
|
+
},
|
|
107
|
+
"14:4": {
|
|
108
|
+
lxx: "14:3",
|
|
109
|
+
mt: "14:3",
|
|
110
|
+
eng: "14:4",
|
|
111
|
+
},
|
|
112
|
+
"14:5": {
|
|
113
|
+
lxx: "14:4",
|
|
114
|
+
mt: "14:4",
|
|
115
|
+
eng: "14:5",
|
|
116
|
+
},
|
|
117
|
+
"14:6": {
|
|
118
|
+
lxx: "14:5",
|
|
119
|
+
mt: "14:5",
|
|
120
|
+
eng: "14:6",
|
|
121
|
+
},
|
|
122
|
+
"14:7": {
|
|
123
|
+
lxx: "14:6",
|
|
124
|
+
mt: "14:6",
|
|
125
|
+
eng: "14:7",
|
|
126
|
+
},
|
|
127
|
+
"14:8": {
|
|
128
|
+
lxx: "14:7",
|
|
129
|
+
mt: "14:7",
|
|
130
|
+
eng: "14:8",
|
|
131
|
+
},
|
|
132
|
+
"14:9": {
|
|
133
|
+
lxx: "14:8",
|
|
134
|
+
mt: "14:8",
|
|
135
|
+
eng: "14:9",
|
|
136
|
+
},
|
|
137
|
+
"14:10": {
|
|
138
|
+
lxx: "14:9",
|
|
139
|
+
mt: "14:9",
|
|
140
|
+
eng: "14:10",
|
|
141
|
+
},
|
|
142
|
+
"14:11": {
|
|
143
|
+
lxx: "14:10",
|
|
144
|
+
mt: "14:10",
|
|
145
|
+
eng: "14:11",
|
|
146
|
+
},
|
|
147
|
+
"14:12": {
|
|
148
|
+
lxx: "14:11",
|
|
149
|
+
mt: "14:11",
|
|
150
|
+
eng: "14:12",
|
|
151
|
+
},
|
|
152
|
+
"14:13": {
|
|
153
|
+
lxx: "14:12",
|
|
154
|
+
mt: "14:12",
|
|
155
|
+
eng: "14:13",
|
|
156
|
+
},
|
|
157
|
+
"14:14": {
|
|
158
|
+
lxx: "14:13",
|
|
159
|
+
mt: "14:13",
|
|
160
|
+
eng: "14:14",
|
|
161
|
+
},
|
|
162
|
+
"14:15": {
|
|
163
|
+
lxx: "14:14",
|
|
164
|
+
mt: "14:14",
|
|
165
|
+
eng: "14:15",
|
|
166
|
+
},
|
|
167
|
+
}
|
|
@@ -0,0 +1,222 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"18:33": {
|
|
3
|
+
lxx: "19:1",
|
|
4
|
+
mt: "18:33",
|
|
5
|
+
eng: "18:33",
|
|
6
|
+
},
|
|
7
|
+
"19:1": {
|
|
8
|
+
lxx: "19:2",
|
|
9
|
+
mt: "19:2",
|
|
10
|
+
eng: "19:1",
|
|
11
|
+
},
|
|
12
|
+
"19:2": {
|
|
13
|
+
lxx: "19:3",
|
|
14
|
+
mt: "19:3",
|
|
15
|
+
eng: "19:2",
|
|
16
|
+
},
|
|
17
|
+
"19:3": {
|
|
18
|
+
lxx: "19:4",
|
|
19
|
+
mt: "19:4",
|
|
20
|
+
eng: "19:3",
|
|
21
|
+
},
|
|
22
|
+
"19:4": {
|
|
23
|
+
lxx: "19:5",
|
|
24
|
+
mt: "19:5",
|
|
25
|
+
eng: "19:4",
|
|
26
|
+
},
|
|
27
|
+
"19:5": {
|
|
28
|
+
lxx: "19:6",
|
|
29
|
+
mt: "19:6",
|
|
30
|
+
eng: "19:5",
|
|
31
|
+
},
|
|
32
|
+
"19:6": {
|
|
33
|
+
lxx: "19:7",
|
|
34
|
+
mt: "19:7",
|
|
35
|
+
eng: "19:6",
|
|
36
|
+
},
|
|
37
|
+
"19:7": {
|
|
38
|
+
lxx: "19:8",
|
|
39
|
+
mt: "19:8",
|
|
40
|
+
eng: "19:7",
|
|
41
|
+
},
|
|
42
|
+
"19:8": {
|
|
43
|
+
lxx: "19:9",
|
|
44
|
+
mt: "19:9",
|
|
45
|
+
eng: "19:8",
|
|
46
|
+
},
|
|
47
|
+
"19:9": {
|
|
48
|
+
lxx: "19:10",
|
|
49
|
+
mt: "19:10",
|
|
50
|
+
eng: "19:9",
|
|
51
|
+
},
|
|
52
|
+
"19:10": {
|
|
53
|
+
lxx: "19:11",
|
|
54
|
+
mt: "19:11",
|
|
55
|
+
eng: "19:10",
|
|
56
|
+
},
|
|
57
|
+
"19:11": {
|
|
58
|
+
lxx: "19:12",
|
|
59
|
+
mt: "19:12",
|
|
60
|
+
eng: "19:11",
|
|
61
|
+
},
|
|
62
|
+
"19:12": {
|
|
63
|
+
lxx: "19:13",
|
|
64
|
+
mt: "19:13",
|
|
65
|
+
eng: "19:12",
|
|
66
|
+
},
|
|
67
|
+
"19:13": {
|
|
68
|
+
lxx: "19:14",
|
|
69
|
+
mt: "19:14",
|
|
70
|
+
eng: "19:13",
|
|
71
|
+
},
|
|
72
|
+
"19:14": {
|
|
73
|
+
lxx: "19:15",
|
|
74
|
+
mt: "19:15",
|
|
75
|
+
eng: "19:14",
|
|
76
|
+
},
|
|
77
|
+
"19:15": {
|
|
78
|
+
lxx: "19:16",
|
|
79
|
+
mt: "19:16",
|
|
80
|
+
eng: "19:15",
|
|
81
|
+
},
|
|
82
|
+
"19:16": {
|
|
83
|
+
lxx: "19:17",
|
|
84
|
+
mt: "19:17",
|
|
85
|
+
eng: "19:16",
|
|
86
|
+
},
|
|
87
|
+
"19:17": {
|
|
88
|
+
lxx: "19:18",
|
|
89
|
+
mt: "19:18",
|
|
90
|
+
eng: "19:17",
|
|
91
|
+
},
|
|
92
|
+
"19:18": {
|
|
93
|
+
lxx: "19:19",
|
|
94
|
+
mt: "19:19",
|
|
95
|
+
eng: "19:18",
|
|
96
|
+
},
|
|
97
|
+
"19:19": {
|
|
98
|
+
lxx: "19:20",
|
|
99
|
+
mt: "19:20",
|
|
100
|
+
eng: "19:19",
|
|
101
|
+
},
|
|
102
|
+
"19:20": {
|
|
103
|
+
lxx: "19:21",
|
|
104
|
+
mt: "19:21",
|
|
105
|
+
eng: "19:20",
|
|
106
|
+
},
|
|
107
|
+
"19:21": {
|
|
108
|
+
lxx: "19:22",
|
|
109
|
+
mt: "19:22",
|
|
110
|
+
eng: "19:21",
|
|
111
|
+
},
|
|
112
|
+
"19:22": {
|
|
113
|
+
lxx: "19:23",
|
|
114
|
+
mt: "19:23",
|
|
115
|
+
eng: "19:22",
|
|
116
|
+
},
|
|
117
|
+
"19:23": {
|
|
118
|
+
lxx: "19:24",
|
|
119
|
+
mt: "19:24",
|
|
120
|
+
eng: "19:23",
|
|
121
|
+
},
|
|
122
|
+
"19:24": {
|
|
123
|
+
lxx: "19:25",
|
|
124
|
+
mt: "19:25",
|
|
125
|
+
eng: "19:24",
|
|
126
|
+
},
|
|
127
|
+
"19:25": {
|
|
128
|
+
lxx: "19:26",
|
|
129
|
+
mt: "19:26",
|
|
130
|
+
eng: "19:25",
|
|
131
|
+
},
|
|
132
|
+
"19:26": {
|
|
133
|
+
lxx: "19:27",
|
|
134
|
+
mt: "19:27",
|
|
135
|
+
eng: "19:26",
|
|
136
|
+
},
|
|
137
|
+
"19:27": {
|
|
138
|
+
lxx: "19:28",
|
|
139
|
+
mt: "19:28",
|
|
140
|
+
eng: "19:27",
|
|
141
|
+
},
|
|
142
|
+
"19:28": {
|
|
143
|
+
lxx: "19:29",
|
|
144
|
+
mt: "19:29",
|
|
145
|
+
eng: "19:28",
|
|
146
|
+
},
|
|
147
|
+
"19:29": {
|
|
148
|
+
lxx: "19:30",
|
|
149
|
+
mt: "19:30",
|
|
150
|
+
eng: "19:29",
|
|
151
|
+
},
|
|
152
|
+
"19:30": {
|
|
153
|
+
lxx: "19:31",
|
|
154
|
+
mt: "19:31",
|
|
155
|
+
eng: "19:30",
|
|
156
|
+
},
|
|
157
|
+
"19:31": {
|
|
158
|
+
lxx: "19:32",
|
|
159
|
+
mt: "19:32",
|
|
160
|
+
eng: "19:31",
|
|
161
|
+
},
|
|
162
|
+
"19:32": {
|
|
163
|
+
lxx: "19:33",
|
|
164
|
+
mt: "19:33",
|
|
165
|
+
eng: "19:32",
|
|
166
|
+
},
|
|
167
|
+
"19:33": {
|
|
168
|
+
lxx: "19:34",
|
|
169
|
+
mt: "19:34",
|
|
170
|
+
eng: "19:33",
|
|
171
|
+
},
|
|
172
|
+
"19:34": {
|
|
173
|
+
lxx: "19:35",
|
|
174
|
+
mt: "19:35",
|
|
175
|
+
eng: "19:34",
|
|
176
|
+
},
|
|
177
|
+
"19:35": {
|
|
178
|
+
lxx: "19:36",
|
|
179
|
+
mt: "19:36",
|
|
180
|
+
eng: "19:35",
|
|
181
|
+
},
|
|
182
|
+
"19:36": {
|
|
183
|
+
lxx: "19:37",
|
|
184
|
+
mt: "19:37",
|
|
185
|
+
eng: "19:36",
|
|
186
|
+
},
|
|
187
|
+
"19:37": {
|
|
188
|
+
lxx: "19:38",
|
|
189
|
+
mt: "19:38",
|
|
190
|
+
eng: "19:37",
|
|
191
|
+
},
|
|
192
|
+
"19:38": {
|
|
193
|
+
lxx: "19:39",
|
|
194
|
+
mt: "19:39",
|
|
195
|
+
eng: "19:38",
|
|
196
|
+
},
|
|
197
|
+
"19:39": {
|
|
198
|
+
lxx: "19:40",
|
|
199
|
+
mt: "19:40",
|
|
200
|
+
eng: "19:39",
|
|
201
|
+
},
|
|
202
|
+
"19:40": {
|
|
203
|
+
lxx: "19:41",
|
|
204
|
+
mt: "19:41",
|
|
205
|
+
eng: "19:40",
|
|
206
|
+
},
|
|
207
|
+
"19:41": {
|
|
208
|
+
lxx: "19:42",
|
|
209
|
+
mt: "19:42",
|
|
210
|
+
eng: "19:41",
|
|
211
|
+
},
|
|
212
|
+
"19:42": {
|
|
213
|
+
lxx: "19:43",
|
|
214
|
+
mt: "19:43",
|
|
215
|
+
eng: "19:42",
|
|
216
|
+
},
|
|
217
|
+
"19:43": {
|
|
218
|
+
lxx: "19:44",
|
|
219
|
+
mt: "19:44",
|
|
220
|
+
eng: "19:43",
|
|
221
|
+
},
|
|
222
|
+
}
|
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
"4:1": {
|
|
3
|
+
lxx: "3:31",
|
|
4
|
+
mt: "3:31",
|
|
5
|
+
eng: "4:1",
|
|
6
|
+
},
|
|
7
|
+
"4:2": {
|
|
8
|
+
lxx: "3:32",
|
|
9
|
+
mt: "3:32",
|
|
10
|
+
eng: "4:2",
|
|
11
|
+
},
|
|
12
|
+
"4:3": {
|
|
13
|
+
lxx: "3:33",
|
|
14
|
+
mt: "3:33",
|
|
15
|
+
eng: "4:3",
|
|
16
|
+
},
|
|
17
|
+
"4:4": {
|
|
18
|
+
lxx: "4:4",
|
|
19
|
+
mt: "4:1",
|
|
20
|
+
eng: "4:4",
|
|
21
|
+
},
|
|
22
|
+
"4:5": {
|
|
23
|
+
lxx: "4:5",
|
|
24
|
+
mt: "4:2",
|
|
25
|
+
eng: "4:5",
|
|
26
|
+
},
|
|
27
|
+
"4:6": {
|
|
28
|
+
lxx: "4:6",
|
|
29
|
+
mt: "4:3",
|
|
30
|
+
eng: "4:6",
|
|
31
|
+
},
|
|
32
|
+
"4:7": {
|
|
33
|
+
lxx: "4:7",
|
|
34
|
+
mt: "4:4",
|
|
35
|
+
eng: "4:7",
|
|
36
|
+
},
|
|
37
|
+
"4:8": {
|
|
38
|
+
lxx: "4:8",
|
|
39
|
+
mt: "4:5",
|
|
40
|
+
eng: "4:8",
|
|
41
|
+
},
|
|
42
|
+
"4:9": {
|
|
43
|
+
lxx: "4:9",
|
|
44
|
+
mt: "4:6",
|
|
45
|
+
eng: "4:9",
|
|
46
|
+
},
|
|
47
|
+
"4:10": {
|
|
48
|
+
lxx: "4:10",
|
|
49
|
+
mt: "4:7",
|
|
50
|
+
eng: "4:10",
|
|
51
|
+
},
|
|
52
|
+
"4:11": {
|
|
53
|
+
lxx: "4:11",
|
|
54
|
+
mt: "4:8",
|
|
55
|
+
eng: "4:11",
|
|
56
|
+
},
|
|
57
|
+
"4:12": {
|
|
58
|
+
lxx: "4:12",
|
|
59
|
+
mt: "4:9",
|
|
60
|
+
eng: "4:12",
|
|
61
|
+
},
|
|
62
|
+
"4:13": {
|
|
63
|
+
lxx: "4:13",
|
|
64
|
+
mt: "4:10",
|
|
65
|
+
eng: "4:13",
|
|
66
|
+
},
|
|
67
|
+
"4:14": {
|
|
68
|
+
lxx: "4:14",
|
|
69
|
+
mt: "4:11",
|
|
70
|
+
eng: "4:14",
|
|
71
|
+
},
|
|
72
|
+
"4:15": {
|
|
73
|
+
lxx: "4:15",
|
|
74
|
+
mt: "4:12",
|
|
75
|
+
eng: "4:15",
|
|
76
|
+
},
|
|
77
|
+
"4:16": {
|
|
78
|
+
lxx: "4:16",
|
|
79
|
+
mt: "4:13",
|
|
80
|
+
eng: "4:16",
|
|
81
|
+
},
|
|
82
|
+
"4:17": {
|
|
83
|
+
lxx: "4:17",
|
|
84
|
+
mt: "4:14",
|
|
85
|
+
eng: "4:17",
|
|
86
|
+
},
|
|
87
|
+
"4:18": {
|
|
88
|
+
lxx: "4:18",
|
|
89
|
+
mt: "4:15",
|
|
90
|
+
eng: "4:18",
|
|
91
|
+
},
|
|
92
|
+
"4:19": {
|
|
93
|
+
lxx: "4:19",
|
|
94
|
+
mt: "4:16",
|
|
95
|
+
eng: "4:19",
|
|
96
|
+
},
|
|
97
|
+
"4:20": {
|
|
98
|
+
lxx: "4:20",
|
|
99
|
+
mt: "4:17",
|
|
100
|
+
eng: "4:20",
|
|
101
|
+
},
|
|
102
|
+
"4:21": {
|
|
103
|
+
lxx: "4:21",
|
|
104
|
+
mt: "4:18",
|
|
105
|
+
eng: "4:21",
|
|
106
|
+
},
|
|
107
|
+
"4:22": {
|
|
108
|
+
lxx: "4:22",
|
|
109
|
+
mt: "4:19",
|
|
110
|
+
eng: "4:22",
|
|
111
|
+
},
|
|
112
|
+
"4:23": {
|
|
113
|
+
lxx: "4:23",
|
|
114
|
+
mt: "4:20",
|
|
115
|
+
eng: "4:23",
|
|
116
|
+
},
|
|
117
|
+
"4:24": {
|
|
118
|
+
lxx: "4:24",
|
|
119
|
+
mt: "4:21",
|
|
120
|
+
eng: "4:24",
|
|
121
|
+
},
|
|
122
|
+
"4:25": {
|
|
123
|
+
lxx: "4:25",
|
|
124
|
+
mt: "4:22",
|
|
125
|
+
eng: "4:25",
|
|
126
|
+
},
|
|
127
|
+
"4:26": {
|
|
128
|
+
lxx: "4:26",
|
|
129
|
+
mt: "4:23",
|
|
130
|
+
eng: "4:26",
|
|
131
|
+
},
|
|
132
|
+
"4:27": {
|
|
133
|
+
lxx: "4:27",
|
|
134
|
+
mt: "4:24",
|
|
135
|
+
eng: "4:27",
|
|
136
|
+
},
|
|
137
|
+
"4:28": {
|
|
138
|
+
lxx: "4:28",
|
|
139
|
+
mt: "4:25",
|
|
140
|
+
eng: "4:28",
|
|
141
|
+
},
|
|
142
|
+
"4:29": {
|
|
143
|
+
lxx: "4:29",
|
|
144
|
+
mt: "4:26",
|
|
145
|
+
eng: "4:29",
|
|
146
|
+
},
|
|
147
|
+
"4:30": {
|
|
148
|
+
lxx: "4:30",
|
|
149
|
+
mt: "4:27",
|
|
150
|
+
eng: "4:30",
|
|
151
|
+
},
|
|
152
|
+
"4:31": {
|
|
153
|
+
lxx: "4:31",
|
|
154
|
+
mt: "4:28",
|
|
155
|
+
eng: "4:31",
|
|
156
|
+
},
|
|
157
|
+
"4:32": {
|
|
158
|
+
lxx: "4:32",
|
|
159
|
+
mt: "4:29",
|
|
160
|
+
eng: "4:32",
|
|
161
|
+
},
|
|
162
|
+
"4:33": {
|
|
163
|
+
lxx: "4:33",
|
|
164
|
+
mt: "4:30",
|
|
165
|
+
eng: "4:33",
|
|
166
|
+
},
|
|
167
|
+
"4:34": {
|
|
168
|
+
lxx: "4:34",
|
|
169
|
+
mt: "4:31",
|
|
170
|
+
eng: "4:34",
|
|
171
|
+
},
|
|
172
|
+
"4:35": {
|
|
173
|
+
lxx: "4:35",
|
|
174
|
+
mt: "4:32",
|
|
175
|
+
eng: "4:35",
|
|
176
|
+
},
|
|
177
|
+
"4:36": {
|
|
178
|
+
lxx: "4:36",
|
|
179
|
+
mt: "4:33",
|
|
180
|
+
eng: "4:36",
|
|
181
|
+
},
|
|
182
|
+
"4:37": {
|
|
183
|
+
lxx: "4:37",
|
|
184
|
+
mt: "4:34",
|
|
185
|
+
eng: "4:37",
|
|
186
|
+
},
|
|
187
|
+
"5:31": {
|
|
188
|
+
lxx: "6:1",
|
|
189
|
+
mt: "6:1",
|
|
190
|
+
eng: "5:31",
|
|
191
|
+
},
|
|
192
|
+
"6:1": {
|
|
193
|
+
lxx: "6:2",
|
|
194
|
+
mt: "6:2",
|
|
195
|
+
eng: "6:1",
|
|
196
|
+
},
|
|
197
|
+
"6:2": {
|
|
198
|
+
lxx: "6:3",
|
|
199
|
+
mt: "6:3",
|
|
200
|
+
eng: "6:2",
|
|
201
|
+
},
|
|
202
|
+
"6:3": {
|
|
203
|
+
lxx: "6:4",
|
|
204
|
+
mt: "6:4",
|
|
205
|
+
eng: "6:3",
|
|
206
|
+
},
|
|
207
|
+
"6:4": {
|
|
208
|
+
lxx: "6:5",
|
|
209
|
+
mt: "6:5",
|
|
210
|
+
eng: "6:4",
|
|
211
|
+
},
|
|
212
|
+
"6:5": {
|
|
213
|
+
lxx: "6:6",
|
|
214
|
+
mt: "6:6",
|
|
215
|
+
eng: "6:5",
|
|
216
|
+
},
|
|
217
|
+
"6:6": {
|
|
218
|
+
lxx: "6:7",
|
|
219
|
+
mt: "6:7",
|
|
220
|
+
eng: "6:6",
|
|
221
|
+
},
|
|
222
|
+
"6:7": {
|
|
223
|
+
lxx: "6:8",
|
|
224
|
+
mt: "6:8",
|
|
225
|
+
eng: "6:7",
|
|
226
|
+
},
|
|
227
|
+
"6:8": {
|
|
228
|
+
lxx: "6:9",
|
|
229
|
+
mt: "6:9",
|
|
230
|
+
eng: "6:8",
|
|
231
|
+
},
|
|
232
|
+
"6:9": {
|
|
233
|
+
lxx: "6:10",
|
|
234
|
+
mt: "6:10",
|
|
235
|
+
eng: "6:9",
|
|
236
|
+
},
|
|
237
|
+
"6:10": {
|
|
238
|
+
lxx: "6:11",
|
|
239
|
+
mt: "6:11",
|
|
240
|
+
eng: "6:10",
|
|
241
|
+
},
|
|
242
|
+
"6:11": {
|
|
243
|
+
lxx: "6:12",
|
|
244
|
+
mt: "6:12",
|
|
245
|
+
eng: "6:11",
|
|
246
|
+
},
|
|
247
|
+
"6:12": {
|
|
248
|
+
lxx: "6:13",
|
|
249
|
+
mt: "6:13",
|
|
250
|
+
eng: "6:12",
|
|
251
|
+
},
|
|
252
|
+
"6:13": {
|
|
253
|
+
lxx: "6:14",
|
|
254
|
+
mt: "6:14",
|
|
255
|
+
eng: "6:13",
|
|
256
|
+
},
|
|
257
|
+
"6:14": {
|
|
258
|
+
lxx: "6:15",
|
|
259
|
+
mt: "6:15",
|
|
260
|
+
eng: "6:14",
|
|
261
|
+
},
|
|
262
|
+
"6:15": {
|
|
263
|
+
lxx: "6:16",
|
|
264
|
+
mt: "6:16",
|
|
265
|
+
eng: "6:15",
|
|
266
|
+
},
|
|
267
|
+
"6:16": {
|
|
268
|
+
lxx: "6:17",
|
|
269
|
+
mt: "6:17",
|
|
270
|
+
eng: "6:16",
|
|
271
|
+
},
|
|
272
|
+
"6:17": {
|
|
273
|
+
lxx: "6:18",
|
|
274
|
+
mt: "6:18",
|
|
275
|
+
eng: "6:17",
|
|
276
|
+
},
|
|
277
|
+
"6:18": {
|
|
278
|
+
lxx: "6:19",
|
|
279
|
+
mt: "6:19",
|
|
280
|
+
eng: "6:18",
|
|
281
|
+
},
|
|
282
|
+
"6:19": {
|
|
283
|
+
lxx: "6:20",
|
|
284
|
+
mt: "6:20",
|
|
285
|
+
eng: "6:19",
|
|
286
|
+
},
|
|
287
|
+
"6:20": {
|
|
288
|
+
lxx: "6:21",
|
|
289
|
+
mt: "6:21",
|
|
290
|
+
eng: "6:20",
|
|
291
|
+
},
|
|
292
|
+
"6:21": {
|
|
293
|
+
lxx: "6:22",
|
|
294
|
+
mt: "6:22",
|
|
295
|
+
eng: "6:21",
|
|
296
|
+
},
|
|
297
|
+
"6:22": {
|
|
298
|
+
lxx: "6:23",
|
|
299
|
+
mt: "6:23",
|
|
300
|
+
eng: "6:22",
|
|
301
|
+
},
|
|
302
|
+
"6:23": {
|
|
303
|
+
lxx: "6:24",
|
|
304
|
+
mt: "6:24",
|
|
305
|
+
eng: "6:23",
|
|
306
|
+
},
|
|
307
|
+
"6:24": {
|
|
308
|
+
lxx: "6:25",
|
|
309
|
+
mt: "6:25",
|
|
310
|
+
eng: "6:24",
|
|
311
|
+
},
|
|
312
|
+
"6:25": {
|
|
313
|
+
lxx: "6:26",
|
|
314
|
+
mt: "6:26",
|
|
315
|
+
eng: "6:25",
|
|
316
|
+
},
|
|
317
|
+
"6:26": {
|
|
318
|
+
lxx: "6:27",
|
|
319
|
+
mt: "6:27",
|
|
320
|
+
eng: "6:26",
|
|
321
|
+
},
|
|
322
|
+
"6:27": {
|
|
323
|
+
lxx: "6:28",
|
|
324
|
+
mt: "6:28",
|
|
325
|
+
eng: "6:27",
|
|
326
|
+
},
|
|
327
|
+
"6:28": {
|
|
328
|
+
lxx: "6:29",
|
|
329
|
+
mt: "6:29",
|
|
330
|
+
eng: "6:28",
|
|
331
|
+
},
|
|
332
|
+
}
|