-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTI1.json
More file actions
2604 lines (2604 loc) · 67 KB
/
TI1.json
File metadata and controls
2604 lines (2604 loc) · 67 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": "1TI",
"content": []
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 TI1\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"The VLT source table used to create this file is Copyright © 2022 by https://GreekCNTR.org\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM file originally created 2026-04-09 11:29 by Extract_VLT_NT_to_ESFM v1.0\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"USFM file edited by ScriptedBibleEditor v0.35\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"1 Timotheos\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"1 Timotheos\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"1 Timotheos\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"1Tim.\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"1 Timotheos\n"
]
},
{
"type": "para",
"marker": "ie",
"content": []
},
{
"type": "chapter",
"marker": "c",
"number": "1",
"sid": "1TI 1"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "1TI 1:1"
},
"Paulos¦136835, ",
{
"type": "char",
"marker": "add",
"content": [
"+an¦136836"
]
},
"_ambassador¦136836 of¦136837_",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦136837_one¦136837/messiah¦136837 Yaʸsous/(Yəhōshūˊa)¦136838"
]
},
", according¦136840_to¦136840 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136842"
]
},
"_command¦136842 of¦136843_",
{
"type": "char",
"marker": "nd",
"content": [
"god¦136843"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136844"
]
},
"_saviour¦136844 of¦136845_us¦136845, and¦136846 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136847"
]
},
"_",
{
"type": "char",
"marker": "nd",
"content": [
"master¦136847 Yaʸsous¦136849 chosen¦136850_one¦136850/messiah¦136850"
]
},
" the¦136851 hope¦136852 of¦136853_us¦136853,\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "1TI 1:2"
},
"to¦136854_Timotheos¦136854, genuine¦136855 child¦136856 in¦136857 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136858"
]
},
"_faith¦136858: grace¦136859, mercy¦136860, peace¦136861 from¦136862 ",
{
"type": "char",
"marker": "nd",
"content": [
"god¦136863"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136864"
]
},
"_father¦136864 and¦136866 ",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦136867_one¦136867/messiah¦136867 Yaʸsous¦136868"
]
},
" the¦136870 ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦136871"
]
},
" of¦136872_us¦136872.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "1TI 1:3"
},
"As¦136873 I¦136874_implored¦136874 you¦136875 to¦136876_remain¦136876 in¦136877 Efesos¦136878, going¦136879 to¦136880 Makedonia¦136881, in¦136882_order¦136882_that¦136882 you¦136883_may¦136883_command¦136883 to¦136884_some¦136884 not¦136885 to¦136886_be¦136886_teaching¦136886_differently¦136886,\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "1TI 1:4"
},
"nor¦136887 to¦136888_be¦136888_giving¦136888_heed¦136888 to¦136889_myths¦136889 and¦136890 endless¦136892 genealogies¦136891, which¦136893 are¦136896_bringing¦136896_about¦136896 speculations¦136894 rather¦136897 than¦136898 management¦136899 of¦136900_",
{
"type": "char",
"marker": "nd",
"content": [
"god¦136900"
]
},
", which¦136901 ",
{
"type": "char",
"marker": "add",
"content": [
"=is¦136901"
]
},
" in¦136902 faith¦136903.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "1TI 1:5"
},
"And¦136905 the¦136904 outcome¦136906 of¦136907_our¦136907 charge¦136908 is¦136909 love¦136910 out¦136911_of¦136911 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦136912"
]
},
"_pure¦136912 heart¦136913, and¦136914 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦136915"
]
},
"_ good¦136916 _conscience¦136915, and¦136917 ",
{
"type": "char",
"marker": "add",
"content": [
"+an¦136918"
]
},
"_ unhypocritical¦136919 _faith¦136918,\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "1TI 1:6"
},
"from¦136920_which¦136920 some¦136921 having¦136922_deviated¦136922, were¦136923_turned¦136923_away¦136923 to¦136924 useless¦136925_talk¦136925,\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "1TI 1:7"
},
"wanting¦136926 to¦136927_be¦136927 law¦136928_teachers¦136928, not¦136929 understanding¦136930 neither¦136931 what¦136932 they¦136933_are¦136933_saying¦136933, nor¦136934 about¦136935 what¦136936_all¦136936 they¦136937_are¦136937_confirming¦136937.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "1TI 1:8"
},
"But¦136939 we¦136938_have¦136938_known¦136938 that¦136940 the¦136942 law¦136943 ",
{
"type": "char",
"marker": "add",
"content": [
"=is¦136941"
]
},
" good¦136941, if¦136944 someone¦136945 may¦136948_be¦136948_resorting¦136948 to¦136946_it¦136946 lawfully¦136947,\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "1TI 1:9"
},
"having¦136950_known¦136950 this¦136951, that¦136952 for¦136953_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136953"
]
},
"_righteous¦136953 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136954"
]
},
"_law¦136954 is¦136956_ not¦136955 _appointing¦136956, but¦136958 for¦136957_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136957"
]
},
"_lawless¦136957 and¦136959 insubordinate¦136960, ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136961"
]
},
"_ungodly¦136961 and¦136962 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦136963"
]
},
"_sinners¦136963, unholy¦136964 and¦136965 profane¦136966, father¦136967_killers¦136967 and¦136968 mother¦136969_killers¦136969, murderers¦136970,\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "1TI 1:10"
},
{
"type": "char",
"marker": "add",
"content": [
"+the¦136971"
]
},
"_sexually¦136971_immoral¦136971, sodomisers¦136972, kidnappers¦136973, liars¦136974, perjurers¦136975, and¦136976 if¦136977 any¦136978 other¦136979 ",
{
"type": "char",
"marker": "add",
"content": [
">thing¦136979"
]
},
" is¦136984_opposing¦136984 to¦136980_the¦136980 being¦136981_sound¦136981 teaching¦136982,\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "1TI 1:11"
},
"according¦136985_to¦136985 the¦136986 good¦136987_message¦136987 of¦136988_the¦136988 glory¦136989 of¦136990_the¦136990 blessed¦136991 ",
{
"type": "char",
"marker": "nd",
"content": [
"god¦136992"
]
},
", which¦136993 I¦136995 was¦136994_entrusted¦136994.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "1TI 1:12"
},
"I¦136998_am¦136998_having¦136998 thankfulness¦136997 for¦136999_the¦136999 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦136999"
]
},
" having¦137000_strengthened¦137000 me¦137002, ",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦137003_one¦137003/messiah¦137003 Yaʸsous/(Yəhōshūˊa)¦137004"
]
},
" the¦137005 ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦137006"
]
},
" of¦137007_us¦137007, because¦137008 he¦137011_considered¦137011 me¦137010 faithful¦137009, having¦137012_appointed¦137012 ",
{
"type": "char",
"marker": "add",
"content": [
"me¦137012"
]
},
" to¦137013 service¦137014,\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "1TI 1:13"
},
"o the¦137015untr* earlier¦137017 being¦137018 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137020"
]
},
"_slanderous¦137020, and¦137021 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137022"
]
},
"_persecutor¦137022, and¦137023 ",
{
"type": "char",
"marker": "add",
"content": [
"+an¦137024"
]
},
"_abuser¦137024, but¦137025 I¦137026_was¦137026_shown¦137026_mercy¦137026, because¦137027 not¦137028_knowing¦137028, I¦137029_did¦137029 ",
{
"type": "char",
"marker": "add",
"content": [
"it¦137029"
]
},
" in¦137030 unbelief¦137031.\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "1TI 1:14"
},
"And¦137033 the¦137034 grace¦137035 of¦137036_the¦137036 ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦137037"
]
},
" of¦137038_us¦137038, over¦137032_been¦137032_plentiful¦137032 with¦137039 faith¦137040 and¦137041 love¦137042 untr which¦137043untr* in¦137044 ",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦137045_one¦137045/messiah¦137045 Yaʸsous¦137046"
]
},
".\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "1TI 1:15"
},
"Trustworthy¦137047 ",
{
"type": "char",
"marker": "add",
"content": [
"=is¦137047"
]
},
" the¦137048 saying¦137049, and¦137050 worthy¦137053 of¦137051_all¦137051 acceptance¦137052: untr that¦137054untr* ",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦137055_one¦137055/messiah¦137055 Yaʸsous¦137056"
]
},
" came¦137057 into¦137058 the¦137059 world¦137060 to¦137062_save¦137062 sinners¦137061, of¦137063_whom¦137063 I¦137066 am¦137065 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137064"
]
},
"_first¦137064.\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "1TI 1:16"
},
"But¦137067 because¦137068_of¦137068 this¦137069 I¦137070_was¦137070_shown¦137070_mercy¦137070, in¦137071_order¦137071_that¦137071 in¦137072 me¦137073 first¦137074 ",
{
"type": "char",
"marker": "nd",
"content": [
"Yaʸsous¦137077 chosen¦137078_one¦137078/messiah¦137078"
]
},
" may¦137075_display¦137075 his¦137079 all¦137080 patience¦137082, because/for¦137083 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137084"
]
},
"_pattern¦137084 of¦137085_the¦137085 ",
{
"type": "char",
"marker": "add",
"content": [
">ones¦137085"
]
},
" going¦137086 to¦137088_be¦137088_believing¦137088 in¦137089 him¦137090, to¦137091 life¦137092 eternal¦137093.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "1TI 1:17"
},
"And¦137095 to¦137094_the¦137094 king¦137096 of¦137097_the¦137097 ages¦137098, ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137099"
]
},
"_indestructible¦137099, invisible¦137100, only¦137101 ",
{
"type": "char",
"marker": "nd",
"content": [
"god¦137103"
]
},
", honour¦137104 and¦137105 glory¦137106 ",
{
"type": "char",
"marker": "add",
"content": [
"be¦137106"
]
},
", to¦137107 the¦137108 ages¦137109 of¦137110_the¦137110 ages¦137111. Truly¦137112.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "1TI 1:18"
},
"This¦137113 untr the¦137114untr* charge¦137115 I¦137116_am¦137116_entrusting¦137116 to¦137117_you¦137117, child¦137118, Timotheos¦137119, according¦137120_to¦137120 the¦137121 prophesies¦137125 going¦137122_before¦137122 to¦137123 you¦137124, that¦137126 you¦137127_may¦137127_be¦137127_warring¦137127 by¦137129 them¦137130 the¦137131 good¦137132 warfare¦137133,\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "1TI 1:19"
},
"holding¦137134 faith¦137135 and¦137136 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137137"
]
},
"_good¦137137 conscience¦137138, which¦137139 some¦137140 having¦137141_pushed¦137141_away¦137141, concerning¦137142 their¦137143 faith¦137144 they¦137145_suffered¦137145_shipwreck¦137145,\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "1TI 1:20"
},
"of¦137146_whom¦137146 is¦137147 Humenaios¦137148 and¦137149 Alexandros¦137150, whom¦137151 I¦137152_gave¦137152_over¦137152 to¦137154_ untr the¦137153untr* _Satan/(Sāţān)¦137154, in¦137155_order¦137155_that¦137155 they¦137156_may¦137156_be¦137156_disciplined¦137156 not¦137157 to¦137158_be¦137158_slandering¦137158.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "1TI 2"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "1TI 2:1"
},
"Therefore¦137160 I¦137159_am¦137159_exhorting¦137159, first¦137161 of¦137162_all¦137162 petitions¦137164, prayers¦137165, petitions¦137166, thanksgivings¦137167 to¦137163_be¦137163_being¦137163_made¦137163, because/for¦137168 all¦137169 people¦137170,\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "1TI 2:2"
},
"for¦137171 kings¦137172 and¦137173 all¦137174 who¦137175 being¦137178 in¦137176 prominence¦137177, in¦137179_order¦137179_that¦137179 we¦137184_may¦137184_be¦137184_going¦137184_by¦137184 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137180"
]
},
"_tranquil¦137180 and¦137181 quiet¦137182 living¦137183 in¦137185 all¦137186 devoutness¦137187 and¦137188 dignity¦137189.\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "1TI 2:3"
},
"This¦137190 ",
{
"type": "char",
"marker": "add",
"content": [
"=is¦137190"
]
},
" good¦137192 and¦137193 acceptable¦137194 before¦137195 ",
{
"type": "char",
"marker": "nd",
"content": [
"god¦137199"
]
},
" the¦137196 saviour¦137197 of¦137198_us¦137198,\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "1TI 2:4"
},
"who¦137200 is¦137203_wanting¦137203 all¦137201 people¦137202 to¦137204_be¦137204_saved¦137204, and¦137205 to¦137209_come¦137209 to¦137206 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137207"
]
},
"_knowledge¦137207 of¦137208_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137208"
]
},
"_truth¦137208.\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "1TI 2:5"
},
"For/Because¦137211 one¦137210 ",
{
"type": "char",
"marker": "nd",
"content": [
"god¦137212"
]
},
" ",
{
"type": "char",
"marker": "add",
"content": [
"there¦137212_is¦137212"
]
},
", also¦137214 one¦137213 mediator¦137215 between¦137216_",
{
"type": "char",
"marker": "nd",
"content": [
"god¦137216"
]
},
" and¦137217 humans¦137218, ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137219"
]
},
"_human¦137219 ",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦137220_one¦137220/messiah¦137220 Yaʸsous/(Yəhōshūˊa)¦137221"
]
},
",\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "1TI 2:6"
},
"the¦137222 ",
{
"type": "char",
"marker": "add",
"content": [
">one¦137222"
]
},
" having¦137223_given¦137223 himself¦137224 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137225"
]
},
"_ransom¦137225 for¦137226 all¦137227, and¦137228 testimony¦137230 in¦137231_ ",
{
"type": "char",
"marker": "add",
"content": [
"+its¦137232"
]
},
"_own¦137232 _seasons¦137231,\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "1TI 2:7"
},
"to¦137233 which¦137234 I¦137237 was¦137236_appointed¦137236 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137238"
]
},
"_proclaimer¦137238 and¦137239 ",
{
"type": "char",
"marker": "add",
"content": [
"+an¦137240"
]
},
"_ambassador¦137240 (I¦137242_am¦137242_speaking¦137242 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137241"
]
},
"_truth¦137241 in¦137243 ",
{
"type": "char",
"marker": "nd",
"content": [
"chosen¦137244_one¦137244/messiah¦137244"
]
},
", I¦137246_am¦137246_ not¦137245 _lying¦137246), ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137247"
]
},
"_teacher¦137247 of¦137248_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137248"
]
},
"_pagans¦137248 in¦137249 knowledge¦137251 and¦137253 truth¦137254.\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "1TI 2:8"
},
"Therefore¦137256 I¦137255_am¦137255_wishing¦137255 untr the¦137258untr* men¦137259 to¦137257_be¦137257_praying¦137257 in¦137260 every¦137261 place¦137262, lifted¦137263_up¦137263 devout¦137264 hands¦137265 apart¦137266_from¦137266 severe¦137267_anger¦137267 and¦137268 speculation¦137269.\n",
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "1TI 2:9"
},
"Likewise¦137271 women¦137274 in¦137275 respectable¦137277 apparel¦137276 to¦137282_be¦137282_adorning¦137282 themselves¦137283 with¦137278 modesty¦137279 and¦137280 sobriety¦137281, not¦137284 with¦137285 braids¦137287, and¦137288 gold¦137291, or¦137292 pearls¦137293, or¦137294 expensive¦137296 clothing¦137295,\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "1TI 2:10"
},
"but¦137297 what¦137298 is¦137299_befitting¦137299 to¦137300_women¦137300 professing¦137301 ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137302"
]
},
"_god-fearing¦137302, through¦137303 good¦137305 works¦137304.\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "1TI 2:11"
},
"˓Let¦137309˒_ ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137306"
]
},
"_woman¦137306 _be¦137309_learning¦137309 in¦137307 quietness¦137308 in¦137310 all¦137311 submission¦137312.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "1TI 2:12"
},
"But¦137315 I¦137319_am¦137319_ not¦137318 _permitting¦137319 to¦137313_be¦137313_teaching¦137313 by¦137316_",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137316"
]
},
"_women¦137316, nor¦137320 to¦137321_be¦137321_domineering¦137321 of¦137322_",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137322"
]
},
"_man¦137322, but¦137323 to¦137324_be¦137324 in¦137325 quietness¦137326.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "1TI 2:13"
},
"For/Because¦137328 Adam/(ʼĀdām)¦137327 was¦137330_formed¦137330 first¦137329, thereafter¦137331 Heua/(Ḩavvāh)¦137332,\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "1TI 2:14"
},
"and¦137333 Adam¦137334 was¦137336_ not¦137335 _seduced¦137336, but¦137338 the¦137337 woman¦137339 having¦137340_been¦137340_deceived¦137340, has¦137344_become¦137344 in¦137342 transgression¦137343.\n",
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "1TI 2:15"
},
"But¦137346 she¦137345_will¦137345_be¦137345_being¦137345_saved¦137345 through¦137347 untr the¦137348untr* childbearing¦137349, if¦137350 they¦137351_may¦137351_remain¦137351 in¦137352 faith¦137353, and¦137354 love¦137355, and¦137356 holiness¦137357, with¦137358 sobriety¦137359.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "3",
"sid": "1TI 3"
},
{
"type": "para",
"marker": "nb",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "1TI 3:1"
},
"The¦137361 saying¦137362 ",
{
"type": "char",
"marker": "add",
"content": [
"=is¦137360"
]
},
" trustworthy¦137360: If¦137363 anyone¦137364 is¦137366_aspiring¦137366 to¦137365_overseeing¦137365, he¦137369_is¦137369_desiring¦137369 of¦137367_",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137367"
]
},
"_good¦137367 work¦137368.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "1TI 3:2"
},
"Therefore¦137372 it¦137371_is¦137371_fitting¦137371 the¦137373 overseer¦137374 to¦137376_be¦137376 irreproachable¦137375, ",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137379"
]
},
"_husband¦137379 of¦137377_one¦137377 wife¦137378, sober¦137380, sensible¦137381, respectable¦137382, hospitable¦137383, teaching¦137384,\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "1TI 3:3"
},
"not¦137385 winebibbing¦137386, nor¦137387 ",
{
"type": "char",
"marker": "add",
"content": [
"+a¦137388"
]
},
"_bully¦137388, but¦137391 gentle¦137392, peaceable¦137393, ungreedy¦137394,\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "1TI 3:4"
},
"leading¦137399 of¦137395_his¦137395 own¦137396 house¦137397 well¦137398, having¦137401 children¦137400 in¦137402 submission¦137403, with¦137404 all¦137405 dignity¦137406\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "1TI 3:5"
},
"(but¦137408 if¦137407 someone¦137409 has¦137415_ not¦137414 _known¦137415 to¦137413_lead¦137413 of¦137410_his¦137410 own¦137411 house¦137412, how¦137416 ˓will¦137419˒_he¦137419_be¦137419_taking¦137419_care¦137419 of¦137417_",
{
"type": "char",
"marker": "add",
"content": [
"+the¦137417"
]
},
"_assembly¦137417 of¦137418_",
{
"type": "char",
"marker": "nd",