-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCOL.json
More file actions
2782 lines (2782 loc) · 56.5 KB
/
COL.json
File metadata and controls
2782 lines (2782 loc) · 56.5 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": "COL",
"content": [
"- Open English Translation—Readers’ Version (OET-RV) v0.1.55"
]
},
{
"type": "para",
"marker": "ide",
"content": [
"UTF-8\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"ESFM v0.6 COL\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"WORDTABLE OET-LV_NT_word_table.tsv\n"
]
},
{
"type": "para",
"marker": "h",
"content": [
"Colossians\n"
]
},
{
"type": "para",
"marker": "toc1",
"content": [
"Colossians\n"
]
},
{
"type": "para",
"marker": "toc2",
"content": [
"Colossians\n"
]
},
{
"type": "para",
"marker": "toc3",
"content": [
"Col.\n"
]
},
{
"type": "para",
"marker": "mt2",
"content": [
"Paul’s letter to the believers in\n"
]
},
{
"type": "para",
"marker": "mt1",
"content": [
"Colossae\n"
]
},
{
"type": "para",
"marker": "is1",
"content": [
"Introduction\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"This letter of Paul was written to the believers in Colossae, a town in Asia Minor (also called Anatolia, now part of modern Turkey) that’s almost 500km overland east of Ephesus. Paul had not yet visited Colossae, but he was very concerned for them and he had sent helpers from Ephesus.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"Paul had heard that there were false teachers influencing the believers there in Colossae. They taught that if a person wants to be saved and wants to deepen their faith in God, it’s not sufficient to have faith in the messiah because they said that it’s necessary to obey other restrictions and customs as well as worshipping angels.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"So Paul wrote to the believers there in Colossae and explained the truth concerning Yeshua the messiah. He told them that it’s Yeshua who made everything around us, therefore he’s greater than the angels and other unseen powers. He also saw the godliness of his father, and there’s no other source of life for believers other than him. So then it’s necessary that the believers don’t follow human customs and traditions, but rather, it’s necessary that they simply follow the messiah.\n"
]
},
{
"type": "para",
"marker": "ip",
"content": [
"It should be noted here that this letter, like most of the scriptures, was dictated to a scribe (See 2 Thess 3:17), so it was an oral letter, quite different from our modern letters which we edit with word-processing software, adding a word back in a previous sentence, combining two short sentences, or breaking an over-long sentence. Oral letters tend to contain a lot of ",
{
"type": "char",
"marker": "it",
"content": [
"run-on sentences"
]
},
" where the thoughts keep flowing without a break, thus 1:3-8 and 1:9-16 are considered by most Greek experts to be long sentences (like this one is 😀), however for us as readers, sentences with around a hundred words in them are very difficult for us to absorb, hence this ",
{
"type": "char",
"marker": "em",
"content": [
"Reader’s Version"
]
},
" breaks those long Greek sentences into a number of smaller sentences, in fact, this kind of adjustment is regularly done throughout the Bible by all major English translations in order to make them easier for us to read, but the disadvantage is that we can sometimes lose whatever the connection was between the consecutive thoughts. The ",
{
"type": "char",
"marker": "em",
"content": [
"OET"
]
},
" tries to be more transparent about such adjustments by placing the ",
{
"type": "char",
"marker": "em",
"content": [
"Literal Version"
]
},
" right beside this text so that the serious student can compare the two.\n"
]
},
{
"type": "para",
"marker": "iot",
"content": [
"Main components of Paul’s letter\n"
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Introduction ",
{
"type": "char",
"marker": "ior",
"content": [
"1:1-14"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The work of the messiah ",
{
"type": "char",
"marker": "ior",
"content": [
"1:15–2:19"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"The new life in the messiah ",
{
"type": "char",
"marker": "ior",
"content": [
"2:20–4:6"
]
}
]
},
{
"type": "para",
"marker": "io1",
"content": [
"Concluding remarks ",
{
"type": "char",
"marker": "ior",
"content": [
"4:7-18"
]
}
]
},
{
"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": "COL 1"
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Greetings from Paul; Salutation\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "COL 1:1"
},
{
"type": "char",
"marker": "add",
"content": [
"This letter is from"
]
},
" Paul, a missionary of ",
{
"type": "char",
"marker": "nd",
"content": [
"Messiah¦132527 Yeshua"
]
},
" by God’s will, and¦132533 ",
{
"type": "char",
"marker": "add",
"content": [
"from"
]
},
" our¦132535 brother¦132536 Timothy¦132534.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "COL 1:2"
},
"To the people ",
{
"type": "char",
"marker": "add",
"content": [
"there"
]
},
" in Colossae who are godly and faithful¦132542 brothers¦132543 and sisters¦132543 in Messiah.\n",
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Paul Thanks God for the Colossians; Thanksgiving and Prayer; Paul’s Thanksgiving and Prayer; Prayer of Thanksgiving\n"
]
}
]
},
{
"type": "para",
"marker": "p",
"content": [
"Grace and peace¦132550 to you¦132548 all from ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦132552"
]
},
" our¦132554 father¦132553 and ",
{
"type": "char",
"marker": "add",
"content": [
"the"
]
},
" ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦132556 Yeshua"
]
},
" Messiah.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Paul’s thanks and prayers\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "COL 1:3"
},
"We thank¦132559 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦132561"
]
},
", ",
{
"type": "char",
"marker": "add",
"content": [
"the"
]
},
" father¦132563 of our¦132566 ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦132565 Yeshua Messiah¦132568"
]
},
" as we continually pray for you¦132572 all,\n",
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "COL 1:4"
},
"after having heard¦132574 about your¦132577 faith¦132576 in ",
{
"type": "char",
"marker": "nd",
"content": [
"Messiah¦132580 Yeshua¦132581"
]
},
" and the love¦132584 that you have for all godly people\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "COL 1:5"
},
"which arose because¦132592 of your hope in a heavenly¦132600 reward. You all previously¦132602 heard¦132602 about that¦132595 in the message of the truth¦132607—the good message\n",
{
"type": "verse",
"marker": "v",
"number": "6",
"sid": "COL 1:6"
},
"that’s in you and that’s bearing¦132622 fruit¦132622 in the world¦132619 and growing, just like it did among¦132627 all of you from the day¦132631 that you heard¦132632 ",
{
"type": "char",
"marker": "add",
"content": [
"it"
]
},
" and knew¦132634 about the grace¦132636 of ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦132638"
]
},
" in truth¦132640.\n",
{
"type": "verse",
"marker": "v",
"number": "7",
"sid": "COL 1:7"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:7: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Col 4:12; Phm 23."
]
}
],
"caller": "+"
},
"You all learnt¦132643 that from Epaphras¦132645, our dearly loved fellow¦132648 slave who’s our faithful¦132653 servant¦132657 of the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦132659"
]
},
",\n",
{
"type": "verse",
"marker": "v",
"number": "8",
"sid": "COL 1:8"
},
"and he’s the one who made your¦132665 love¦132666 in the ",
{
"type": "char",
"marker": "nd",
"content": [
"spirit¦132668"
]
},
" evident¦132662 to us.\n",
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The supremacy of Christ\n"
]
}
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "9",
"sid": "COL 1:9"
},
"It’s because of that that we haven’t stopped praying¦132681 from the time that we heard¦132676 it¦132676, and requesting¦132683 that you all would be filled¦132685 with the knowledge¦132687 of his¦132690 will in all wisdom¦132693 and spiritual¦132696 insight¦132695,\n",
{
"type": "verse",
"marker": "v",
"number": "10",
"sid": "COL 1:10"
},
"to live worthily¦132699 of the ",
{
"type": "char",
"marker": "nd",
"content": [
"master¦132701"
]
},
"—pleasing¦132704 him in every¦132706 ",
{
"type": "char",
"marker": "add",
"content": [
"kind of"
]
},
" good¦132708 and¦132710 productive work¦132707. ",
{
"type": "char",
"marker": "add",
"content": [
"We pray that you all"
]
},
" will grow in the knowledge¦132715 of ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦132718"
]
},
"\n",
{
"type": "verse",
"marker": "v",
"number": "11",
"sid": "COL 1:11"
},
"and be strengthened with all power, according¦132723 to his¦132728 great power, ",
{
"type": "char",
"marker": "add",
"content": [
"leading to"
]
},
" endurance¦132731 and patience¦132733 with contentment.\n",
{
"type": "verse",
"marker": "v",
"number": "12",
"sid": "COL 1:12"
},
"Then you’ll all be thanking¦132737 the father¦132741, the one who qualified¦132745 you all for a part of the inheritance of godly people ",
{
"type": "char",
"marker": "add",
"content": [
"who live"
]
},
" in the light¦132757.\n",
{
"type": "verse",
"marker": "v",
"number": "13",
"sid": "COL 1:13"
},
"The father rescued¦132759 us from the power¦132763 of darkness¦132765 and¦132766 redirected¦132767 us into the kingdom¦132770 of his¦132775 dear son—\n",
{
"type": "verse",
"marker": "v",
"number": "14",
"sid": "COL 1:14"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:14: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Eph 1:7."
]
}
],
"caller": "+"
},
"the one who buys us out of slavery and forgives¦132787 our sins¦132789.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Yeshua is both the first and the highest\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 The Supremacy of Christ; Christ Is Supreme; The Person and Work of Christ\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "15",
"sid": "COL 1:15"
},
"The son is the ",
{
"type": "char",
"marker": "add",
"content": [
"visible"
]
},
" image¦132792 of the invisible¦132796 ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦132794"
]
},
", the firstborn¦132798 of all creation¦132800\n",
{
"type": "verse",
"marker": "v",
"number": "16",
"sid": "COL 1:16"
},
"because¦132801 it was him who created everything in the heavens¦132811 and on the earth¦132816, both visible¦132818 and invisible¦132821, including¦132812 all authorities¦132829 such as kingdoms and governments. ",
{
"type": "char",
"marker": "add",
"content": [
"Yes,"
]
},
" everything was created by him and for him.\n",
{
"type": "verse",
"marker": "v",
"number": "17",
"sid": "COL 1:17"
},
"He came before¦132846 everything and¦132848 everything ",
{
"type": "char",
"marker": "add",
"content": [
"still"
]
},
" only exists because of him¦132852.\n",
{
"type": "verse",
"marker": "v",
"number": "18",
"sid": "COL 1:18"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:18: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Eph 1:22-23."
]
}
],
"caller": "+"
},
"He is the head¦132858 of the body¦132860 which is the assembly¦132862. He is the beginning¦132867, the first of the dead¦132871 to come back to life, so that he would be the first in everything,\n",
{
"type": "verse",
"marker": "v",
"number": "19",
"sid": "COL 1:19"
},
"because¦132878 ",
{
"type": "char",
"marker": "add",
"content": [
"God"
]
},
" was pleased¦132882 to live in him¦132880 in all totality\n",
{
"type": "verse",
"marker": "v",
"number": "20",
"sid": "COL 1:20"
},
{
"type": "note",
"marker": "x",
"content": [
{
"type": "char",
"marker": "xo",
"content": [
"1:20: "
]
},
{
"type": "char",
"marker": "xt",
"content": [
"Eph 2:16."
]
}
],
"caller": "+"
},
"and to reconcile¦132890 everything to himself¦132895 through him—both things on earth¦132910 and things in the heavens¦132916. ",
{
"type": "char",
"marker": "add",
"content": [
"God"
]
},
" made peace¦132896 through him by means of the blood¦132899 at the ",
{
"type": "char",
"marker": "add",
"content": [
"execution¦132901"
]
},
" post.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "21",
"sid": "COL 1:21"
},
"Once all of you¦132918 were alienated ",
{
"type": "char",
"marker": "add",
"content": [
"from God"
]
},
"—your thinking was that of an enemy and¦132917 your actions were evil¦132930,\n",
{
"type": "verse",
"marker": "v",
"number": "22",
"sid": "COL 1:22"
},
"but¦132949 now you all have been reconciled¦132935 by means of the death¦132944 of ",
{
"type": "char",
"marker": "add",
"content": [
"Yeshua’s"
]
},
" physical body¦132938. He’s able to present¦132946 you as pure¦132948 and blameless¦132950 in front¦132953 of ",
{
"type": "char",
"marker": "add",
"content": [
"God"
]
},
"—unable to be charged for any infraction\n",
{
"type": "verse",
"marker": "v",
"number": "23",
"sid": "COL 1:23"
},
"if indeed you continue¦132957 on in your established¦132960 and firm faith¦132959. Don’t let ",
{
"type": "char",
"marker": "add",
"content": [
"anyone"
]
},
" drive away the hope that ",
{
"type": "char",
"marker": "add",
"content": [
"comes from"
]
},
" the good message that you all heard¦132973 and which has been proclaimed¦132975 throughout the whole world—it’s that good message that I’ve become a servant¦132992 of.\n"
]
},
{
"type": "para",
"marker": "s1",
"content": [
"Paul’s work for believers\n"
]
},
{
"type": "para",
"marker": "rem",
"content": [
"/s1 Paul’s Work as a Servant of the Church; Paul’s Interest in the Colossians; Paul’s Labour for the Church; Paul’s Work for the Church\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "24",
"sid": "COL 1:24"
},
"So now I’m happy to be suffering¦132998 for you all, and I’m catching up in my¦133014 body to the tribulations¦133008 of the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦133010"
]
},
" in his¦133018 body, which¦133019 is the assembly¦133023.\n",
{
"type": "verse",
"marker": "v",
"number": "25",
"sid": "COL 1:25"
},
"I became¦133025 a servant¦133028 of the assembly under God’s supervision when he gave¦133035 me the ",
{
"type": "char",
"marker": "add",
"content": [
"work"
]
},
" of fulfilling¦133039 God’s message¦133041—\n",
{
"type": "verse",
"marker": "v",
"number": "26",
"sid": "COL 1:26"
},
"the mystery¦133045 which had been hidden¦133047 away from the generations¦133054 over the ages, but¦133057 which was recently revealed¦133058 to his¦133061 chosen people.\n",
{
"type": "verse",
"marker": "v",
"number": "27",
"sid": "COL 1:27"
},
"God wanted them to explain the riches¦133071 of this incredible mystery¦133076 among¦133079 the pagans¦133081: the ",
{
"type": "char",
"marker": "nd",
"content": [
"messiah¦133085"
]
},
" in you¦133087 all bringing the hope of reaching God.\n",
{
"type": "verse",
"marker": "v",
"number": "28",
"sid": "COL 1:28"
},
{
"type": "char",
"marker": "add",
"content": [
"Yes,"
]
},
" Messiah who we are telling everyone about as we teach¦133100 and recommend to everyone, so that we might present¦133107 every person ",
{
"type": "char",
"marker": "add",
"content": [
"made"
]
},
" perfect¦133110 in Messiah.\n",
{
"type": "verse",
"marker": "v",
"number": "29",
"sid": "COL 1:29"
},
"That’s what I’m working hard towards according¦133119 to his¦133122 work as well—working in me with power¦133128.\n"
]
},
{
"type": "chapter",
"marker": "c",
"number": "2",
"sid": "COL 2"
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "1",
"sid": "COL 2:1"
},
"I want you all to know how much I struggle¦133134 for you and for those in Laodicea¦133142 and for those who’ve never actually set eyes on me.\n",
{
"type": "verse",
"marker": "v",
"number": "2",
"sid": "COL 2:2"
},
{
"type": "char",
"marker": "add",
"content": [
"By knowing that,"
]
},
" their¦133157 hearts¦133156 may be comforted¦133154, having¦133159 been held together¦133159 in love¦133161 and¦133162 to all the riches¦133167 of the full assurance¦133170 of the insight¦133172, to the knowledge¦133174 of the mystery¦133176 of ",
{
"type": "char",
"marker": "nd",
"content": [
"God¦133178"
]
},
", ",
{
"type": "char",
"marker": "nd",
"content": [
"Messiah¦133183"
]
},
". WHAT DOES THIS MEAN?\n",
{
"type": "verse",
"marker": "v",
"number": "3",
"sid": "COL 2:3"
},
{
"type": "char",
"marker": "add",
"content": [
"He holds"
]
},
" all the treasures¦133189 of wisdom¦133191 and¦133192 secret¦133195 knowledge¦133194.\n"
]
},
{
"type": "para",
"marker": "p",
"content": [
{
"type": "verse",
"marker": "v",
"number": "4",
"sid": "COL 2:4"
},
"I’m telling you all this so that none of you will be deceived by persuasive¦133207 talk,\n",
{
"type": "verse",
"marker": "v",
"number": "5",
"sid": "COL 2:5"
},
"because¦133209 even though I’m physically far way, I’m with you all in the spirit¦133216. I’m pleased to see the sensibleness and firmness¦133228 of your¦133223 faith¦133232 in ",
{
"type": "char",