-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00000026.xml
1362 lines (1357 loc) · 64.4 KB
/
00000026.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
<?xml version="1.0" encoding="UTF-8"?>
<!-- revised by Bradley D. Westbrook; edited by Arwen Hutt, Gabriela A. Montoya, and Bradley D. Westbrook, Digital Library Program, University of California, San Diego. -->
<METS_Profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd"
xmlns="http://www.loc.gov/METS_Profile/">
<URI LOCTYPE="URL">http://www.loc.gov/mets/profiles/00000026.xml</URI>
<title>UC San Diego Electronic Theses and Dissertations Profile</title>
<abstract>The UC San Diego Libraries uses this profile for Electronic Theses and Dissertations
authored by UC San Diego students. The primary document, be it a thesis or dissertation, is
contained in a PDF file. Associated, archival quality files may also be included in a METS
record for electronic theses and dissertations. For a list of file formats supported by the
UC San Diego Libraries see https://libraries.ucsd.edu/ark:/20775/br61775312/1-1.pdf. Access
restrictions to a certain ETD are expressed using PREMIS Rights metadata. Structural
relationships between the primary and associated files are not required in this profile. The
descriptive rules for UC San Diego ETDs conform to the "UC Standard Practice for Cataloging
UC Theses and Dissertations
(http://libraries.universityofcalifornia.edu/hots/camcig/ucthesesanddissertations.pdf). </abstract>
<date>2009-04-21T12:01:00</date>
<contact>
<name>Digital Library Program</name>
<address>Geisel Library, University of California, San Diego</address>
<email>[email protected]</email>
</contact>
<related_profile URI="http://www.loc.gov/mets/profiles/00000017.xml">UC San Diego Complex Object
Profile</related_profile>
<extension_schema>
<name>Metadata Object Description Schema (MODS)</name>
<URI>http://www.loc.gov/standards/mods/v3/mods-3-2.xsd</URI>
<context>mets/dmdSec/mdWrap/xmlData</context>
<note>Used for descriptive metadata representing the intellectual content of the thesis or
dissertation.</note>
</extension_schema>
<extension_schema>
<name>PREMIS</name>
<URI>http://www.loc.gov/standards/premis/premis.xsd</URI>
<context>mets/amdSec/techMD/mdWrap/xmlData</context>
<note>Used for technical and rights metadata about content files. </note>
</extension_schema>
<description_rules>
<p>All applications of MODS in UC San Diego METS records adhere to the MODS User Guidelines
published by the Library of Congress's Network Development and MARC Standards Office.</p>
<p>MODS usage in UC San Diego METS records is also informed by The Digital Library
Federation / Aquifer Implementation Guidelines for Shareable MODS Records.</p>
</description_rules>
<controlled_vocabularies>
<vocabulary>
<name>UC San Diego file USE attribute values</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<context ID="vc1" RELATEDMAT="fileSec2">
<p>mets/fileSec/fileGrp/@USE</p>
<p>mets/fileSec/fileGrp/file/@USE</p>
</context>
<description>
<p>These are the values supported for <file> and
<fileGrp> USE attributes for digital objects conforming to this
profile.</p>
</description>
</vocabulary>
<vocabulary>
<name>UC San Diego Rights Basis Vocabulary</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<context ID="vc2" RELATEDMAT="copyrightMD2 licenserightsMD2">
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/rightsBasis</p>
</context>
<description>
<p>These are the values supported for the PREMIS rightsBasis element for digital
objects conforming to this profile.</p>
</description>
</vocabulary>
<vocabulary>
<name>UC San Diego Rights Status Vocabulary</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<context ID="vc3" RELATEDMAT="copyrightMD3">
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/copyrightStatus</p>
</context>
<description>
<p>These are the values supported for the PREMIS copyrightStatus element for digital
objects conforming to this profile.</p>
</description>
</vocabulary>
<vocabulary>
<name>UC San Diego Rights Actions Vocabulary</name>
<maintenance_agency>University of California, San Diego Libraries</maintenance_agency>
<URI>https://libraries.ucsd.edu/ark:/20775/br7474471n/1-1.pdf</URI>
<context ID="vc4" RELATEDMAT="licenserightsMD3 licenserightsMD4">
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/rightsGranted/restriction</p>
<p>mets/amdSec/rightsMD/mdWrap/xmlData/rightsStatement/rightsGranted/action</p>
</context>
<description>
<p>These are the values supported for the PREMIS act and restriction elements for
digital objects conforming to this profile.</p>
</description>
</vocabulary>
</controlled_vocabularies>
<structural_requirements>
<metsRootElement>
<requirement ID="metsRoot1">
<p>The root <mets> element must include a LABEL attribute value.</p>
</requirement>
<requirement ID="metsRoot2">
<p>The root <mets> element must include a PROFILE attribute value.</p>
</requirement>
<requirement ID="metsRoot3">
<p>The root <mets> element must include an OBJID attribute value that
uniquely identifies the object in the UC San Diego digital repository.</p>
</requirement>
</metsRootElement>
<metsHdr>
<requirement ID="metsHdr1">
<p>A METS record conforming to this profile must contain a <metsHdr>
element.</p>
</requirement>
<requirement ID="metsHdr2">
<p>The <metsHdr> element must contain the CREATEDATE attribute.</p>
</requirement>
<requirement ID="metsHdr3">
<p>The <metsHdr> element must contain a <agent> with the
ROLE attribute value "CREATOR" and a TYPE attribute value "ORGANIZATION".</p>
</requirement>
<requirement ID="metsHdr4">
<p>The <metsHdr> must include a child <agent> element to
identify the department and or staff person responsible for creating the METS
record.</p>
</requirement>
<requirement ID="metsHdr5">
<p>The <metsHdr> element should, but is not required to, contain a
LASTMODDATE attribute reflecting the date of the last modification to the METS
record.</p>
</requirement>
</metsHdr>
<dmdSec>
<requirement ID="dmdSec1">
<p>A METS record conforming to this profile must contain one or more
<dmdSec> containing a <dmdWrap> with
<xmlData>. The required dmdSec/dmdWrap/xmlData must contain
elements from the Metadata Object Description Schema (MODS). Additional
<dmdSec> elements are permitted. For each additional metadata
schema a separate <dmdSec> should be used, and must contain
<mdWrap> with <xmlData>. When adding elements from
metadata schemas other than MODS (Dublin Core, VRA, FGDC, etc.) these should
conform to standardized guidelines for the schema.</p>
</requirement>
<requirement ID="dmdSec2">
<p>A conforming METS record must contain a /mods/titleInfo/title element for the
title of the dissertation or thesis.</p>
</requirement>
<requirement ID="dmdSec3">
<p>A conforming METS record must contain a /mods/name/namePart element indicating
the author of the dissertation or thesis.</p>
</requirement>
<requirement ID="dmdSec4">
<p>A conforming METS record must contain a /mods/typeOfResource element for which
the value must be "text " or "mixed material". If only the primary pdf file is
present, the value should be "text". When this primary file is accompanied by
associated files, the value should be "mixed material".</p>
</requirement>
<requirement ID="dmdSec5">
<p>A conforming METS record must contain a /mods/originInfo/dateCreated element.</p>
</requirement>
<requirement ID="dmdSec6">
<p>A conforming METS record must contain a /mods/note element with the value
constructed as follows: "[Thesis] ([degree])--University of California, San
Diego, [date]."</p>
</requirement>
<requirement ID="dmdSec7">
<p>A conforming METS record must contain a /mods/subject/genre with the attribute
authority="local". The value for the element should be as follows:
"Dissertations, Academic. UCSD. [Subject]".</p>
</requirement>
<requirement ID="dmdSec8">
<p>A conforming METS record should contain when applicable a /mods/identifier
element with the attribute type="proquest". The value for the element should be
the ProQuest number assigned to the dissertation or thesis.</p>
</requirement>
<requirement ID="dmdSec9">
<p>A conforming METS record must contain a mods/note element, with the attribute
displayLabel="Digital object made available by". The element should name the UC
San Diego Libraries' data provider that is primarily responsible for making the
resource available digitally with the URL for the provider's main webpage, e.g.
Mandeville Special Collections Library, University of California, San Diego, La
Jolla, CA 92093-0175 (http://orpheus.ucsd.edu/speccoll/)</p>
</requirement>
<requirement ID="dmdSec10">
<p>A conforming METS record should, but is not required to, contain the following
descriptive metadata elements when they are applicable: description
(/mods/abstract/), subject (/mods/subject/...), language of the object
(/mods/language).</p>
</requirement>
</dmdSec>
<amdSec>
<requirement ID="amdSec1">
<p>A METS record conforming to this profile must have an <amdSec>
section. The <amdSec> section must contain at least one
techMD/mdWrap/xmlData section and two rightsMD/mdWrap/xmlData sections.</p>
</requirement>
<requirement ID="techMD1">
<p>The required <techMD> must contain elements from the PREMIS
schema.</p>
</requirement>
<requirement ID="techMD2">
<p>The required techMD/mdWrap/xmlData must describe the primary (pdf) digital
file.</p>
</requirement>
<requirement ID="techMD3">
<p>The required techMD/mdWrap/xmlData must contain a /object/objectIdentifierType
and /objectIdentifierValue element</p>
</requirement>
<requirement ID="techMD4">
<p>The required techMD/mdWrap/xmlData must contain a /object/preservationLevel
element. The value should be either "Full" or "Bit-level".</p>
</requirement>
<requirement ID="techMD5">
<p>The required techMD/mdWrap/xmlData must contain a /object/objectCategory element.
The value should be "File".</p>
</requirement>
<requirement ID="techMD6">
<p>The required techMD/mdWrap/xmlData must contain a
/object/objectCharacteristics/compositionLevel element with the value set to
"0".</p>
</requirement>
<requirement ID="techMD7">
<p>The required techMD/mdWrap/xmlData must contain a
/object/objectCharacteristics/fixity/messageDigestAlgorithm and /messageDigest
element.</p>
</requirement>
<requirement ID="techMD8">
<p>The required techMD/mdWrap/xmlData must contain a
/object/objectCharacteristics/size element.</p>
</requirement>
<requirement ID="techMD9">
<p>The required techMD/mdWrap/xmlData must contain a
/object/objectCharacteristics/format/formatName element with the value set to
"PDF".</p>
</requirement>
<requirement ID="techMD10">
<p>The required techMD/mdWrap/xmlData must contain a
/object/creatingApplication/dateCreatedByApplication element.</p>
</requirement>
<requirement ID="techMD11">
<p>A conforming METS record should, but is not required to, include the following
PREMIS elements: <pre:storageMedium>
(/object/storage/storageMedium), <pre:formatVersion>
(/object/objectCharacteristics/formatVersion),
<pre:creatingApplicationName>
(/object/creatingApplication/creatingApplicationName, and
<pre:originalName> (/object/originalName)</p>
</requirement>
<requirement ID="techMD12">
<p>If there are appended file(s) considered to be preservation master(s), it is
recommended, but not required, that these be described in additional
<techMD> sections containing elements from the PREMIS schema.</p>
</requirement>
<requirement ID="techMD13">
<p>Additional <techMD> sections may be used, but are not required, to
supplement PREMIS technical descriptions for preservation master files. If the
supplemental description is for images, it should utilize elements from the MIX
schema. If description is for text, it should utilize elements from the TextMD
schema. If the description is for audio or video files, it should conform to an
extension schema endorsed by the METS Editorial Board (although at this date of
publication extension schemas have not yet been endorsed for audio or
video).</p>
</requirement>
<requirement ID="techMD14">
<p>Source or provenance metadata pertaining to image content files expressed as MIX,
can be included in a <techMD> section instead of a separate
<sourceMD> section.</p>
</requirement>
<requirement ID="copyrightMD1">
<p>The required rightsMD/mdWrap/xmlData must contain elements from the PREMIS Rights
schema.</p>
</requirement>
<requirement ID="copyrightMD2">
<p>A conforming METS record must include a rightsStatement/rightsBasis element with
the value expressed as "Copyright."</p>
</requirement>
<requirement ID="copyrightMD3">
<p>A conforming METS record must include a
rightsStatement/copyrightInformation/copyrightStatus element with the value
expressed as "Under copyright” if the work is still in copyright, or expressed
as “In the public domain” if copyright for the work has expired or been gifted
to the public domain.</p>
</requirement>
<requirement ID="copyrightMD4">
<p>A conforming METS record must include a
rightsStatement/copyrightInformation/copyrightJurisdiction element containing
the value “us” for the United States for UC San Diego dissertations and thesis.
If the dissertation or thesis was not authored in a US institution, then the
appropriate code for the jurisdictional context of the copyright should be taken
from ISO 3166. </p>
</requirement>
<requirement ID="copyrightMD5">
<p>A conforming METS record must have one
rightsStatement/copyrightInformation/copyrightNote element for identifying the
rights holder(s) of a thesis or dissertation. The value encoded is to be the
name of the copyright holder(s); usually the author(s) of the thesis or
dissertation. The note should be in the form of: “Rights Holder(s): [rights
holder’s name in normal order]". </p>
</requirement>
<requirement ID="copyrightMD6">
<p>A conforming METS record must have one
rightsStatement/copyrightInformation/copyrightNote elment for describing the use
intended for in distribution of the work. The note should be in the form of:
“Use: [note text].” The note text is: “Use: This work is available from the UC
San Diego Libraries. This digital copy of the work is intended to support
research, teaching, and private study. ” </p>
</requirement>
<requirement ID="copyrightMD7">
<p>A conforming METS record must have one
rightsStatement/copyrightInformation/copyrightNote element for describing
constraints placed on re-use or re-distribution of the work. The note should be
in the form of: “Constraint(s) on Use: [note text].” For a work under US
copyright, a typical dissertation or thesis, the note text shall be: “This work
is protected by the U.S. Copyright Law (Title 17, U.S.C.). Use of this work
beyond that allowed by “fair use” requires written permission of the copyright
holder(s). Responsibility for obtaining permissions and any use and distribution
of this work rests exclusively with the user and not the UC San Diego Libraries.
Inquiries can be made to the UC San Diego Libraries department having custody of
the work [include email alias for department].” If the work is in the public
domain, the note text shall be “This work may be used without prior permission.”
</p>
</requirement>
<requirement ID="licenserightsMD1">
<p>A second required rightsMD/mdWrap/xmlData must contain elements from the PREMIS
Rights schema.</p>
</requirement>
<requirement ID="licenserightsMD2">
<p>A conforming METS record must include a rightsStatement/rightsBasis element with
the value expressed as "License."</p>
</requirement>
<requirement ID="licenserightsMD3">
<p>A conforming METS record must include a rightsStatement/rightsGranted/act element
with the value expressed as "Display."</p>
</requirement>
<requirement ID="licenserightsMD4">
<p>In cases when public display is restricted (postponed) by the licensor, a
conforming METS record must include a rightsStatement/rightsGranted/restriction
element with the value expressed as "Display". </p>
</requirement>
<requirement ID="licenserightsMD5">
<p>In cases when public display is restricted by the licensor, a conforming METS
record must include a rightsStatement/rightsGranted/termOfGrant/startDate
element with the value indicating the time at which the restriction begins
(typically a date stipulated by the Office of Graduate Studies). Date must be
expressed in form YYYY-MM-DD.</p>
</requirement>
<requirement ID="licenserightsMD6">
<p>In cases when public display is restricted by the licensor, a conforming METS
record must include a rightsStatement/rightsGranted/termOfGrant/endDate element
with the value indicating the time at which the restriction concludes. Date must
be expressed in form YYYY-MM-DD.</p>
</requirement>
<requirement ID="licenserightsMD7">
<p>A conforming METS record may, but is not required, to include the following
PREMIS Rights elements: <pre:rightsStatementIdentifierType>
(/rightsStatement/rightsStatementIdentifier/rightsStatementIdentifierType),
<pre:rightsStatementIdentifierValue>
(/rightsStatement/rightsStatementIdentifier/rightsStatementIdentifierValue),
<pre:licenseIdentifierType>
(/rightsStatement/licenseInformation/licenseIdentifier/licenseIdentifierType),
<pre:licenseIdentifierValue>
(/rightsStatement/licenseInformation/licenseIdentifier/licenseIdentifierValue),
<pre:licenseTerms>
(/rightsStatement/licenseInformation/licenseTerms),
<pre:licenseNote>
(/rightsStatement/licenseInformation/licenseNote), and
<pre:rightsGrantedNote>
(/rightsStatement/rightsGranted/rightsGrantedNote), </p>
</requirement>
<requirement ID="sourceMD1">
<p>If source metadata is recorded, elements in the <sourceMD> sections
should be expressed using an extension schema endorsed by the METS Editorial
Board designed for expressing source metadata.</p>
</requirement>
<requirement ID="digiprovMD1">
<p>If provenance metadata is recorded, elements in the <digiprovMD>
sections should be expressed using an extension schema endorsed by the METS
Editorial Board designed for expressing provenance metadata.</p>
</requirement>
</amdSec>
<!-- This profile supports METS objects consisting of one PDF file and zero or more associated
file formats supported by the UC San Diego Libraries (see https://libraries.ucsd.edu/ark:/20775/br61775312/1-1.pdf ) -->
<fileSec>
<requirement ID="fileSec1">
<p>The <fileSec> for a compliant UC San Diego ETD METS record must
contain one <fileGrp> for the primary PDF.</p>
</requirement>
<requirement ID="fileSec2">
<p>The <fileGrp> must reference a file with the MIMETYPE of
application/pdf.</p>
</requirement>
<requirement ID="fileSec3">
<p>The <fileSec> for a compliant UC San Diego ETD METS record may
contain one or more additional <fileGrp> for one or more files
associated with the primary PDF file. For example, the <fileSec>
of an UC San Diego ETD METS record consisting of a PDF plus one sound recording
would contain one <fileGrp> representing the primary PDF and
another <fileGrp> representing the sound recording. No sequential
relationship (using the SEQ attribute) for these files need be expressed. </p>
</requirement>
<requirement ID="fileSec4">
<p>The additional <fileGrp> may only reference files with MIMETYPE of
TIFF, MP3, MPEG2, WAV, AIFF, EXE, MOV or AVI.</p>
</requirement>
<requirement ID="fileSec5">
<p>Each <fileGrp> must include a file USE attribute representing the
intended use of the referenced file(s).</p>
</requirement>
<requirement ID="fileSec6">
<p>Each <file> element must reference pertinent <techMD>
sections by including the relevant ID values in the ADMID attribute. The AMDID
attribute should also reference pertinent <sourceMD> and
<provenanceMD> elements, if present. The <file>
element should only reference ID values at the levels of <techMD>,
<sourceMD>, and <digiprovMD>.</p>
</requirement>
</fileSec>
<structMap>
<requirement ID="structMap1">
<p>A conforming METS record must contain one <structMap> element with
the value encoded as "physical."</p>
</requirement>
<requirement ID="structMap2">
<p>A conforming METS record may contain an additional <structMap>
element with the value encoded as "logical." </p>
</requirement>
<requirement ID="structMap3">
<p>The physical <structMap> represents a flattened structure and must
only contain two levels of <div> elements with no further nesting.
The top level <div> element required by the METS schema contains
one level of child <div> elements to represent the linear sequence
of the components of the digital object. </p>
</requirement>
<requirement ID="structMap4">
<p> The logical structMap represents the full hierarchical structure of the digital
object, and so can contain as many levels of nested <div> elements
as required to express the objects full structure.</p>
</requirement>
<requirement ID="structMap5">
<p>All <div> elements within the top level containing
<div> must have an ORDER attribute. </p>
</requirement>
<requirement ID="structMap6">
<p>When applicable, <div> elements must reference pertinent
<dmdSec> sections by including the relevant ID values in the DMDID
attributes. </p>
</requirement>
<requirement ID="structMap7">
<p>When applicable, <div> elements should include a LABEL attribute
with the value derived from, and identical, to the value encoded in the
/mods/titleInfo/title element in the related <dmdSec>. </p>
</requirement>
<requirement ID="structMap8">
<p>When applicable, <div> elements must reference pertinent
<rightsMD> sections by including the relevant ID values in the
ADMID attributes. </p>
</requirement>
<requirement ID="structMap9">
<p>Each <fptr> element must reference an individual
<file> element representing a version of the file. </p>
</requirement>
<requirement ID="structMap10">
<p>The <fptr> element must use the FILEID attribute to point directly
to a <file> element. </p>
</requirement>
<requirement ID="structMap11">
<p>The <fptr> element may not contain an <area>,
<par>, or <seq> element. These elements are not
supported in objects conforming to this profile. </p>
</requirement>
<requirement ID="structMap12">
<p>The <mptr> element is not supported in this profile. </p>
</requirement>
</structMap>
<structLink>
<requirement ID="structLink1">
<p>This profile stipulates no requirements for the <structLink>
element.</p>
</requirement>
</structLink>
<behaviorSec>
<requirement ID="behaviorSec1">
<p>This profile stipulates no requirements for the <behaviorSec>
element.</p>
</requirement>
</behaviorSec>
<multiSection>
<requirement ID="multi1">
<p>The <file> elements will only reference elements in the
<techMD>, <sourceMD>, <digiprovMD>,
and <rightsMD> sections.</p>
</requirement>
<requirement ID="multi2">
<p>The <div> element will only reference metadata in the
<dmdSec> and <rightsMD> sections. That is,
descriptive metadata are always and only expressed in conjunction with division
of the <structMap> and not in conjunction with the content
file(s), whereas rights metadata is expressed in conjunction with division of
the <structMap> and / or with the content file(s). </p>
</requirement>
</multiSection>
</structural_requirements>
<technical_requirements>
<content_files>
<requirement>
<p>This profile supports only PDF files and associated TIFF, WAV, AIFF, MP3, MOV,
MPEG2, AVI and EXE files.</p>
</requirement>
</content_files>
<behavior_files>
<requirement>
<p>The profile does not prescribe association to any behaviors.</p>
</requirement>
</behavior_files>
<metadata_files>
<requirement>
<p>The profile does not prescribe referencing of external metadata records. If an
external metadata record is referenced, it is recommended that the file be valid
for the schema in which it is written, i.e., that it be a valid MARC record.</p>
</requirement>
</metadata_files>
</technical_requirements>
<tool>
<description>
<p>No tools are associated with this profile</p>
</description>
</tool>
<!-- Example 1: Reflects a single added PREMIS record for recording license agreement. -->
<Appendix NUMBER="1">
<mets:mets xmlns:mets="http://www.loc.gov/METS/"
xmlns:pre="http://www.loc.gov/standards/premis/v1"
xmlns:mix="http://www.loc.gov/mix/v10" xmlns="http://www.loc.gov/METS/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mods="http://www.loc.gov/mods/v3"
PROFILE="http://www.loc.gov/mets/profiles/ETD.xml"
xsi:schemaLocation="http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/mets.xsd http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-2.xsd http://www.loc.gov/mix/ http://www.loc.gov/standards/mix/mix02/mix02.xsd http://www.w3.org/1999/xlink http://www.loc.gov/standards/mets/xlink.xsd http://www.loc.gov/standards/premis-v2 http://www.loc.gov/standards/premis/premis.xsd"
OBJID="ark:/20775/bb00000101" TYPE="text"
LABEL="Tactile representations of cyclical data structures in candy and knitting">
<mets:metsHdr CREATEDATE="2005-05-19T10:06:00" LASTMODDATE="2006-04-28T10:06:00">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Digital Library Program, Geisel Library, University of California,
San Diego</mets:name>
<mets:note>mailto:[email protected]</mets:note>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="EDM1">
<mets:mdRef xlink:href="http://roger.ucsd.edu/record=b4848248" LOCTYPE="URL"
MDTYPE="MARC" LABEL="UC San Diego ROGER Record"/>
</mets:dmdSec>
<mets:dmdSec ID="DM1">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Tactile representations of cyclical data structures in
candy and knitting</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Egenhoefer, Rachel Beth</mods:namePart>
</mods:name>
<mods:typeOfResource>text</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>2005</mods:dateCreated>
</mods:originInfo>
<mods:note>Thesis (M.F.A.)--University of California, San Diego, 2005.</mods:note>
<mods:subject>
<mods:name type="personal" authority="lcnaf">
<mods:namePart>Egenhoefer, Rachel Beth</mods:namePart>
</mods:name>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Candy in art</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Knitting in art</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Cycles in art</mods:topic>
</mods:subject>
<mods:subject authority="lcsh">
<mods:topic>Binary system (Mathematics) in art</mods:topic>
</mods:subject>
<mods:subject authority="local">
<mods:genre>Dissertations, Academic. UCSD. Visual Arts</mods:genre>
</mods:subject>
<mods:subject authority="local">
<mods:genre>Dissertations, Academic. UCSD. Art</mods:genre>
</mods:subject>
<mods:classification authority="local">N 7442.27 2005 .E44</mods:classification>
<mods:identifier type="local">b4848248</mods:identifier>
<mods:identifier type="ARK"
>http://libraries.ucsd.edu/ark:/20775/bb00000101</mods:identifier>
<mods:identifier type="proquest">AAI000000</mods:identifier>
<mods:note displayLabel="Digital object made available by"> Mandeville
Special Collections Library, University of California, San Diego,
San Diego, CA 92093-0175S
(http://libraries.ucsd.edu/locations/mscl/) </mods:note>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:techMD ID="ADM1">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000101/1-1.pdf</pre:objectIdentifierValue>
</pre:objectIdentifier>
<pre:preservationLevel>full</pre:preservationLevel>
<pre:objectCategory>file</pre:objectCategory>
<pre:objectCharacteristics>
<pre:compositionLevel>0</pre:compositionLevel>
<pre:fixity>
<pre:messageDigestAlgorithm>CRC</pre:messageDigestAlgorithm>
<pre:messageDigest>3,356,155,929</pre:messageDigest>
</pre:fixity>
<pre:size>251444</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>PDF</pre:formatName>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2005-04-11T00:00:00.0</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="ADM2">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:rightsStatement>
<pre:rightsBasis>Copyright</pre:rightsBasis>
<pre:copyrightInformation>
<pre:copyrightStatus>Under copyright</pre:copyrightStatus>
<pre:copyrightJurisdiction>us</pre:copyrightJurisdiction>
<pre:copyrightNote>Rights Holder(s): Rachel Beth Egenhoefer</pre:copyrightNote>
<pre:copyrightNote>Use: This work is available from the UC San
Diego Libraries. This digital copy of the work is intended
to support research, teaching, and private study. </pre:copyrightNote>
<pre:copyrightNote>Constraint(s) on Use: This work is protected
by the U.S. Copyright Law (Title 17, U.S.C.). Use of this
work beyond that allowed by “fair use” requires written
permission of the copyright holder(s). Responsibility for
obtaining permissions and any use and distribution of this
work rests exclusively with the user and not the UC San
Diego Libraries. Inquiries can be made to the UC San Diego
Libraries department having custody of the work
(http://libraries.ucsd.edu/locations/mscl/).
</pre:copyrightNote>
</pre:copyrightInformation>
</pre:rightsStatement>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
<mets:rightsMD ID="ADM3">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:rightsStatement>
<pre:rightsBasis>License</pre:rightsBasis>
<pre:rightsGranted>
<pre:act>Display to public</pre:act>
<pre:restriction>Display currently prohibited.</pre:restriction>
<pre:termOfGrant>
<pre:startDate>2005-05-1T00:00:00</pre:startDate>
<pre:endDate>2008-05-1T00:00:00</pre:endDate>
</pre:termOfGrant>
</pre:rightsGranted>
</pre:rightsStatement>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
</mets:amdSec>
<mets:fileSec>
<mets:fileGrp VERSDATE="2005-05-19T10:06:00" USE="Application-PDF">
<mets:fileGrp>
<mets:file ID="ark-20775-bb00000101-1-1" MIMETYPE="application/pdf"
CREATED="2005-05-19T17:54:00" ADMID="ADM1" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000101/1-1.pdf"
LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap TYPE="physical">
<mets:div>
<mets:div ORDER="1" TYPE="text"
LABEL="Tactile representations of cyclical data structures in candy and knitting"
DMDID="EDM1 DM1" ADMID="ADM2 ADM3">
<mets:fptr FILEID="ark-20775-bb00000101-1-1"/>
</mets:div>
</mets:div>
</mets:structMap>
</mets:mets>
</Appendix>
<!-- Example: PDF file and Associated Still Image(s) -->
<Appendix NUMBER="2">
<mets:mets xmlns:mets="http://www.loc.gov/METS/"
xmlns:pre="http://www.loc.gov/standards/premis/v1"
xmlns:mix="http://www.loc.gov/mix/v10" xmlns="http://www.loc.gov/METS/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mods="http://www.loc.gov/mods/v3"
PROFILE="http://www.loc.gov/mets/profiles/ETD.xml"
xsi:schemaLocation="http://www.loc.gov/METS/ http://www.loc.gov/standards/mets/mets.xsd http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-2.xsd http://www.loc.gov/mix/ http://www.loc.gov/standards/mix/mix02/mix02.xsd http://www.w3.org/1999/xlink http://www.loc.gov/standards/mets/xlink.xsd http://www.loc.gov/standards/premis-v2 http://www.loc.gov/standards/premis/premis.xsd"
OBJID="ark:/20775/bb00000102" TYPE="mixed material" LABEL="Acceptance of the warrior">
<mets:metsHdr CREATEDATE="2005-05-19T17:54:00" LASTMODDATE="2005-05-19T17:54:00">
<mets:agent ROLE="CREATOR" TYPE="ORGANIZATION">
<mets:name>Digital Library Program, Geisel Library, University of California,
San Diego</mets:name>
<mets:note>mailto:[email protected]</mets:note>
</mets:agent>
</mets:metsHdr>
<mets:dmdSec ID="EDM1a">
<mets:mdRef xlink:href="http://roger.ucsd.edu/record=b3824644" LOCTYPE="URL"
MDTYPE="MARC" LABEL="UC San Diego ROGER Record"/>
</mets:dmdSec>
<mets:dmdSec ID="DM1a">
<mets:mdWrap MDTYPE="MODS">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Acceptance of the warrior</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Griffith, Natalie</mods:namePart>
</mods:name>
<mods:typeOfResource>mixed material</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>1999</mods:dateCreated>
</mods:originInfo>
<mods:physicalDescription>
<mods:note>One text file and 14 associated still image
files</mods:note>
</mods:physicalDescription>
<mods:note>Documents the author's performances in 6 UC San Diego Theatre
Dept. productions, 1997-1999</mods:note>
<mods:note>Thesis (M.F.A.)--University of California, San Diego, 1999.</mods:note>
<mods:subject authority="local">
<mods:genre>Dissertations, Academic. UCSD. Theatre</mods:genre>
</mods:subject>
<mods:classification authority="local">PN 1624.7 1999 .G75</mods:classification>
<mods:identifier type="local">b3824644</mods:identifier>
<mods:identifier type="ARK"
>http://libraries.ucsd.edu/ark:/20775/bb00000102</mods:identifier>
<mods:identifier type="proquest">AAI000000</mods:identifier>
<mods:note displayLabel="Digital object made available by"> Mandeville
Special Collections Library, University of California, San Diego,
San Diego, CA 92093-0175S
(http://libraries.ucsd.edu/locations/mscl/) </mods:note>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:amdSec>
<mets:techMD ID="ADM1a">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:object>
<pre:objectIdentifier>
<pre:objectIdentifierType>ARK</pre:objectIdentifierType>
<pre:objectIdentifierValue>http://libraries.ucsd.edu/ark:/20775/bb00000102/1-1.pdf</pre:objectIdentifierValue>
</pre:objectIdentifier>
<pre:preservationLevel>full</pre:preservationLevel>
<pre:objectCategory>file</pre:objectCategory>
<pre:objectCharacteristics>
<pre:compositionLevel>0</pre:compositionLevel>
<pre:fixity>
<pre:messageDigestAlgorithm>CRC</pre:messageDigestAlgorithm>
<pre:messageDigest>3,356,155,929</pre:messageDigest>
</pre:fixity>
<pre:size>251444</pre:size>
<pre:format>
<pre:formatDesignation>
<pre:formatName>PDF</pre:formatName>
</pre:formatDesignation>
</pre:format>
</pre:objectCharacteristics>
<pre:creatingApplication>
<pre:dateCreatedByApplication>2005-04-11T00:00:00.0</pre:dateCreatedByApplication>
</pre:creatingApplication>
</pre:object>
</mets:xmlData>
</mets:mdWrap>
</mets:techMD>
<mets:rightsMD ID="ADM2a">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:rightsStatement>
<pre:rightsBasis>Copyright</pre:rightsBasis>
<pre:copyrightInformation>
<pre:copyrightStatus>Under copyright</pre:copyrightStatus>
<pre:copyrightJurisdiction>us</pre:copyrightJurisdiction>
<pre:copyrightNote>Rights Holder: Natalie Griffith</pre:copyrightNote>
<pre:copyrightNote>Use: This work is available from the UC San
Diego Libraries. This digital copy of the work is intended
to support research, teaching, and private study. </pre:copyrightNote>
<pre:copyrightNote>Constraint(s) on Use: This work is protected
by the U.S. Copyright Law (Title 17, U.S.C.). Use of this
work beyond that allowed by “fair use” requires written
permission of the copyright holder(s). Responsibility for
obtaining permissions and any use and distribution of this
work rests exclusively with the user and not the UC San
Diego Libraries. Inquiries can be made to the UC San Diego
Libraries department having custody of the work
(http://libraries.ucsd.edu/locations/mscl/).
</pre:copyrightNote>
</pre:copyrightInformation>
</pre:rightsStatement>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
<mets:rightsMD ID="ADM3a">
<mets:mdWrap MDTYPE="OTHER" OTHERMDTYPE="PREMIS">
<mets:xmlData>
<pre:rightsStatement>
<pre:rightsBasis>License</pre:rightsBasis>
<pre:rightsGranted>
<pre:act>Display to public</pre:act>
</pre:rightsGranted>
</pre:rightsStatement>
</mets:xmlData>
</mets:mdWrap>
</mets:rightsMD>
</mets:amdSec>
<mets:fileSec>
<mets:fileGrp VERSDATE="2005-05-19T17:54:00" USE="Application-PDF">
<mets:fileGrp>
<mets:file ID="ark-20775-bb00000102-1-1" MIMETYPE="application/pdf" SEQ="1"
CREATED="2005-05-19T17:54:00" ADMID="ADM1a" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20775/bb00000102/1-1.pdf"
LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileGrp>
<mets:fileGrp VERSDATE="2005-05-19T17:54:00" USE="Image-Master">
<mets:fileGrp>
<mets:file ID="ark-20775-bb00000102-1-2" MIMETYPE="image/tiff" SEQ="1"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-2.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-3" MIMETYPE="image/tiff" SEQ="2"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-3.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-4" MIMETYPE="image/tiff" SEQ="3"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-4.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-5" MIMETYPE="image/tiff" SEQ="4"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-5.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-6" MIMETYPE="image/tiff" SEQ="5"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-6.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-7" MIMETYPE="image/tiff" SEQ="6"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-7.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-8" MIMETYPE="image/tiff" SEQ="7"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-8.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-9" MIMETYPE="image/tiff" SEQ="8"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-9.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-10" MIMETYPE="image/tiff" SEQ="9"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-10.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-11" MIMETYPE="image/tiff" SEQ="10"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-11.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-12" MIMETYPE="image/tiff" SEQ="11"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-12.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-13" MIMETYPE="image/tiff" SEQ="12"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-13.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-14" MIMETYPE="image/tiff" SEQ="13"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-14.tif"
LOCTYPE="URL"/>
</mets:file>
<mets:file ID="ark-20775-bb00000102-1-15" MIMETYPE="image/tiff" SEQ="14"
CREATED="2005-05-19T17:54:00" GROUPID="GID1">
<mets:FLocat
xlink:href="http://libraries.ucsd.edu/ark:/20075/bb00000102/1-15.tif"
LOCTYPE="URL"/>
</mets:file>
</mets:fileGrp>
</mets:fileGrp>
</mets:fileSec>
<mets:structMap TYPE="physical">
<mets:div>
<mets:div ORDER="1" TYPE="text" LABEL="Acceptance of the warrior"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-1"/>
</mets:div>
<mets:div ORDER="2" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-2"/>
</mets:div>
<mets:div ORDER="3" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-3"/>
</mets:div>
<mets:div ORDER="4" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-4"/>
</mets:div>
<mets:div ORDER="5" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-5"/>
</mets:div>
<mets:div ORDER="6" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-6"/>
</mets:div>
<mets:div ORDER="7" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-7"/>
</mets:div>
<mets:div ORDER="8" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-8"/>
</mets:div>
<mets:div ORDER="9" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-9"/>
</mets:div>
<mets:div ORDER="10" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-10"/>
</mets:div>
<mets:div ORDER="11" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-11"/>
</mets:div>
<mets:div ORDER="12" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-12"/>
</mets:div>
<mets:div ORDER="13" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-13"/>
</mets:div>
<mets:div ORDER="14" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-14"/>
</mets:div>
<mets:div ORDER="15" TYPE="still image" LABEL="Associated Still Image"
DMDID="EDM1a DM1a" ADMID="ADM2a ADM3a">
<mets:fptr FILEID="ark-20775-bb00000102-1-15"/>
</mets:div>
</mets:div>
</mets:structMap>
</mets:mets>
</Appendix>