-
Notifications
You must be signed in to change notification settings - Fork 4
/
1053.xml
2495 lines (2494 loc) · 131 KB
/
1053.xml
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
<?oxygen RNGSchema="enrich-syriaca.rnc" type="compact"?>
<?xml-stylesheet type="text/css" href="SRPEnrichCSS.css"?>
<TEI xml:lang="en" xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader xmlns="http://www.tei-c.org/ns/1.0">
<fileDesc>
<titleStmt>
<title xml:lang="en">BL Add MS 17257</title>
<sponsor>Syriaca.org: The Syriac Reference Portal</sponsor>
<funder>The National Endowment for the Humanities</funder>
<funder>The Andrew W. Mellon Foundation</funder>
<principal>David A. Michelson</principal>
<editor role="general-editor" ref="http://syriaca.org/documentation/editors.xml#dmichelson">David A. michelson</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#dmichelson">David A. Michelson</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#dgreeson">Daniel J. Greeson</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#thannah">Tucker D. Hannah</editor>
<editor role="creator" ref="http://syriaca.org/documentation/editors.xml#raydin">Robert Aydin</editor>
<respStmt>
<resp>Created by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#dgreeson">Daniel J. Greeson</name>
</respStmt>
<respStmt>
<resp>Edited by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#thannah">Tucker D. Hannah</name>
</respStmt>
<respStmt>
<resp>Syriac text entered by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#raydin">Robert Aydin</name>
</respStmt>
<respStmt>
<resp>Greek and coptic text entry and proofreading by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#rstitt">Ryan Stitt</name>
</respStmt>
<respStmt>
<resp>Project management by</resp>
<name type="person" ref="http://syriaca.org/documentation/editors.xml#ewalston">Elizabeth Walston</name>
</respStmt>
<respStmt>
<resp>English text entry and proofreading by</resp>
<name type="org" ref="http://syriaca.org/documentation/editors.xml#uasyriacaresearchgroup">Syriac Research Group, University of Alabama</name>
</respStmt>
</titleStmt>
<editionStmt>
<edition n="1.0"/>
</editionStmt>
<publicationStmt>
<pubPlace/>
<authority>Syriaca.org: The Syriac Reference Portal </authority>
<idno type="URI">http://syriaca.org/manuscript/1053/tei</idno>
<availability>
<p/>
<licence target="http://creativecommons.org/licenses/by/3.0/">
<p>Distributed under a Creative Commons Attribution 3.0 Unported License</p>
</licence>
</availability>
<date calendar="Gregorian"><!-- Our date of publication of this XML document--></date>
</publicationStmt>
<sourceDesc>
<msDesc xml:id="manuscript-1053" xml:lang="en">
<msIdentifier>
<country>United Kingdom</country>
<settlement>London</settlement>
<repository>British Library</repository>
<collection>Oriental Manuscripts</collection>
<idno type="URI">http://syriaca.org/manuscript/1053</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17257</idno>
</altIdentifier>
</msIdentifier>
<msPart n="1" xml:id="Part1">
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/1054</idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS 17527 foll. 1-21</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic">207</idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman">CCVII</idno>
</altIdentifier>
</msIdentifier>
<msContents>
<summary/><!--Note: Do not manually enter summary. We will automatically generate this from the @class later-->
<textLang mainLang="syr">Syriac</textLang><!-- For now just keep language as Syriac, this may change later. Note use ISO 639-1 codes if available then 639-2 otherwise, for example, Ancient Greek is grc in ISO-639-2-->
<msItem n="1" xml:id="p1a1" defective="">
<!-- Note the convention for <msItem> attributes. @n is a steady, uninterrupted count of all <msItem>s in this <msPart>, regardless ofhierarchical level. It does not break or restart until another <msPart>. @xml:id consists of 3 units: the msPart identifier [p1; this unit can be deleted if there is only one msPart], the msItem hierarchy position [a] and the hierarchy count [1].-->
<!-- Use @defective for any msitems which Wright explicitly reports as imperfect or wanting, or delete it if he does not-->
<locus from="" to=""/>
<author ref=""/><!-- This will be a URI look up from our Author spreadsheet, there may be URIs for some anonymous works (the book of steps for example)-->
<title ref="" type="supplied"><!-- This is the English, Latin, or Modern title supplied by Wright. Include URI but only for Biblical Books or Anonymous Works --></title>
<rubric xml:lang="syr"><!-- If the msItem has an original language title given in the manuscript, put it here. Wright may call this "entitled" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</rubric>
<incipit xml:lang="syr"><!-- If the opening lines of the text proper of the msItem are given put it here, Wright may call this "it begins" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</incipit>
<quote xml:lang="syr"><!-- If Wright gives any other quote from the original that does not fit into one of the above or below categories, put it here (otherwise this element may be deleted) -->
<locus from="" to=""/>
</quote>
<explicit xml:lang="syr"><!-- If the closing lines of the text proper of the msItem are given put it here. Wright appears not to give many explicits. (otherwise this element may be deleted) -->
<locus from="" to=""/>
</explicit>
<finalRubric xml:lang="syr"><!-- Put here any additional prose original to the manuscript that denotes the end or division of this msItem from the next, Wright may call this a "subscription" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</finalRubric>
<colophon>
<ref target="">See below.<!-- The colophon is distinguished from the final rubric in that it is not necessarily about the end of the text. It may be a note about the original scribe or patron. The text of the colophon is NOT included here but below as an addition, the ref target provides the link -->
</ref>
</colophon>
<note><!-- Any additional notation supplied by Wright (otherwise this element may be deleted) --></note>
<listBibl>
<bibl><!-- Only use this if Wright refers to a bibliographic item beyond his catalogue. Otherwise the <listBibl> block may be deleted. --></bibl>
</listBibl>
</msItem>
<msItem n="2" xml:id="p1a2" defective=""><!-- Note how the @n and @xml:id change to reflect the msItem. @n shows <msItem> #2. @xml:id shows that this is the second a-level <msItem> in part 1. -->
<locus from="" to=""/>
<author ref=""/><!-- This will be a URI look up from our Author spreadsheet, there may be URIs for some anonymous works (the book of steps for example)-->
<title ref="" type="supplied"><!-- This is the English, Latin, or Modern title supplied by Wright. Include URI but only for Biblical Books or Anonymous Works --></title>
<rubric xml:lang="syr"><!-- If the msItem has an original language title given in the manuscript, put it here. Wright may call this "entitled" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</rubric>
<incipit xml:lang="syr"><!-- If the opening lines of the text proper of the msItem are given put it here, Wright may call this "it begins" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</incipit>
<quote xml:lang="syr"><!-- If Wright gives any other quote from the original that does not fit into one of the above or below categories, put it here (otherwise this element may be deleted) -->
<locus from="" to=""/>
</quote>
<explicit xml:lang="syr"><!-- If the closing lines of the text proper of the msItem are given put it here. Wright appears not to give many explicits. (otherwise this element may be deleted) -->
<locus from="" to=""/>
</explicit>
<finalRubric xml:lang="syr"><!-- Put here any additional prose original to the manuscript that denotes the end or division of this msItem from the next, Wright may call this a "subscription" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</finalRubric>
<colophon>
<ref target="">See below.<!-- The colophon is distinguished from the final rubric in that it is not necessarily about the end of the text. It may be a note about the original scribe or patron. The text of the colophon is NOT included here but below as an addition, the ref target provides the link -->
</ref>
</colophon>
<note><!-- Any additional notation supplied by Wright (otherwise this element may be deleted) --></note>
<listBibl>
<bibl><!-- Only use this if Wright refers to a bibliographic item beyond his catalogue. Otherwise the <listBibl> block may be deleted. --></bibl>
</listBibl>
<msItem n="3" xml:id="p1b1" defective=""><!-- Note how the @xml:id changes here to indicate a nested msItem within item number 2. @n shows <msItem> #3. @xml:id shows the first b-level <msItem> in part 1. Note also that <msItem n="2"...> has not closed yet.-->
<locus from="" to=""/>
<author ref=""/><!-- This will be a URI look up from our Author spreadsheet, there may be URIs for some anonymous works (the book of steps for example)-->
<title ref="" type="supplied"><!-- This is the English, Latin, or Modern title supplied by Wright. Include URI but only for Biblical Books or Anonymous Works --></title>
<rubric xml:lang="syr"><!-- If the msItem has an original language title given in the manuscript, put it here. Wright may call this "entitled" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</rubric>
<incipit xml:lang="syr"><!-- If the opening lines of the text proper of the msItem are given put it here, Wright may call this "it begins" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</incipit>
<quote xml:lang="syr"><!-- If Wright gives any other quote from the original that does not fit into one of the above or below categories, put it here (otherwise this element may be deleted) -->
<locus from="" to=""/>
</quote>
<explicit xml:lang="syr"><!-- If the closing lines of the text proper of the msItem are given put it here. Wright appears not to give many explicits. (otherwise this element may be deleted) -->
<locus from="" to=""/>
</explicit>
<finalRubric xml:lang="syr"><!-- Put here any additional prose original to the manuscript that denotes the end or division of this msItem from the next, Wright may call this a "subscription" (otherwise this element may be deleted) -->
<locus from="" to=""/>
</finalRubric>
<colophon>
<ref target="">See below.<!-- The colophon is distinguished from the final rubric in that it is not necessarily about the end of the text. It may be a note about the original scribe or patron. The text of the colophon is NOT included here but below as an addition, the ref target provides the link -->
</ref>
</colophon>
<note><!-- Any additional notation supplied by Wright (otherwise this element may be deleted) --></note>
<listBibl>
<bibl><!-- Only use this if Wright refers to a bibliographic item beyond his catalogue. Otherwise the <listBibl> block may be deleted. --></bibl>
</listBibl>
</msItem>
</msItem><!-- <msItem n="2" xml:id="p1a2"> closes here after its subordinated item(s). -->
</msContents>
<physDesc>
<objectDesc form="codex"><!-- @form can be "codex", "leaf", "scroll" or "other" -->
<supportDesc material=""><!-- @material can be "chart" (paper), "mixed", "perg" (parchment/vellum), or "unknown" -->
<support>
<material><!-- Use Wright's vocabulary for material here --></material>
</support>
<extent>
<measure type="composition" unit="leaf" quantity=""><!-- Enter the number of folia here (followed by "f." if a single folio and by "ff." if more than one folia) and in @quantity (e.g., ...quantity="25"> 25 ff. </measure>) --></measure>
<dimensions type="" unit="in">
<!-- @type can be "binding", "boxed", "leaf", "line-height", "slip", "unknown" or "written". Will usually be "leaf". -->
<!-- @unit can be "chars", "cm", "in", "lines" or "mm". Will usually be "in". -->
<height>
<measure type="height" quantity="9.25" unit="in">9 1/4</measure><!-- Change @quantity and the human-readable text as necessary -->
</height>
<width>
<measure type="width" quantity="5.375" unit="in">5 3/8</measure><!-- Change @quantity and the human-readable text as necessary -->
</width>
</dimensions>
<!-- Repeat the <dimensions> block as needed to record all types of measurements that Wright supplies
e.g., <dimensions type="written" unit="in">
<height></height>
<width></width>
</dimensions>, etc. -->
</extent>
<foliation type="ancient"><!-- Probably not used, unless page numbers are mentioned. --><!-- Policy is to put Wright' description into collation and condition --></foliation>
<collation>
<p/><!-- Collation will usually be just a prose description. Any mention of quire numbering or lettering also goes here.-->
</collation>
<condition>
<list>
<item>
<p><!-- Reproduce Wright's prose regarding the condition, tagging any , persons, places, foreign words, etc. as necessary taggging loci is optional --></p>
</item><!-- Repeat the <item> block for each entry about the condition of this msPart -->
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="" writtenLines=""><!-- @writtenLines should not contain anything but numbers and whitespaces (e.g., 22 to 25 lines per page would be written as: writtenLines="22 25") -->
<locus from="" to=""/><!-- Only use locus if there is more than one layout in the MS, eg if the number of columns changes half of the way through -->
<p><!-- Include Wright's prose here --></p>
</layout><!-- If there is a change partway through the manuscript part in the number of columns or written lines per page, repeat the <layout> block for each new layout -->
</layoutDesc>
</objectDesc>
<handDesc hands=""><!-- The value of @hands should match the number of <handNote> elements included in the <handDesc> for this msPart. -->
<handNote xml:id="p1handNote1" scope="" script="" medium=""><!-- @xml:id should be sequentially assigned as "p1handNote1", "p1handNote2", and so on. If there is only one <msPart>, then the "p1" need not be included. -->
<!-- @scope may be "major" (for the majority hand), "minor" (for additional hands), or "sole" (if there is only one hand)-->
<!-- @script please use the ISO code combinations cited here: ___ -->
<!-- @medium may contain any phrasing Wright may mention (using hyphens between words, not white space), or "unknown" if he does not -->
<desc><!-- Include Wright's prose here. May also contain <locus> and other tags as necessary. --></desc>
</handNote><!-- If there is more than one hand for this msPart, create a new handNote with a unique @xml:id for each -->
</handDesc>
<decoDesc>
<decoNote xml:id="p1decoNote1" type="" medium=""><!-- @xml:id should be assigned sequentially as "p1decoNote1", "p1decoNote2", etc. If there is only one <msPart>, then the "p1" need not be included.-->
<!-- There are many valid entries for @type. See manual for a complete list. -->
<desc><!-- Include Wright's prose here. May also contain <locus> and other tags as necessary. --></desc>
</decoNote><!-- Repeat <decoNote> block as necessary for multiple decorative elements. -->
</decoDesc><!-- IF <decoDesc> IS NOT USED, delete nested elements and make it an empty element.-->
<additions>
<p/><!-- If Wright has any general comments about the msPart's additions, they may be entered in the <p> here. -->
<list>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item><!-- Include in the <quote> any marginalia or colophons to the manuscript. Add more <item> blocks as necessary. -->
<!-- See manual for how to link the person and/or the handnote to the addition, when possible do both or at least handnote if no person is mentioned-->
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
</list>
</additions><!-- IF <additions> IS NOT USED, delete nested elements and make it an empty element.-->
<bindingDesc>
<binding xml:id="p1binding1" contemporary=""/><!-- <binding> block may be repeated as necessary. --><!-- @contemporary designates whether or not the binding is contemporary with the contents. -->
<decoNote xml:id="p1bindingdeco1"/><!-- Only discuss decorations here that pertain specifically to the binding. Other decorations should occur above in the <decoDesc>. This <decoNote> may be repeated as necessary. -->
<condition/><!-- Only include here the condition of the binding specifically. Other conditions should be noted in the <condition> section of <supportDesc> above. -->
</bindingDesc><!-- IF <bindingDesc> IS NOT USED, delete nested elements and make it an empty element.-->
<sealDesc>
<seal xml:id="p1seal1" contemporary="">
<p/><!-- Tag names, dates, bibl references, etc. as necessary. -->
</seal><!-- <seal> block may be repeated as necessary for each seal. -->
</sealDesc><!-- IF <sealDesc> IS NOT USED, delete nested elements and make it an empty element.-->
<accMat><!-- Use this for any mention of closely-related accompanying material (documents, artifacts, letters) which are associated with the <msPart> -->
<p/><!-- Tag names, dates, bibl references, etc. as necessary. -->
</accMat><!-- IF <accMat> IS NOT USED, delete nested elements and make it an empty element.-->
</physDesc>
<history>
<origin>
<origDate notBefore="" notAfter=""><!-- Include Wright's estimated dating of the manuscript here in prose --></origDate><!-- Enter year numbers in @notBefore and @notAfter as four-digit numbers (e.g., 6th century is written as: notBefore="0500" notAfter="0600"). If a precise date is known use @when instead.-->
<origPlace><!-- Include place if place of composition is mentioned --></origPlace><!-- Repeat <origPlace> and specify @xml:lang if the place name is given in multiple languages. -->
</origin>
<provenance>
<p><!-- Enter the provenance of the manuscript part here, tagging dates, people, places, etc. as necessary, use multiple entries as needed --></p>
</provenance><!-- IF <provenance> IS NOT USED, delete nested elements and make it an empty element.-->
<acquisition/><!-- This will likely not be used as this refers only to the acquisition by the final/current owner, i.e., the British Library. -->
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart1">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist><!-- If there is a history of conservation efforts on the <msPart> -->
<custEvent type="">
<p/>
</custEvent><!-- <custEvent> block may be repeated for each new event -->
</custodialHist><!-- IF <custodialHist> IS NOT USED, delete nested elements and make it an empty element.-->
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart1"><!-- Note that this <bibl> entry is identified as Wrightpart1 since Part 2 will use a different cited range. If there is only one msPart, then this @xml:id and all tags referring to it should simply be: "Wright" -->
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry"><!-- Include Wright's entry number for this manuscript part here (e.g., VI) --></citedRange>
<citedRange unit="pp"><!-- Include Wright's page number for this manuscript part here in the format vol#:pp# (e.g., I:6) --></citedRange>
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="2" xml:id="Part2"><!-- Note here that Part 2 begins and will likely have all new information from the msItems in Part 1-->
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/<!-- Insert the msPart's Syriaca.org URI number here for this part, number should be a sequential number assigned in the Wright decoder --></idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS <!-- Add MS + the name of manuscript and the folia of part 1 (e.g., Add MS 14444 foll. 25-38) (note: do not use commas and do be consistent about " foll. x-x" folia numbers. Do not put a period at the end.)--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic"><!-- Enter the Arabic numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman"><!-- Enter the Roman numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
</msIdentifier>
<msContents class="">
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p2a1" defective=""><!-- Notice how the msItem's @xml:id reflects that this item is in Part 2. @n has restarted for the new msPart. @xml:id shows the first a-level <msItem> in part 2. -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric><!-- Remember that <rubric>, <incipit>, <quote>, <explicit>, <finalRubric>, <colophon>, <note>, and <listBibl> should be deleted if they are not used -->
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
<msItem n="2" xml:id="p2a2" defective=""><!-- Repeat and subordinate additional msItems as necessary -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric>
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
</msContents>
<physDesc>
<objectDesc form="">
<supportDesc material="">
<support><material/></support>
<extent>
<measure type="composition" unit="leaf" quantity=""/>
<dimensions type="" unit="in">
<height>
<measure type="height" quantity="" unit="in"/>
</height>
<width>
<measure type="width" quantity="" unit="in"/>
</width>
</dimensions>
</extent>
<foliation type="ancient">
<locus/>
<p/>
</foliation>
<collation>
<p/>
</collation>
<condition>
<list>
<item>
<p/>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="" writtenLines="">
<locus from="" to=""/>
<p/>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="">
<handNote xml:id="p2handNote1" scope="" script="" medium=""><!-- Note that @xml:id reflects part 2 -->
<desc></desc>
</handNote>
</handDesc>
<decoDesc>
<decoNote xml:id="p2decoNote1" type="" medium="">
<desc></desc>
</decoNote>
</decoDesc>
<additions>
<p/>
<list>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
</list>
</additions>
<bindingDesc>
<binding xml:id="p2binding1" contemporary=""/>
<decoNote xml:id="p2bindingdeco1"/>
<condition/>
</bindingDesc>
<sealDesc>
<seal xml:id="p2seal1" contemporary="">
<p/>
</seal>
</sealDesc>
<accMat>
<p/>
</accMat>
</physDesc>
<history>
<summary/>
<origin>
<origDate notBefore="" notAfter=""/>
<origPlace></origPlace>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart2">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist>
<custEvent type="">
<p/>
</custEvent>
</custodialHist>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart2"><!-- In this manuscript part the references and the xml:id reflect that a different cited range of Wright is of concern than in Part 1 -->
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry"><!-- Include Wright's entry number for this manuscript part here (e.g., X) --></citedRange>
<citedRange unit="pp"><!-- Include Wright's page number for this manuscript part here in the format vol#:pp# (e.g., I:8) --></citedRange>
<!-- This is where a link to the PDF of the print cataloge would be. -->
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="3" xml:id="Part3"><!-- Note here that Part 2 begins and will likely have all new information from the msItems in Part 1-->
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/<!-- Insert the msPart's Syriaca.org URI number here for this part, number should be a sequential number assigned in the Wright decoder --></idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS <!-- Add MS + the name of manuscript and the folia of part 1 (e.g., Add MS 14444 foll. 25-38) (note: do not use commas and do be consistent about " foll. x-x" folia numbers. Do not put a period at the end.)--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic"><!-- Enter the Arabic numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman"><!-- Enter the Roman numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
</msIdentifier>
<msContents class="">
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p3a1" defective=""><!-- Notice how the msItem's @xml:id reflects that this item is in Part 2. @n has restarted for the new msPart. @xml:id shows the first a-level <msItem> in part 2. -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric><!-- Remember that <rubric>, <incipit>, <quote>, <explicit>, <finalRubric>, <colophon>, <note>, and <listBibl> should be deleted if they are not used -->
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
<msItem n="3" xml:id="p3a2" defective=""><!-- Repeat and subordinate additional msItems as necessary -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric>
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
</msContents>
<physDesc>
<objectDesc form="">
<supportDesc material="">
<support><material/></support>
<extent>
<measure type="composition" unit="leaf" quantity=""/>
<dimensions type="" unit="in">
<height>
<measure type="height" quantity="" unit="in"/>
</height>
<width>
<measure type="width" quantity="" unit="in"/>
</width>
</dimensions>
</extent>
<foliation type="ancient">
<locus/>
<p/>
</foliation>
<collation>
<p/>
</collation>
<condition>
<list>
<item>
<p/>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="" writtenLines="">
<locus from="" to=""/>
<p/>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="">
<handNote xml:id="p3handNote1" scope="" script="" medium=""><!-- Note that @xml:id reflects part 2 -->
<desc></desc>
</handNote>
</handDesc>
<decoDesc>
<decoNote xml:id="p2decoNote1" type="" medium="">
<desc></desc>
</decoNote>
</decoDesc>
<additions>
<p/>
<list>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
</list>
</additions>
<bindingDesc>
<binding xml:id="p2binding1" contemporary=""/>
<decoNote xml:id="p2bindingdeco1"/>
<condition/>
</bindingDesc>
<sealDesc>
<seal xml:id="p2seal1" contemporary="">
<p/>
</seal>
</sealDesc>
<accMat>
<p/>
</accMat>
</physDesc>
<history>
<summary/>
<origin>
<origDate notBefore="" notAfter=""/>
<origPlace></origPlace>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart3">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist>
<custEvent type="">
<p/>
</custEvent>
</custodialHist>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart3"><!-- In this manuscript part the references and the xml:id reflect that a different cited range of Wright is of concern than in Part 1 -->
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry"><!-- Include Wright's entry number for this manuscript part here (e.g., X) --></citedRange>
<citedRange unit="pp"><!-- Include Wright's page number for this manuscript part here in the format vol#:pp# (e.g., I:8) --></citedRange>
<!-- This is where a link to the PDF of the print cataloge would be. -->
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="4" xml:id="Part4"><!-- Note here that Part 2 begins and will likely have all new information from the msItems in Part 1-->
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/<!-- Insert the msPart's Syriaca.org URI number here for this part, number should be a sequential number assigned in the Wright decoder --></idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS <!-- Add MS + the name of manuscript and the folia of part 1 (e.g., Add MS 14444 foll. 25-38) (note: do not use commas and do be consistent about " foll. x-x" folia numbers. Do not put a period at the end.)--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic"><!-- Enter the Arabic numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman"><!-- Enter the Roman numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
</msIdentifier>
<msContents class="">
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p4a1" defective=""><!-- Notice how the msItem's @xml:id reflects that this item is in Part 2. @n has restarted for the new msPart. @xml:id shows the first a-level <msItem> in part 2. -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric><!-- Remember that <rubric>, <incipit>, <quote>, <explicit>, <finalRubric>, <colophon>, <note>, and <listBibl> should be deleted if they are not used -->
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
<msItem n="2" xml:id="p4a2" defective=""><!-- Repeat and subordinate additional msItems as necessary -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric>
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
</msContents>
<physDesc>
<objectDesc form="">
<supportDesc material="">
<support><material/></support>
<extent>
<measure type="composition" unit="leaf" quantity=""/>
<dimensions type="" unit="in">
<height>
<measure type="height" quantity="" unit="in"/>
</height>
<width>
<measure type="width" quantity="" unit="in"/>
</width>
</dimensions>
</extent>
<foliation type="ancient">
<locus/>
<p/>
</foliation>
<collation>
<p/>
</collation>
<condition>
<list>
<item>
<p/>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="" writtenLines="">
<locus from="" to=""/>
<p/>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="">
<handNote xml:id="p4handNote1" scope="" script="" medium=""><!-- Note that @xml:id reflects part 2 -->
<desc></desc>
</handNote>
</handDesc>
<decoDesc>
<decoNote xml:id="p2decoNote1" type="" medium="">
<desc></desc>
</decoNote>
</decoDesc>
<additions>
<p/>
<list>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
</list>
</additions>
<bindingDesc>
<binding xml:id="p2binding1" contemporary=""/>
<decoNote xml:id="p2bindingdeco1"/>
<condition/>
</bindingDesc>
<sealDesc>
<seal xml:id="p2seal1" contemporary="">
<p/>
</seal>
</sealDesc>
<accMat>
<p/>
</accMat>
</physDesc>
<history>
<summary/>
<origin>
<origDate notBefore="" notAfter=""/>
<origPlace></origPlace>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart4">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist>
<custEvent type="">
<p/>
</custEvent>
</custodialHist>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart4"><!-- In this manuscript part the references and the xml:id reflect that a different cited range of Wright is of concern than in Part 1 -->
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry"><!-- Include Wright's entry number for this manuscript part here (e.g., X) --></citedRange>
<citedRange unit="pp"><!-- Include Wright's page number for this manuscript part here in the format vol#:pp# (e.g., I:8) --></citedRange>
<!-- This is where a link to the PDF of the print cataloge would be. -->
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="5" xml:id="Part5"><!-- Note here that Part 2 begins and will likely have all new information from the msItems in Part 1-->
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/<!-- Insert the msPart's Syriaca.org URI number here for this part, number should be a sequential number assigned in the Wright decoder --></idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS <!-- Add MS + the name of manuscript and the folia of part 1 (e.g., Add MS 14444 foll. 25-38) (note: do not use commas and do be consistent about " foll. x-x" folia numbers. Do not put a period at the end.)--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic"><!-- Enter the Arabic numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman"><!-- Enter the Roman numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
</msIdentifier>
<msContents class="">
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p5a1" defective=""><!-- Notice how the msItem's @xml:id reflects that this item is in Part 2. @n has restarted for the new msPart. @xml:id shows the first a-level <msItem> in part 2. -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric><!-- Remember that <rubric>, <incipit>, <quote>, <explicit>, <finalRubric>, <colophon>, <note>, and <listBibl> should be deleted if they are not used -->
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
<msItem n="2" xml:id="p5a2" defective=""><!-- Repeat and subordinate additional msItems as necessary -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric>
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
</msContents>
<physDesc>
<objectDesc form="">
<supportDesc material="">
<support><material/></support>
<extent>
<measure type="composition" unit="leaf" quantity=""/>
<dimensions type="" unit="in">
<height>
<measure type="height" quantity="" unit="in"/>
</height>
<width>
<measure type="width" quantity="" unit="in"/>
</width>
</dimensions>
</extent>
<foliation type="ancient">
<locus/>
<p/>
</foliation>
<collation>
<p/>
</collation>
<condition>
<list>
<item>
<p/>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="" writtenLines="">
<locus from="" to=""/>
<p/>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="">
<handNote xml:id="p5handNote1" scope="" script="" medium=""><!-- Note that @xml:id reflects part 2 -->
<desc></desc>
</handNote>
</handDesc>
<decoDesc>
<decoNote xml:id="p2decoNote1" type="" medium="">
<desc></desc>
</decoNote>
</decoDesc>
<additions>
<p/>
<list>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>
</list>
</additions>
<bindingDesc>
<binding xml:id="p2binding1" contemporary=""/>
<decoNote xml:id="p2bindingdeco1"/>
<condition/>
</bindingDesc>
<sealDesc>
<seal xml:id="p2seal1" contemporary="">
<p/>
</seal>
</sealDesc>
<accMat>
<p/>
</accMat>
</physDesc>
<history>
<summary/>
<origin>
<origDate notBefore="" notAfter=""/>
<origPlace></origPlace>
</origin>
<provenance/>
<acquisition/>
</history>
<additional>
<adminInfo>
<recordHist>
<source>Manuscript description based on <bibl><ref target="#Wrightpart5">Wright's Catalogue</ref></bibl>. abbreviated by the Syriaca.org editors.</source>
</recordHist>
<availability status="restricted"/>
<custodialHist>
<custEvent type="">
<p/>
</custEvent>
</custodialHist>
<note/>
</adminInfo>
<listBibl>
<bibl xml:id="Wrightpart5"><!-- In this manuscript part the references and the xml:id reflect that a different cited range of Wright is of concern than in Part 1 -->
<author>William Wright</author>
<title xml:lang="en">Catalogue of Syriac Manuscripts in the British Museum Acquired since the Year 1838</title>
<pubPlace>London</pubPlace>
<date>1870</date>
<ptr target="http://syriaca.org/bibl/8"/>
<citedRange unit="entry"><!-- Include Wright's entry number for this manuscript part here (e.g., X) --></citedRange>
<citedRange unit="pp"><!-- Include Wright's page number for this manuscript part here in the format vol#:pp# (e.g., I:8) --></citedRange>
<!-- This is where a link to the PDF of the print cataloge would be. -->
</bibl>
</listBibl>
</additional>
</msPart>
<msPart n="6" xml:id="Part6"><!-- Note here that Part 2 begins and will likely have all new information from the msItems in Part 1-->
<msIdentifier>
<idno type="URI">http://syriaca.org/manuscript/<!-- Insert the msPart's Syriaca.org URI number here for this part, number should be a sequential number assigned in the Wright decoder --></idno>
<altIdentifier>
<idno type="BL-Shelfmark">Add MS <!-- Add MS + the name of manuscript and the folia of part 1 (e.g., Add MS 14444 foll. 25-38) (note: do not use commas and do be consistent about " foll. x-x" folia numbers. Do not put a period at the end.)--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Arabic"><!-- Enter the Arabic numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
<altIdentifier>
<collection>William Wright, Catalogue of the Syriac Manuscripts in the British Museum Acquired since the Year 1838</collection>
<idno type="Wright-BL-Roman"><!-- Enter the Roman numeral Wright number here for this <msPart>.--></idno>
</altIdentifier>
</msIdentifier>
<msContents class="">
<summary/>
<textLang mainLang="syr">Syriac</textLang>
<msItem n="1" xml:id="p6a1" defective=""><!-- Notice how the msItem's @xml:id reflects that this item is in Part 2. @n has restarted for the new msPart. @xml:id shows the first a-level <msItem> in part 2. -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric><!-- Remember that <rubric>, <incipit>, <quote>, <explicit>, <finalRubric>, <colophon>, <note>, and <listBibl> should be deleted if they are not used -->
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
<msItem n="6" xml:id="p6a2" defective=""><!-- Repeat and subordinate additional msItems as necessary -->
<locus from="" to=""/>
<author ref=""/>
<title ref=""/>
<rubric xml:lang="syr"><locus from="" to=""/></rubric>
<incipit xml:lang="syr"><locus from="" to=""/></incipit>
<quote xml:lang="syr"><locus from="" to=""/></quote>
<explicit xml:lang="syr"><locus from="" to=""/></explicit>
<finalRubric xml:lang="syr"><locus from="" to=""/></finalRubric>
<colophon><ref target=""/>See below.</colophon>
<note/>
<listBibl>
<bibl/>
</listBibl>
</msItem>
</msContents>
<physDesc>
<objectDesc form="">
<supportDesc material="">
<support><material/></support>
<extent>
<measure type="composition" unit="leaf" quantity=""/>
<dimensions type="" unit="in">
<height>
<measure type="height" quantity="" unit="in"/>
</height>
<width>
<measure type="width" quantity="" unit="in"/>
</width>
</dimensions>
</extent>
<foliation type="ancient">
<locus/>
<p/>
</foliation>
<collation>
<p/>
</collation>
<condition>
<list>
<item>
<p/>
</item>
</list>
</condition>
</supportDesc>
<layoutDesc>
<layout columns="" writtenLines="">
<locus from="" to=""/>
<p/>
</layout>
</layoutDesc>
</objectDesc>
<handDesc hands="">
<handNote xml:id="p6handNote1" scope="" script="" medium=""><!-- Note that @xml:id reflects part 2 -->
<desc></desc>
</handNote>
</handDesc>
<decoDesc>
<decoNote xml:id="p2decoNote1" type="" medium="">
<desc></desc>
</decoNote>
</decoDesc>
<additions>
<p/>
<list>
<item n="" xml:id=""><locus from="" to=""/><ref target=""/><quote/></item>