-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHAB.json
More file actions
1771 lines (1771 loc) · 45.4 KB
/
HAB.json
File metadata and controls
1771 lines (1771 loc) · 45.4 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
{
"type": "USJ",
"version": "3.1",
"content": [
{
"type": "book",
"marker": "id",
"code": "Hab",
"content": []
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 HAB\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_OT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"The parsed Hebrew text used to create this file is Copyright © 2019 by https://hb.openscriptures.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"Our English glosses are released CC0 by https://Freely-Given.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM file created 2026-04-09 12:49 by extract_glossed_OSHB_OT_to_ESFM v1.0\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"USFM file edited by ScriptedBibleEditor v0.35\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Habakkuk\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Habakkuk\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Habakkuk\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Hab\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Habakkuk\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "Hab 1"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Hab 1:1"
},
"The¦373806÷oracle¦373806",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read one or more accents in L differently from BHQ."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks a place where we agree with BHQ against BHS in reading L."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: Marks an anomalous form."
]
}
],
"caller": "+"
},
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:1 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We read punctuation in L differently from BHS."
]
}
],
"caller": "+"
},
" which¦373811 he¦373812_saw¦373812 Ḩₐⱱaqqūq¦373813 the¦373814÷prophet¦373814.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Hab 1:2"
},
"Until¦373816 when¦373818 Oh¦373819_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦373819"
]
},
" have¦373820_I¦373820_cried¦373820_for¦373820_help¦373820 and¦373821=not¦373821 you¦373822_will¦373822_hear¦373822 I¦373823_cry¦373823_out¦373823 to¦373824÷you¦373824 violence¦373825 and¦373826=not¦373826 you¦373827_save¦373827.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Hab 1:3"
},
"To/for¦373829=what¦373829 do¦373830÷you¦373830_make¦373830_me¦373830_see¦373830 wickedness¦373831 and¦373832÷mischief¦373832 do¦373833_you¦373833_look¦373833_at¦373833 and¦373834÷devastation¦373834 and¦373835÷violence¦373835 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦373836"
]
},
"_to¦373836÷before¦373836÷me¦373836 and¦373837= strife¦373838 =he/it¦373837_was¦373837 and¦373839÷contention¦373839 it¦373840_arises¦373840.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "Hab 1:4"
},
"Therefore¦373842 yes/correct/thus/so¦373844 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦373846"
]
},
"_law¦373846 it¦373845_grows¦373845_numb¦373845 and¦373847=not¦373847 it¦373849_comes¦373849_forth¦373849 to¦373850÷perpetuity¦373850 justice¦373851 if/because¦373852 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦373853"
]
},
"_wicked¦373853 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦373854"
]
},
"_surrounding¦373854 untr DOM¦373855untr* the¦373857_righteous¦373857÷",
{
"type": "char",
"marker": "add",
"content": [
">person¦373857"
]
},
" therefore¦373858 yes/correct/thus/so¦373860 justice¦373862 it¦373861_comes¦373861_forth¦373861 perverted¦373863.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "Hab 1:5"
},
"See¦373865 among¦373866÷nations¦373866 and¦373867÷look¦373867 and¦373868÷be¦373868_astounded¦373868 be¦373869_astonished¦373869 if/because¦373870 a¦373872_deed¦373872 ",
{
"type": "char",
"marker": "add",
"content": [
"I¦373873"
]
},
"_",
{
"type": "char",
"marker": "add",
"content": [
"+am¦373873"
]
},
"_about¦373873_to¦373873_do¦373873 in¦373874÷your(pl)¦373874_of¦373874÷days¦373874 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦373875"
]
},
"_not¦373875 you(pl)¦373876_will¦373876_believe¦373876 if/because¦373877 it¦373878_will¦373878_be¦373878_recounted¦373878.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "Hab 1:6"
},
"If/because¦373880 here¦373882÷I¦373882 ",
{
"type": "char",
"marker": "add",
"content": [
"+am¦373883"
]
},
"_about¦373883_to¦373883_raise¦373883_up¦373883 untr DOM¦373884untr* the¦373886=",
{
"type": "char",
"marker": "add",
"content": [
">ones¦373886"
]
},
"_from¦373886_Kasdiy¦373886 the¦373887÷nation¦373887 (the)¦373888÷bitter¦373888 and¦373889÷(the)¦373889÷impetuous¦373889 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦373890"
]
},
"÷goes¦373890 to¦373891_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦373891"
]
},
"÷expanses¦373891_of¦373891 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦373893"
]
},
"_earth¦373893 to¦373894÷take¦373894_possession¦373894_of¦373894 dwellings¦373895 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦373896"
]
},
"_not¦373896 to¦373898=him/it¦373898.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "Hab 1:7"
},
{
"type": "char",
"marker": "add",
"content": [
"+is¦373900"
]
},
"_terrifying¦373900 and¦373901÷awesome¦373901 it¦373902 from¦373903=him/it¦373903 justice¦373904_of¦373904÷its¦373904 and¦373905÷its¦373905_of¦373905÷dignity¦373905 it¦373906_comes¦373906_forth¦373906.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "Hab 1:8"
},
"And¦373908÷they¦373908_are¦373908_swift¦373908 more¦373909÷than¦373909_leopards¦373909 horses¦373910_of¦373910÷its¦373910 and¦373911÷they¦373911_are¦373911_keen¦373911 more¦373912÷than¦373912_wolves¦373912_of¦373912 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦373913"
]
},
"_evening¦373913 warhorses¦373915_of¦373915÷its¦373915 and¦373914÷they¦373914_paw¦373914_the¦373914_ground¦373914 and¦373916÷its¦373916_of¦373916÷horsemen¦373916 from¦373917÷a¦373917_distance¦373917 they¦373918_come¦373918 they¦373919_fly¦373919 like¦373920÷an¦373920_eagle¦373920 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦373921"
]
},
"_makes¦373921_haste¦373921 to¦373922÷devour¦373922.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "Hab 1:9"
},
"Of¦373924_it¦373924_of¦373924÷all¦373924 for¦373925÷violence¦373925 it¦373926_comes¦373926 the¦373927_totality¦373927_of¦373927 their¦373928_faces¦373928_of¦373928÷of¦373928 eastward¦373929÷",
{
"type": "char",
"marker": "add",
"content": [
"+is¦373929"
]
},
" and¦373930÷it¦373930_gathered¦373930 like¦373931÷sand¦373931 captive[s]¦373932.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "Hab 1:10"
},
"And¦373934=he¦373934 ",
{
"type": "char",
"marker": "add",
"content": [
"in¦373935"
]
},
"÷kings¦373935 it¦373936_derides¦373936 and¦373937÷rulers¦373937 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦373938"
]
},
"_laughter¦373938 to¦373939=him/it¦373939 it¦373940 to/from¦373941=all/each/any/every¦373941 fortress¦373943 it¦373944_laughs¦373944 and¦373945÷it¦373945_heaped¦373945_up¦373945 earth¦373946 and¦373947÷it¦373947÷captured¦373947_it¦373947.\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "Hab 1:11"
},
"Then¦373949 it¦373950_swept¦373950_on¦373950 a¦373951_wind¦373951 and¦373952÷it¦373952_passed¦373952_on¦373952 and¦373953÷he¦373953_is¦373953_guilty¦373953 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦373954"
]
},
"_",
{
"type": "char",
"marker": "add",
"content": [
">one¦373954"
]
},
"_who¦373954 strength¦373955_of¦373955÷his¦373955 ",
{
"type": "char",
"marker": "add",
"content": [
"becomes¦373956"
]
},
"_(into)¦373956÷his¦373956_of¦373956÷god¦373956.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "Hab 1:12"
},
"Am¦373958=not¦373958 ",
{
"type": "char",
"marker": "add",
"content": [
"+are¦373959"
]
},
"_you¦373959 from¦373960=east¦373960 Oh¦373961_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦373961"
]
},
" god¦373962_of¦373962÷my¦373962 my¦373963_holy¦373963_of¦373963÷",
{
"type": "char",
"marker": "add",
"content": [
">one¦373963"
]
},
" not¦373964 we¦373965_will¦373965_die¦373965 Oh¦373966_",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦373966"
]
},
" to¦373967÷judgement¦373967 you¦373968÷have¦373968_appointed¦373968_it¦373968 and¦373969÷Oh¦373969_rock¦373969 to¦373970÷reprove¦373970 you¦373971÷have¦373971_established¦373971_it¦373971.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "Hab 1:13"
},
{
"type": "char",
"marker": "add",
"content": [
"you¦373973"
]
},
"_",
{
"type": "char",
"marker": "add",
"content": [
"+are¦373973"
]
},
"_",
{
"type": "char",
"marker": "add",
"content": [
"too¦373973"
]
},
"_pure¦373973_of¦373973 eyes¦373974 for¦373975÷seeing¦373975 evil¦373976 and¦373977÷to¦373977_look¦373977 to¦373978 mischief¦373980 not¦373981 you¦373982_are¦373982_able¦373982 to/for¦373983=what¦373983 do¦373984_you¦373984_look¦373984_at¦373984 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦373985_who¦373985"
]
},
"_act¦373985_treacherously¦373985 are¦373986_you¦373986_silent¦373986 when¦373987÷swallows¦373987_up¦373987 a¦373988_wicked¦373988_",
{
"type": "char",
"marker": "add",
"content": [
">person¦373988"
]
},
" a¦373989_",
{
"type": "char",
"marker": "add",
"content": [
">person¦373989"
]
},
"_righteous¦373989 more¦373990÷than¦373990_him¦373990.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "Hab 1:14"
},
"And¦373992÷you¦373992_have¦373992_made¦373992 humankind¦373993 like¦373994÷the¦373994_fish(es)¦373994_of¦373994 the¦373995=sea¦373995 like¦373996÷creeping¦373996_thing[s]¦373996 ",
{
"type": "char",
"marker": "add",
"content": [
"which¦373997"
]
},
"_not¦373997 a¦373999_ruler¦373999 in/on/over¦374000=him/it¦374000.\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "Hab 1:15"
},
"Of¦374002_it¦374002_of¦374002÷all¦374002 with¦374003÷a¦374003_fish¦374003_hook¦374003 he¦374004_brings¦374004_up¦374004 he¦374005÷drags¦374005_it¦374005_away¦374005 in¦374006÷his¦374006_of¦374006÷net¦374006 and¦374007÷he¦374007÷gathers¦374007_it¦374007 in¦374008÷his¦374008_fishing¦374008_of¦374008÷net¦374008 therefore¦374009 yes/correct/thus/so¦374011 he¦374012_rejoices¦374012 and¦374013÷he¦374013_is¦374013_glad¦374013.\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "Hab 1:16"
},
"Therefore¦374015 yes/correct/thus/so¦374017 he¦374018_sacrifices¦374018 to¦374019÷his¦374019_of¦374019÷net¦374019 and¦374020÷he¦374020_makes¦374020_smoke¦374020 to¦374021÷his¦374021_fishing¦374021_of¦374021÷net¦374021 if/because¦374022 by¦374023÷them¦374023 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦374024"
]
},
"_rich¦374024 portion¦374025_of¦374025÷his¦374025 and¦374026÷his¦374026_of¦374026÷food¦374026 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦374027"
]
},
"_fat¦374027.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "Hab 1:17"
},
"There-¦374029 fore¦374030 will¦374031_he¦374031_empty¦374031 net¦374032_of¦374032÷his¦374032 and¦374033÷continually¦374033 to¦374034÷kill¦374034 nations¦374035 not¦374036 will¦374037_he¦374037_spare¦374037.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "Hab 2"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "Hab 2:1"
},
"at¦374040 post¦374042_of¦374042÷my¦374042 I¦374043_will¦374043_stand¦374043 and¦374044÷I¦374044_will¦374044_take¦374044_my¦374044_stand¦374044 on¦374045 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374047"
]
},
"_fortification¦374047 and¦374048÷I¦374048_will¦374048_watch¦374048 to¦374049=see¦374049 what¦374050 will¦374052_he¦374052_speak¦374052 by¦374054÷me¦374054 and¦374055÷what¦374055 will¦374056_I¦374056_bring¦374056_back¦374056 on¦374057 complaint¦374059_of¦374059÷my¦374059.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "Hab 2:2"
},
"And¦374061÷he¦374061÷answered¦374061_me¦374061 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦374062"
]
},
" and¦374063=he/it¦374063_said¦374063 write¦374064_down¦374064 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374065"
]
},
"_vision¦374065 and¦374066÷make¦374066_",
{
"type": "char",
"marker": "add",
"content": [
">it¦374066"
]
},
"_clear¦374066 on¦374067 the¦374069÷tablets¦374069 so¦374070_that¦374070 he¦374071_may¦374071_run¦374071 ",
{
"type": "char",
"marker": "add",
"content": [
"one¦374072_who¦374072"
]
},
"_reads¦374072 in¦374073=him/it¦374073.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "Hab 2:3"
},
"If/because¦374075 still¦374076 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374077"
]
},
"_vision¦374077 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦374078"
]
},
"_for¦374078÷time¦374078 and¦374079÷it¦374079_will¦374079_pant¦374079 to¦374080÷end¦374080 and¦374081=not¦374081 it¦374082_will¦374082_lie¦374082 if¦374083 it¦374085_will¦374085_delay¦374085 wait¦374086 to¦374088=him/it¦374088 if/because¦374089 surely¦374091_(come)¦374091 it¦374092_will¦374092_come¦374092 not¦374093 it¦374094_will¦374094_delay¦374094.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "Hab 2:4"
},
"There¦374096 it¦374097_is¦374097_swollen¦374097 not¦374098 it¦374100_is¦374100_upright¦374100 self¦374101_of¦374101÷his¦374101 in/on/over¦374102=him/it¦374102 and¦374103_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374103"
]
},
"÷righteous¦374103 by¦374104÷his¦374104_of¦374104÷faithfulness¦374104 he¦374105_will¦374105_live¦374105.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "Hab 2:5"
},
"And¦374107÷also¦374107 if/because¦374108 (the)¦374110÷wine¦374110 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦374111"
]
},
"_acting¦374111_treacherously¦374111 a¦374112_man¦374112 proud¦374113 and¦374114=not¦374114 he¦374115_stays¦374115_at¦374115_home¦374115 who¦374116 he¦374117_has¦374117_made¦374117_large¦374117 like¦374118÷Shəʼōl¦374118 throat¦374119_of¦374119÷his¦374119 and¦374120=he¦374120 ",
{
"type": "char",
"marker": "add",
"content": [
"+is¦374121"
]
},
"_like¦374121÷death¦374121 and¦374122=not¦374122 he¦374123_is¦374123_satisfied¦374123 and¦374124÷he¦374124_has¦374124_gathered¦374124 to¦374125=him/it¦374125 all¦374126_of¦374126 the¦374128=nations¦374128 and¦374129÷he¦374129_has¦374129_assembled¦374129 to¦374130=him/it¦374130 all¦374131_of¦374131 the¦374133÷peoples¦374133.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "Hab 2:6"
},
"Am¦374135=not¦374135 these¦374137_",
{
"type": "char",
"marker": "add",
"content": [
">nations¦374137"
]
},
" of¦374138_them¦374138_of¦374138÷all¦374138 on/upon/above¦374139=him/it¦374139 a¦374140_saying¦374140 will¦374141_they¦374141_lift¦374141_up¦374141 and¦374142÷a¦374142_mocking¦374142_song¦374142 riddles¦374143 to¦374144=him/it¦374144 and¦374145÷will¦374145_someone¦374145_say¦374145 woe¦374146_to¦374146 the¦374147_",
{
"type": "char",
"marker": "add",
"content": [
"one¦374147÷who¦374147"
]
},
"_increases¦374147 ",
{
"type": "char",
"marker": "add",
"content": [
"that¦374148_which¦374148"
]
},
"_not¦374148 to¦374150=him/it¦374150 until¦374151 when¦374153 and¦374154÷",
{
"type": "char",
"marker": "add",
"content": [
"one¦374154_who¦374154"
]
},
"_makes¦374154_heavy¦374154 on/upon/above¦374155=him/it¦374155 pledge[s]¦374156.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "Hab 2:7"
},
"Am¦374158=not¦374158 suddenness¦374159 will¦374160_they¦374160_arise¦374160 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦374161_of¦374161÷who¦374161"
]
},
"_pay¦374161_interest¦374161_to¦374161_you¦374161 and¦374162÷will¦374162_they¦374162_awake¦374162 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦374163_of¦374163÷who¦374163_will¦374163"
]
},
"_make¦374163_you¦374163_tremble¦374163 and¦374164÷you¦374164_will¦374164_become¦374164 (into)¦374165÷plunder(s)¦374165 for¦374166÷them¦374166.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "Hab 2:8"
},
"If/because¦374168",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"2:8 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"OSHB note: We agree with both BHS 1997 and BHQ on an unexpected reading."
]
}
],
"caller": "+"
},
" you¦374170 you¦374171_have¦374171_plundered¦374171 nations¦374172 many¦374173 they¦374174÷will¦374174_plunder¦374174_you¦374174 all¦374175_of¦374175 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374177"
]
},
"_rest¦374177_of¦374177 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374178"
]
},
"_peoples¦374178 from¦374179_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374179"
]
},
"÷blood(s)¦374179_of¦374179 humankind¦374180 and¦374181_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374181"
]
},
"÷violence¦374181_of¦374181 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374183"
]
},
"_land¦374183 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374184"
]
},
"_town¦374184 and¦374185=all¦374185 ",
{
"type": "char",
"marker": "add",
"content": [
"those¦374187_who¦374187"
]
},
"_dwell¦374187_of¦374187 in¦374188÷it¦374188.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "Hab 2:9"
},
"woe¦374191_to¦374191 ",
{
"type": "char",
"marker": "add",
"content": [
"one¦374192_who¦374192"
]
},
"_gains¦374192 unjust¦374193_gain¦374193 evil¦374194 for¦374195÷his¦374195_of¦374195÷house¦374195 to¦374196÷set¦374196 on¦374197÷places¦374197 nest¦374198_of¦374198÷his¦374198 to¦374199÷deliver¦374199_himself¦374199 from¦374200_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374200"
]
},
"÷palm¦374200_of¦374200 evil¦374202.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "Hab 2:10"
},
"You¦374204_have¦374204_planned¦374204 shame¦374205 for¦374206÷your¦374206_of¦374206÷house¦374206 by¦374207_cutting¦374207_off¦374207 peoples¦374209 many¦374210 and¦374211÷",
{
"type": "char",
"marker": "add",
"content": [
"you¦374211_have¦374211"
]
},
"_sinned¦374211 self¦374212_of¦374212÷your¦374212.\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "Hab 2:11"
},
"If/because¦374214 a¦374216_stone¦374216 from¦374217_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374217"
]
},
"÷wall¦374217 it¦374218_will¦374218_cry¦374218_out¦374218 and¦374219÷a¦374219_rafter¦374219 from¦374220=tree¦374220 it¦374221÷will¦374221_answer¦374221_it¦374221.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "Hab 2:12"
},
"woe¦374224_to¦374224 ",
{
"type": "char",
"marker": "add",
"content": [
"one¦374225_who¦374225"
]
},
"_builds¦374225 a¦374226_city¦374226 by¦374227÷blood(s)¦374227 and¦374228÷he¦374228_establishes¦374228 a¦374229_town¦374229 by¦374230÷injustice¦374230.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "Hab 2:13"
},
"Am¦374232=not¦374232 there¦374233 from¦374234÷with¦374234 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦374235"
]
},
" hosts¦374236 and¦374237÷they¦374237_labour¦374237 peoples¦374238 for¦374239_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374239"
]
},
"÷sufficiency¦374239_of¦374239 fire¦374241 and¦374242÷nations¦374242 for¦374243_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦374243"
]
},
"÷sufficiency¦374243_of¦374243 emptiness¦374245 they¦374246_grow¦374246_weary¦374246.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "Hab 2:14"
},
"If/because¦374248 it¦374249_will¦374249_be¦374249_filled¦374249 the¦374250=earth/land¦374250 to¦374251=know¦374251 untr DOM¦374252untr* the¦374254_glory¦374254_of¦374254 ",
{
"type": "char",
"marker": "nd",
"content": [
"YHWH¦374255"
]
},
" like¦374256÷waters¦374256 ",