-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathEST.json
More file actions
3287 lines (3287 loc) · 86.9 KB
/
EST.json
File metadata and controls
3287 lines (3287 loc) · 86.9 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": "EST",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.1.04"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 EST\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_OT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Esther\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Esther\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Esther\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Est.\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Esther\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This account tells about the life of a young Jewish woman named Esther. These events happened back when King Ahasuerus (more widely known as King Xerxes) ruled over the kingdom of Persia. After Queen Vashti was banished for refusing to dance in front the king’s guests at a drinking party, Esther was chosen as the new queen without revealing her Jewish background. But there was a high official called Haman who was offended by Esther’s Jewish guardian and in his anger, determined to annihilate all of the Jews from the kingdom. This account reveals how Ether’s courage and her love for her Jewish people leads her to help them and eventually helps to save their lives.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"The account also reveals the source of a Jewish feast named ‘Purim’, which to this day is a time when Jewish people celebrate how God saved them from their enemy, Haman.\n"
]
},
{
"type": "para",
"marker": "iot",
"content": [
"Main components of this account\n"
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Esther becomes Queen of Persia ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1–2:23"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Haman’s threat to the Jews ",
{
"type": "char",
"marker": "ior",
"content": [
"3:1–5:14"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Haman’s execution ",
{
"type": "char",
"marker": "ior",
"content": [
"6:1–7:10"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The Jewish people destroy their enemies ",
{
"type": "char",
"marker": "ior",
"content": [
"8:1–10:3"
]
}
]
},
{
"type": "para",
"marker": "rem",
"content": [
"This is still a very early look into the unfinished text of the Open English Translation of the Bible. Please double-check the text in advance before using in public.\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "EST 1"
},
{
"type": "para",
"marker": "s1",
"content": [
"Queen Vashti refuses King Ahasuerus\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 King Ahasuerus’s banquet; Queen Vashti Deposed; Queen Vashti Defies King Xerxes; King Ahasuerus Deposes Queen Vashti; The King’s Banquet\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "EST 1:1"
},
"The following events happened during the reign¦228506 of ",
{
"type": "char",
"marker": "add",
"content": [
"King"
]
},
" Ahasuerus¦228503.",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:1: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Ezr 4:6."
]
}
],
"caller": "+"
},
" (",
{
"type": "char",
"marker": "add",
"content": [
"Also known as King Xerxes,"
]
},
" he ruled ",
{
"type": "char",
"marker": "add",
"content": [
"the empire of Persia"
]
},
" with¦228502 127 provinces¦228514 from India¦228507 all the way across to Ethiopia¦228510.)\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "EST 1:2"
},
"In those¦228517 days¦228516, he ruled his empire from ",
{
"type": "char",
"marker": "add",
"content": [
"a city called"
]
},
" Shushan¦228526,",
{
"type": "note",
"marker": "f",
"content": [
" ",
{
"type": "char",
"marker": "fr",
"content": [
"1:2 "
]
},
{
"type": "char",
"marker": "ft",
"content": [
"Known as ‘Susa’ in many 20th century translations, even though earlier English translations often got it correct."
]
}
],
"caller": "+"
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"Persia’s"
]
},
" capital.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "EST 1:3"
},
"In the third year of his reign¦228531, he hosted a celebration for all of his officials and for every important person who worked for him, as well as the officers who served in the army of the ",
{
"type": "char",
"marker": "add",
"content": [
"combined empire"
]
},
" of Persia¦228540 and Media¦228541, the wealthy landowners, and the officials of the provinces¦228544. The king was present¦228545 in person ",
{
"type": "char",
"marker": "add",
"content": [
"to host the celebration"
]
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "EST 1:4"
},
"which, over a period of six months, would display¦228547 the incredible wealth and prestige of his empire and his personal wealth and power.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "EST 1:5"
},
"Then¦228564 at¦228564 the end of that time, the king¦228569 hosted ",
{
"type": "char",
"marker": "add",
"content": [
"another"
]
},
" celebration, but¦228564 this time for all the people¦228572 in the royal fort in Shushan¦228574, from the nobles to the least prestigious. He held this celebration over an entire week in the enclosed garden¦228584 of the royal palace¦228585.\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "EST 1:6"
},
"There were white and blue curtains hanging from white and purple¦228596 cords¦228593 attached to silver rings on marble pillars¦228601. The guests reclined on gold¦228605 and silver couches¦228603 set on a mosaic floor that was made of red and white marble, and mother-of-pearl¦228612 and other expensive stones¦228613.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "EST 1:7"
},
"Drinks were served¦228615 in¦228616 golden¦228617 goblets, and¦228621 each one was a unique design. The king’s¦228625 wine seemed limitless as he displayed his generosity,\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "EST 1:8"
},
"and¦228646 it was served according¦228628 to his rule: There¦228631 is no compulsion to drink¦228627, but¦228627 all of his servants were to give each guest however much they wanted.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "EST 1:9"
},
"Meanwhile, Queen Vashti¦228649 was hosting a celebration for the women¦228653 ",
{
"type": "char",
"marker": "add",
"content": [
"in a different part"
]
},
" of the king’s royal¦228655 palace.\n",
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Queen Vashti Deposed\n"
]
}
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "EST 1:10"
},
"On the seventh day¦228661 of the celebrations, when the king was feeling cheery from his wine-drinking, he ordered seven of his chief servants (Mehuman¦228669, Biztha¦228670, Harbona¦228671, Bigtha¦228672, Abagtha¦228673, Zethar¦228674, and Karkas)\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "EST 1:11"
},
"to bring¦228685 Queen Vashti¦228688, wearing her royal¦228693 crown¦228692, to him in¦228692 order¦228694 to show her beauty¦228699 to the people¦228695 and the officials¦228696, because she¦228704 was very attractive.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "EST 1:12"
},
"But¦228706 when the servants came and told her the king’s command¦228710, Queen Vashti¦228708 refused¦228706 to come. When¦228706 the king found this out, he got very angry¦228715 and ",
{
"type": "char",
"marker": "add",
"content": [
"sat there"
]
},
" raging.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "EST 1:13"
},
"So¦228724 he ",
{
"type": "char",
"marker": "add",
"content": [
"called over"
]
},
" his advisors who knew the law and could make good decisions, and discussed with them what he should do.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "EST 1:14"
},
"(His closest¦228739 advisors were Karshena, Shethar¦228743, Admatha¦228744, Tarshish¦228745, Meres¦228746, Marsena¦228747, and Memukan. These seven¦228749 officials were from ",
{
"type": "char",
"marker": "add",
"content": [
"various places in the empire"
]
},
" of Persia¦228752 and Media¦228753 and they advised the king¦228756 personally, ",
{
"type": "char",
"marker": "add",
"content": [
"thus making them"
]
},
" the most powerful officials in the empire.)\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "EST 1:15"
},
"“According¦228761 to ",
{
"type": "char",
"marker": "add",
"content": [
"our"
]
},
" law,” ",
{
"type": "char",
"marker": "add",
"content": [
"the king¦228776 asked,"
]
},
" “what should be done with¦228765 Queen¦228773 Vashti¦228766, since she¦228772 refused to obey my command¦228775 when the servants passed it on¦228765 to her?”\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "EST 1:16"
},
"Then Memukan answered the king, ",
{
"type": "char",
"marker": "add",
"content": [
"speaking loudly enough that"
]
},
" both the king and his officials could hear. “Queen Vashti¦228794 has done wrong,” he said, “and not only against the king. She has also done wrong against all the officials and people¦228806 groups in all the provinces¦228810 that King¦228786 Ahasuerus¦228812 ",
{
"type": "char",
"marker": "add",
"content": [
"rules"
]
},
"!\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "EST 1:17"
},
{
"type": "char",
"marker": "add",
"content": [
"Soon"
]
},
" women all over the empire will hear about what the queen¦228819 did and they’ll say, ‘King¦228829 Ahasuerus¦228830 commanded his¦228837 servants to bring¦228832 Queen Vashti¦228835 to him, but¦228838 she didn’t¦228838 go! Then women will stop respecting their¦228826 husbands¦228826.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "EST 1:18"
},
"Even today, the leading women of Persia¦228847 and Media¦228849 will hear what the queen¦228855 did and start doing the same to ",
{
"type": "char",
"marker": "add",
"content": [
"their husbands who are"
]
},
" officials¦228857, and this will cause ",
{
"type": "char",
"marker": "add",
"content": [
"a wave of"
]
},
" contempt¦228860 and anger¦228861.\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "EST 1:19"
},
"If it pleases you ",
{
"type": "char",
"marker": "add",
"content": [
"to do so"
]
},
", ",
{
"type": "char",
"marker": "add",
"content": [
"your majesty"
]
},
", you should personally issue a royal decree and have it added to the laws of Persia¦228876 and Media¦228878 which cannot be repealed. This decree should say that Vashti¦228885 can never again come¦228884 into your presence, and then you should choose a different woman¦228892 for the royal position¦228889—someone who’s better¦228893 than her¦228889.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "EST 1:20"
},
"Your¦228905 decree¦228897 will be proclaimed¦228896 right through your empire, even though it’s so huge¦228906, and¦228896 then¦228896 all women¦228910, irrespective of their status or position, will honour¦228912 their husbands¦228913.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "EST 1:21"
},
"This seemed like a good idea to the king and¦228919 his officials¦228923, so King¦228922 Ahasuerus followed the advice¦228920 of Memukan\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "EST 1:22"
},
"and sent letters to every province in his empire. He wrote to every province using its own alphabet and to each people¦228944 group in its own language. The letters said that men should be the masters over their wives and children, and that a husband should be able to give orders to his wife in his own native language ",
{
"type": "char",
"marker": "add",
"content": [
"that she should understand and obey"
]
},
".\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "EST 2"
},
{
"type": "para",
"marker": "s1",
"content": [
"Beautiful Esther enters the king’s harem\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Esther becomes queen; Esther Becomes Queen; Esther Made Queen\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "EST 2:1"
},
"Some time later when King¦228963 Ahasuerus¦228964 no longer felt so angry, he ",
{
"type": "char",
"marker": "add",
"content": [
"started to miss"
]
},
" Vashti¦228968. But¦228969 when she’d disobeyed his command, he had made a decree ",
{
"type": "char",
"marker": "add",
"content": [
"that¦228970 she could never come into his presence again¦228977"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "EST 2:2"
},
"So¦228979 some of the young men who served the king suggested to him, “",
{
"type": "char",
"marker": "add",
"content": [
"Your majesty, you should¦228984 get a new wife for yourself."
]
},
" You could tell your servants to look for young virgins¦228987 who are very beautiful.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "EST 2:3"
},
"You could assign officers in each province¦228996 of your empire to bring every¦229001 virgin who is very beautiful here to your capital city of Shushan¦229010. They could stay in the harem for virgins under the custody of Hegai¦229019, the castrated royal guardian who takes care of the young women who live there and¦228991 he could arrange for them to receive beauty treatments¦229025.\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "EST 2:4"
},
"Then¦229027 you could decide which young¦229027 woman¦229027 you like best and¦229027 then¦229027 make her queen instead of Vashti¦229034.”\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
"The king liked what they suggested¦229036, so he did it.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "EST 2:5"
},
"At that time, there was a Jewish man named Mordekai living in¦229046 the capital city of Shushan¦229046. (He was from the tribe of Benjamin: his father was Jair, his grandfather was Shimei¦229054, and his great-grandfather was Kish¦229057\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "EST 2:6"
},
"who’d been taken away from Jerusalem and led to Babylon when King¦229071 Nebuchadnezzer¦229076 of Babylon had exiled¦229066 Jeconiah¦229070, the king of Judah, along with many of his people.)",
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"2:6: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"2Ki 24:10-16; 2Ch 36:10."
]
}
],
"caller": "+"
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "EST 2:7"
},
"Now Mordekai was taking care of his cousin, who was an orphan. When¦229080 her father¦229093 and mother had died, Mordekai had adopted¦229104 her as his own daughter¦229087. Her¦229102 ",
{
"type": "char",
"marker": "add",
"content": [
"Hebrew"
]
},
" name was Hadassah¦229084, and her ",
{
"type": "char",
"marker": "add",
"content": [
"Persian"
]
},
" name was Esther. Esther was now a young¦229095 woman¦229095 and she was exceptionally attractive.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "EST 2:8"
},
"So¦229109 when the king’s command and decree became known, many young¦229116 women were being brought into the capital city of Shushan¦229120 and placed under Hegai’s charge, and this is what happened to Esther¦229127. (Hegai was the overseer of the women.)\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "EST 2:9"
},
"Hegai was very impressed with¦229141 Esther, and he treated her favourably¦229143. He quickly¦229145 arranged for Esther to receive her beauty¦229148 treatments and her allotment of food, as well as choosing seven¦229155 female servants from the king’s palace¦229161 and assigning¦229158 them to be her personal attendants. He also moved¦229163 Esther and her attendants to the best rooms in¦229141 the harem for virgins.\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "EST 2:10"
},
"(Esther¦229174 hadn’t revealed her family ties or her Jewishness to anyone, because Mordekai had instructed¦229183 her not to.)\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "EST 2:11"
},
"Every day Mordekai would walk¦229195 around in¦229209 front¦229196 of the courtyard¦229197 of the women’s¦229200 harem to find out ",
{
"type": "char",
"marker": "add",
"content": [
"from others"
]
},
" how Esther¦229205 was doing and¦229190 how she was being treated.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "EST 2:12"
},
"Each young¦229213 woman¦229213 would get twelve months of beauty¦229233 treatment¦229233 according¦229224 to the ",
{
"type": "char",
"marker": "add",
"content": [
"Persian"
]
},
" law for women—there would be six months of applying oil¦229236 of myrrh¦229237, then¦229211 six months of perfumes¦229240 and¦229211 other lotions ",
{
"type": "char",
"marker": "add",
"content": [
"designed for"
]
},
" women. Then¦229211 their¦229233 turn would come, one at¦229211 a time¦229232, to be taken to King¦229219 Ahasuerus¦229220.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "EST 2:13"
},
"The¦229250 young¦229245 woman¦229245 was allowed to take¦229257 whatever she wanted from the harem¦229259 when she went to the king’s¦229264 house¦229263.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "EST 2:14"
},
"She’d be taken across in the evening¦229266, and in the morning¦229270 she’d be led out to the other harem which was for the concubines¦229285. (That harem was overseen by Shaashgaz¦229281, another castrated royal guardian.) The women¦229276 taken there wouldn’t go again¦229289 to the king’s house¦229275 unless he had especially liked them and summoned¦229299 her back by name¦229300.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Esther becomes queen\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "EST 2:15"
},
"Now Esther was the daughter of Mordekai’s uncle¦229309, Abihail¦229308, from whom Mordekai had adopted her as his own daughter. When¦229302 it was her turn to go to the king, she didn’t¦229320 ask for anything¦229322 other than what Hegai¦229329, the king’s trusted official in¦229302 charge of the harem, had advised, and¦229302 everyone¦229333 who saw Esther liked her.\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "EST 2:16"
},
"So¦229344 Esther¦229345 was taken¦229344 to King¦229348 Ahasuerus¦229349 at¦229354 his royal palace in January¦229359, in the seventh¦229362 year¦229360 of his reign¦229363,\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "EST 2:17"
},
"and the king¦229366 loved¦229365 Esther¦229369 more than any of the other women. He treated her more kindly and more favourably¦229375 than any of the other young women ",
{
"type": "char",
"marker": "add",
"content": [
"who had become his concubines"
]
},
". He put a royal¦229384 crown¦229382 on¦229385 her head¦229385 and made her the ",
{
"type": "char",
"marker": "add",
"content": [
"new"
]
},
" queen¦229386 to replace Vashti¦229388.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "EST 2:18"
},
"Then¦229390 the king¦229391 hosted a large celebration and invited all his officials¦229396 and servants¦229397 to a feast to celebrate Esther¦229400 ",
{
"type": "char",
"marker": "add",
"content": [
"becoming queen"
]
},
". He proclaimed that this would be a time to celebrate for people in all of the provinces¦229402 of his empire when they wouldn’t have to pay taxes, and he gave¦229404 ",
{
"type": "char",
"marker": "add",
"content": [
"many"
]
},
" generous gifts.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Mordekai and Esther earn the king’s favour\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Mordecai Discovers a Plot; Mordecai and Haman; Mordecai Saves the King’s Life; Mordecai Uncovers a Conspiracy\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "EST 2:19"
},
{
"type": "char",
"marker": "add",
"content": [
"Later on¦229409,"
]
},
" King¦229416 Ahasuerus had ",
{
"type": "char",
"marker": "add",
"content": [
"his officers"
]
},
" bring more virgins¦229410 ",
{
"type": "char",
"marker": "add",
"content": [
"to Shushan"
]
},
". During this time, Mordekai ",
{
"type": "char",
"marker": "add",
"content": [
"had been given a position by the king so"
]
},
" he sat ",
{
"type": "char",
"marker": "add",
"content": [
"there"
]
},
" at¦229409 the king’s¦229416 gate¦229414.\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "EST 2:20"
},
"Esther¦229419 had still not told¦229426 anyone that ",