-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path5488.xml
2118 lines (2118 loc) · 124 KB
/
5488.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"?>
<?xml-model href="https://raw.githubusercontent.com/YaleArchivesSpace/EAD3-to-PDF-UA/master/ead3-yale.sch" type="application/xml" schematypens="http://purl.oclc.org/dsdl/schematron"?>
<?xml-model href="https://raw.githubusercontent.com/SAA-SDT/EAD3/master/ead3.rng"
type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?>
<ead xmlns="http://ead3.archivists.org/schema/">
<control countryencoding="iso3166-1"
dateencoding="iso8601"
langencoding="iso639-2b"
relatedencoding="marc"
repositoryencoding="iso15511"
scriptencoding="iso15924">
<recordid instanceurl="https://hdl.handle.net/10079/fa/beinecke.lintoncook">beinecke.lintoncook</recordid>
<otherrecordid localtype="BIB">12758790</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Grace Linton Cook Papers about W. J. Linton </titleproper>
<titleproper localtype="filing">Cook (Grace Linton) Papers about W. J. Linton</titleproper>
<author>by Sandra Markham</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>2016</date>
<num>GEN MSS 1406</num>
</publicationstmt>
<notestmt>
<controlnote localtype="offsite">
<p>Boxes: 1-3, 4 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="2">2</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="22">22</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2024-11-27T23:08:28-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday November 27, 2024 at 23:08</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/5488" level="collection">
<did>
<unittitle>Grace Linton Cook Papers about W. J. Linton</unittitle>
<unitid>GEN MSS 1406</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
<descriptivenote>
<p>In English.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.71</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1840">1840</fromdate>
<todate standarddate="1936">1936</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname source="local">
<part localtype="agent_person">Cook, Grace Linton, 1881-1975</part>
</persname>
</origination>
</did>
<arrangement id="aspace_e2e1a6802ac2335d3c4e7cb378c514b4">
<head>Arrangement</head>
<p>Organized into two series: I. Linton Family Papers, 1855-1919. II. W. J. Linton Collection, 1840-1895.</p>
</arrangement>
<accessrestrict id="aspace_dc550f3a7d6f7e735f7af146ad9326a5">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<acqinfo id="aspace_0ff02f33f774d5972a0418574ed7093a">
<head>Immediate Source of Acquisition</head>
<p>Gift of the Estate of Grace Linton Cook, 1980.</p>
</acqinfo>
<prefercite id="aspace_5f59d9b28fd92a5f9f9d1d83d39acef6">
<head>Preferred Citation</head>
<p>Grace Linton Cook Papers about W. J. Linton. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<bioghist id="aspace_5dfa18a03e082481e75c2f29ebd5ade6">
<head>Grace Linton Cook (1881-1975)</head>
<p>Grace Harriet Linton was born in New Haven, Connecticut, on September 9, 1881, the daughter of Edmund Wade Linton (1848-1918) and Carrie E. Callender Linton (1855-1936), and the granddaughter of the British wood engraver W. J. Linton. After her marriage to Harry E. Cook (1881-1960) she lived in Stratford, Connecticut, and died in Bridgeport, Connecticut, on July 9, 1975.</p>
</bioghist>
<bioghist id="aspace_81c490509830f7dd576e8c278237e47e">
<head>W. J. Linton (1812-1897)</head>
<p>The British wood engraver, author, historian, printer, publisher, and political activist William James Linton was born in London on December 7, 1812. He immigrated to New York in 1866 and in 1867 settled at Appledore, a small farm and cottage in Hamden, Connecticut, just north of New Haven. There he founded his Appledore Private Press and wrote and printed several of his most notable works including <title>
<part>The Masters of Wood-Engraving</part>
</title> (1886). Linton died in New Haven, at the home of his daughter Margaret Linton Mather, on December 29, 1897.</p>
<p>Linton was married twice, first in 1837 to Laura Wade (1809-1838) and after the death of her sister (and his common-law wife) Emily Wade in 1856, to the author Eliza Lynn (1822-1898). Emily Wade was the mother of Linton's seven children: William Wade (1839/1841-1892), Emily (born ca. 1845), Lancelot (ca. 1846-1863), Edmund Wade (1848-1918), Margaret Wade (1851-1943), Ellen Wade (1852-1938), and Eliza (died 1856). Three of the children, Edmund, Margaret, and Ellen (known as "Nellie"), accompanied Linton to America, became naturalized citizens, and settled in New Haven.</p>
</bioghist>
<scopecontent id="aspace_d6e64e51699ea7a1865cb8b25326b150">
<head>Scope and Contents</head>
<p>The collection primarily consists of material by or about W. J. Linton, including some of his writings and examples of his engravings which were inherited or collected by his granddaughter Grace Linton Cook. Also present is a small group of personal papers of Cook, her father Edmund Wade Linton, and her aunt Ellen ("Nellie") Linton.</p>
<p>Series I, Family Papers, contains three family letters and a group of family papers that include a Linton biography and a scrapbook of Linton's engravings compiled by a young Grace Cook, a set of W. J. Linton calendars created by Ellen Linton, and some early material related to Edmund Wade Linton. Also present is an short story published by W. J. Linton's third wife E. Lynn Linton, and a series of obituaries and other posthumous tributes to, W. J. Linton.</p>
<p>Series II, W. J. Linton Collection, contains manuscript and printed material written or published by Linton, some of which have his autograph edits. It is evenly divided between work created in England, both in London and in the Lake District, and work created after he moved to New Haven in the mid-1860s. Also filed here are writings by others about Linton; at the end of the series are three issues of journals issued during his lifetime but have no obvious connection to Linton.</p>
</scopecontent>
<processinfo id="aspace_66e38077225f680252bc2381aa79b630">
<head>Processing Information</head>
<p>This collection includes materials previously identified by the following call number: Uncat MS Vault 292.</p>
</processinfo>
<userestrict id="aspace_38dfc79e5fd8ae1212d83c89e8a19fa7">
<head>Conditions Governing Use</head>
<p>The Grace Linton Cook Papers about W. J. Linton is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<controlaccess>
<subject source="local">
<part localtype="topical">Wood-engravers</part>
<part localtype="geographic">England</part>
</subject>
<subject source="local">
<part localtype="topical">Wood-engravers</part>
<part localtype="geographic">United States</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85147849"
source="lcsh">
<part localtype="topical">Wood-engraving</part>
<part localtype="temporal">19th century</part>
</subject>
<genreform source="local">
<part localtype="genre_form">Wood engravings (prints)</part>
<part localtype="geographic">England</part>
<part localtype="temporal">19th century</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Wood-engravers</part>
<part localtype="geographic">England</part>
<part localtype="temporal">19th century</part>
</occupation>
<occupation source="local">
<part localtype="occupation">Wood-engravers</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname source="local">
<part localtype="agent_person">Cook, Grace Linton, 1881-1975</part>
</persname>
<persname>
<part localtype="agent_person">Linton, E. Lynn (Elizabeth Lynn), 1822-1898</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Linton, Edmund Wade, 1848-1918</part>
</persname>
<persname>
<part localtype="agent_person">Linton, W. J. (William James), 1812-1897</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2190260"
id="aspace_a20899b2a6ef8ac0687630057dd967dd"
level="series">
<did>
<unittitle>Linton Family Papers</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.08</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1855–1936" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1855">1855</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_a94b33849351fdca5855fadb66453ae0">
<head>Arrangement</head>
<p>Organized into three subseries: Correspondence, Personal Papers, and Publications.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/2190262"
id="aspace_a704599cd807895b07c0c9ebb66375bb"
level="subseries">
<did>
<unittitle>Correspondence</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2190268"
id="aspace_92d3ac89ce71a7e30d73acbbbd50612a"
level="file">
<did>
<unittitle>Letter from Edmund Wade Linton to Grace Linton Cook</unittitle>
<unitdatestructured altrender="1906 October 23"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1906-10-23">1906 October 23</fromdate>
<todate standarddate="1906-10-23">1906 October 23</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_92d3ac89ce71a7e30d73acbbbd50612a_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_92d3ac89ce71a7e30d73acbbbd50612a_c2"
localtype="folder"
parent="aspace_92d3ac89ce71a7e30d73acbbbd50612a_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190269"
id="aspace_bf0b6779885e2834ff199f0fee720ece"
level="file">
<did>
<unittitle>Letters from William Wade Linton to Grace Linton Cook</unittitle>
<unitdatestructured altrender="1889" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1889">1889</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_bf0b6779885e2834ff199f0fee720ece_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_bf0b6779885e2834ff199f0fee720ece_c2"
localtype="folder"
parent="aspace_bf0b6779885e2834ff199f0fee720ece_c1">2</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2190263"
id="aspace_2db297104a2a746bf3455e22be1251ea"
level="subseries">
<did>
<unittitle>Personal Papers</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2190270"
id="aspace_fd98dae4b7e9ba39c4a4cef2303d7953"
level="file">
<did>
<unittitle>"Biography of William James Linton" by Grace Linton Cook; autograph manuscript</unittitle>
<unitdatestructured altrender="1899 November 2"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1899-11-02">1899 November 2</fromdate>
<todate standarddate="1899-11-02">1899 November 2</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_fd98dae4b7e9ba39c4a4cef2303d7953_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_fd98dae4b7e9ba39c4a4cef2303d7953_c2"
localtype="folder"
parent="aspace_fd98dae4b7e9ba39c4a4cef2303d7953_c1">3</container>
</did>
<scopecontent id="aspace_5a153a6fca745bdd7230e10e06232439">
<head>Scope and Contents</head>
<p>Written as a school paper.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190271"
id="aspace_d8b6fbf780bb9e03d402b180371f6dc7"
level="file">
<did>
<unittitle>"Farewell entertainment program by Ellen Linton; autograph manuscript</unittitle>
<unitdatestructured altrender="1873 February 28"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1873-02-28">1873 February 28</fromdate>
<todate standarddate="1873-02-28">1873 February 28</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_d8b6fbf780bb9e03d402b180371f6dc7_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d8b6fbf780bb9e03d402b180371f6dc7_c2"
localtype="folder"
parent="aspace_d8b6fbf780bb9e03d402b180371f6dc7_c1">4</container>
</did>
<scopecontent id="aspace_baf1fcba34d0237febdd60d3f2fb62cd">
<head>Scope and Contents</head>
<p>Inscribed "For Edmund, from Nellie."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190272"
id="aspace_93d1e3b58600a97da6c390bf6daceebd"
level="file">
<did>
<unittitle>"W. J. Linton calendars" by Ellen Linton; autograph manuscript</unittitle>
<unitdatestructured altrender="1917–1919" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1917">1917</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_93d1e3b58600a97da6c390bf6daceebd_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_93d1e3b58600a97da6c390bf6daceebd_c2"
localtype="folder"
parent="aspace_93d1e3b58600a97da6c390bf6daceebd_c1">5</container>
</did>
<scopecontent id="aspace_0d9d312635963c71c33d6d6b2f1b0150">
<head>Scope and Contents</head>
<p>Manuscript calendars featuring W. J. Linton's poetry, issued as Christmas tokens for family members.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190273"
id="aspace_2d947ca0160d6bcff64439352392de13"
level="file">
<did>
<unittitle>"Wood-engraving / W. J. Linton"</unittitle>
<unitdatestructured altrender="1896 December" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1896-12">1896 December</fromdate>
<todate standarddate="1896-12">1896 December</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_2d947ca0160d6bcff64439352392de13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2d947ca0160d6bcff64439352392de13_c2"
localtype="folder"
parent="aspace_2d947ca0160d6bcff64439352392de13_c1">6</container>
</did>
<scopecontent id="aspace_14bee01ce54d1f3dc3a1a63e4a1c605f">
<head>Scope and Contents</head>
<p>Scrapbook created by Grace Linton Cook, Christmas 1896</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190274"
id="aspace_33e2e35ca78ab86f10d014882c5212fb"
level="file">
<did>
<unittitle>School notebook kept by Edmund Wade Linton while at West House School</unittitle>
<unitdatestructured altrender="1861–1863" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1861">1861</fromdate>
<todate standarddate="1863">1863</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_33e2e35ca78ab86f10d014882c5212fb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_33e2e35ca78ab86f10d014882c5212fb_c2"
localtype="folder"
parent="aspace_33e2e35ca78ab86f10d014882c5212fb_c1">7</container>
</did>
<scopecontent id="aspace_b2b49881381c14bca8c2fcbec0661ef3">
<head>Scope and Contents</head>
<p>Contains accounting exercises, financial records, and German exercises.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190275"
id="aspace_5edafccffaa1114f08f7d15bd11bfce4"
level="file">
<did>
<unittitle>Sketchbook with graphite and watercolor drawings by Edmund Wade Linton</unittitle>
<unitdatestructured altrender="1869–1877" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1869">1869</fromdate>
<todate standarddate="1877">1877</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_5edafccffaa1114f08f7d15bd11bfce4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5edafccffaa1114f08f7d15bd11bfce4_c2"
localtype="folder"
parent="aspace_5edafccffaa1114f08f7d15bd11bfce4_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190276"
id="aspace_3292f126b09a26fa83f93dc65a28765d"
level="file">
<did>
<unittitle>Hand-lettered visiting card of Edmund Wade Linton</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_3292f126b09a26fa83f93dc65a28765d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3292f126b09a26fa83f93dc65a28765d_c2"
localtype="folder"
parent="aspace_3292f126b09a26fa83f93dc65a28765d_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190277"
id="aspace_8e6948095368d50fbb217ae219223f4b"
level="file">
<did>
<unittitle>Photographs of Edmund Wade Linton and Carrie E. Callender Linton</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_8e6948095368d50fbb217ae219223f4b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8e6948095368d50fbb217ae219223f4b_c2"
localtype="folder"
parent="aspace_8e6948095368d50fbb217ae219223f4b_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190278"
id="aspace_cb9833d611a52e71f1027c4fbb7662a4"
level="file">
<did>
<unittitle>"A Pagan's Outlook"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_cb9833d611a52e71f1027c4fbb7662a4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_cb9833d611a52e71f1027c4fbb7662a4_c2"
localtype="folder"
parent="aspace_cb9833d611a52e71f1027c4fbb7662a4_c1">11</container>
</did>
<scopecontent id="aspace_7db28d926c646e8665b30cccbed529b9">
<head>Scope and Contents</head>
<p>Manuscript poem in an unidentified hand.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2190264"
id="aspace_7fee4d03e7ce4b5c38b06bfd240cfbc2"
level="subseries">
<did>
<unittitle>Publications</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2190279"
id="aspace_047e27ada0c9ace4bde1f5577b55f36f"
level="file">
<did>
<unittitle>
<title>
<part>Juvenile Atlas</part>
</title> (London: John C. Tacey, circa 1860)</unittitle>
<unitdatestructured altrender="circa 1860" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1855">1855</fromdate>
<todate standarddate="1865">1865</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_047e27ada0c9ace4bde1f5577b55f36f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_047e27ada0c9ace4bde1f5577b55f36f_c2"
localtype="folder"
parent="aspace_047e27ada0c9ace4bde1f5577b55f36f_c1">12</container>
</did>
<scopecontent id="aspace_5ba80db42774df94f69bb4d3e18574a9">
<head>Scope and Contents</head>
<p>Cover inscribed upper right: "E. Linton 1860."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190280"
id="aspace_655c0f42b50d3b89b86c24b538d7421f"
level="file">
<did>
<unittitle>
<title>
<part>Selections of Poetry and Prose</part>
</title> (New Haven: Boardman School Press, 1897)</unittitle>
<unitdatestructured altrender="1897" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897">1897</fromdate>
<todate standarddate="1897">1897</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_655c0f42b50d3b89b86c24b538d7421f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_655c0f42b50d3b89b86c24b538d7421f_c2"
localtype="folder"
parent="aspace_655c0f42b50d3b89b86c24b538d7421f_c1">13</container>
</did>
<scopecontent id="aspace_2378fd58ea42373027884e982898d28c">
<head>Scope and Contents</head>
<p>Contains an illustration on page 7 by Grace Linton Cook when a student at Boardman High School.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190281"
id="aspace_c7032407d53d1c981a3b997b7c9918b8"
level="file">
<did>
<unittitle>Linton, E. Lynn "Snowed Up with a Burglar," in <title>
<part>Every Month</part>
</title> 1, no. 1 (January 1869):25-39</unittitle>
<unitdatestructured altrender="1869 January" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1869-01">1869 January</fromdate>
<todate standarddate="1869-01">1869 January</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_c7032407d53d1c981a3b997b7c9918b8_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c7032407d53d1c981a3b997b7c9918b8_c2"
localtype="folder"
parent="aspace_c7032407d53d1c981a3b997b7c9918b8_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190282"
id="aspace_7cc58497f1e7cf2da835bd90ec73f6d4"
level="file">
<did>
<unittitle>"London as a Literary Centre," by R. R. Bowker, in <title>
<part>Harper's New Monthly Magazine</part>
</title> 77, no. 457 (June 1888): 2-26</unittitle>
<unitdatestructured altrender="1888 June" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1888-06">1888 June</fromdate>
<todate standarddate="1888-06">1888 June</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_7cc58497f1e7cf2da835bd90ec73f6d4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_7cc58497f1e7cf2da835bd90ec73f6d4_c2"
localtype="folder"
parent="aspace_7cc58497f1e7cf2da835bd90ec73f6d4_c1">15</container>
</did>
<scopecontent id="aspace_d93e0fa78169d400e3f2bb7e4c956432">
<head>Scope and Contents</head>
<p>Features a portrait and profile of E. Lynn Linton on pages 23-25.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190283"
id="aspace_d925ce44bfd503c24d5b738fe7c3f0a3"
level="file">
<did>
<unittitle>Mather, Mollie, <title>
<part>A Little Girl's Story</part>
</title> (Hamden: Appledore Press, 1895)</unittitle>
<unitdatestructured altrender="1895" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1895">1895</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_d925ce44bfd503c24d5b738fe7c3f0a3_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d925ce44bfd503c24d5b738fe7c3f0a3_c2"
localtype="folder"
parent="aspace_d925ce44bfd503c24d5b738fe7c3f0a3_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190284"
id="aspace_8d7044f942f744a3db884071edddbc49"
level="file">
<did>
<unittitle>
<title>
<part>Report of the Librarian of Yale University, 1918-1919</part>
</title>
</unittitle>
<unitdatestructured altrender="1919" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1919">1919</fromdate>
<todate standarddate="1919">1919</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_8d7044f942f744a3db884071edddbc49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8d7044f942f744a3db884071edddbc49_c2"
localtype="folder"
parent="aspace_8d7044f942f744a3db884071edddbc49_c1">17</container>
</did>
<scopecontent id="aspace_379668e9fe89d2b7f32b51d1b9e02d27">
<head>Scope and Contents</head>
<p>Contains description of Linton descendants' gifts to the university in 1919, on pages 7-8.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190285"
id="aspace_ae57bee8607bfd27b574e14fd1ad91be"
level="file">
<did>
<unittitle>W. J. Linton</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2190334"
id="aspace_65de12ccc6a49d3761a71336d4729613"
level="file">
<did>
<unittitle>Obituary and article on Appledore</unittitle>
<unitdatestructured altrender="1897, 1936" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897">1897</fromdate>
<todate standarddate="1936">1936</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_65de12ccc6a49d3761a71336d4729613_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_65de12ccc6a49d3761a71336d4729613_c2"
localtype="folder"
parent="aspace_65de12ccc6a49d3761a71336d4729613_c1">18</container>
</did>
<scopecontent id="aspace_fb00a2004fc356031ea05b5d6285db6c">
<head>Scope and Contents</head>
<p>Contains an obituary and an article from <title>
<part>New Haven Register</part>
</title>
</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190335"
id="aspace_c55968d5df9a67efc778cdfdd260c287"
level="file">
<did>
<unittitle>Obituary</unittitle>
<unitdatestructured altrender="1897 December 30"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897-12-30">1897 December 30</fromdate>
<todate standarddate="1897-12-30">1897 December 30</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235269 /locations/9"
containerid="39002104626149"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_c55968d5df9a67efc778cdfdd260c287_c1"
label="Mixed Materials"
localtype="box">4 (Oversize)</container>
<container id="aspace_c55968d5df9a67efc778cdfdd260c287_c2"
localtype="folder"
parent="aspace_c55968d5df9a67efc778cdfdd260c287_c1">67</container>
</did>
<scopecontent id="aspace_1b787774eecfcb272e92b1b1b15a148b">
<head>Scope and Contents</head>
<p>Issue of <title>
<part>Journal Courier</part>
</title>, New Haven</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190336"
id="aspace_1707019c75901df30a949a7cec433cb8"
level="file">
<did>
<unittitle>Review of memorial exhibition at the Century Club</unittitle>
<unitdatestructured altrender="1898 February 26"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1898-02-26">1898 February 26</fromdate>
<todate standarddate="1898-02-26">1898 February 26</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235269 /locations/9"
containerid="39002104626149"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_1707019c75901df30a949a7cec433cb8_c1"
label="Mixed Materials"
localtype="box">4 (Oversize)</container>
<container id="aspace_1707019c75901df30a949a7cec433cb8_c2"
localtype="folder"
parent="aspace_1707019c75901df30a949a7cec433cb8_c1">68</container>
</did>
<scopecontent id="aspace_6b4855fa0e7316f4c95f593510ce99ce">
<head>Scope and Contents</head>
<p>Page from <title>
<part>New York Times</part>
</title>
</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190337"
id="aspace_b6ba8f0d393740f52fd1ddb94bf82526"
level="file">
<did>
<unittitle>"William James Linton" by Burton J. Hendrick, in <title>
<part>New England Magazine</part>
</title> 18, no. 2 (April 1898): 138-157</unittitle>
<unitdatestructured altrender="1898 April" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1898-04">1898 April</fromdate>
<todate standarddate="1898-04">1898 April</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235268 /locations/9"
containerid="39002112209094"
encodinganalog="archive legal"
id="aspace_b6ba8f0d393740f52fd1ddb94bf82526_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b6ba8f0d393740f52fd1ddb94bf82526_c2"
localtype="folder"
parent="aspace_b6ba8f0d393740f52fd1ddb94bf82526_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190338"
id="aspace_a6e27c79958f9b8f925e628f87a7191a"
level="file">
<did>
<unittitle>"Belated Reverence Paid to Linton, Poet-Printer"</unittitle>
<unitdatestructured altrender="1931 July 5" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1931-07-05">1931 July 5</fromdate>
<todate standarddate="1931-07-05">1931 July 5</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235269 /locations/9"
containerid="39002104626149"
encodinganalog="flat box (16d 1h 20w)"
id="aspace_a6e27c79958f9b8f925e628f87a7191a_c1"
label="Mixed Materials"
localtype="box">4 (Oversize)</container>
<container id="aspace_a6e27c79958f9b8f925e628f87a7191a_c2"
localtype="folder"
parent="aspace_a6e27c79958f9b8f925e628f87a7191a_c1">69</container>
</did>
<scopecontent id="aspace_ee246d64f30b4dd4ab4088645d7985e9">
<head>Scope and Contents</head>
<p>Page from <title>
<part>New Haven Register</part>
</title>
</p>
</scopecontent>
</c>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2190261"
id="aspace_e277c14aa3d98aad0222268ff6d982df"
level="series">
<did>
<unittitle>W. J. Linton Collection</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.63</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1840–1895" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1840">1840</fromdate>
<todate standarddate="1895">1895</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_cde737d85ee992b96f149191b1ab63b3">
<head>Arrangement</head>
<p>Organized into three subseries: Personal Papers, Writings and Engravings, and Other Writings and Publications</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/2190265"
id="aspace_f6ba7add63c89c7194cdcf3a502f5254"
level="subseries">
<did>
<unittitle>Personal Papers</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/2190286"
id="aspace_faeaeb96b5cc8a4ae82bbbfe6d9edd28"
level="file">
<did>
<unittitle>Visiting cards, engraved with address of 13, Upper Berkeley Street West, London</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/235267 /locations/9"
containerid="39002112209102"
encodinganalog="archive legal"
id="aspace_faeaeb96b5cc8a4ae82bbbfe6d9edd28_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_faeaeb96b5cc8a4ae82bbbfe6d9edd28_c2"
localtype="folder"
parent="aspace_faeaeb96b5cc8a4ae82bbbfe6d9edd28_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190287"
id="aspace_684410a4cebc2d167ff18d674b70bbca"
level="file">
<did>
<unittitle>Portraits of W. J. Linton</unittitle>
<unitdatestructured altrender="1882, undated" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1882">1882</fromdate>
<todate standarddate="1882">1882</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235267 /locations/9"
containerid="39002112209102"
encodinganalog="archive legal"
id="aspace_684410a4cebc2d167ff18d674b70bbca_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_684410a4cebc2d167ff18d674b70bbca_c2"
localtype="folder"
parent="aspace_684410a4cebc2d167ff18d674b70bbca_c1">21</container>
</did>
<scopecontent id="aspace_79a697e77b83a28b6630a81fe3652faa">
<head>Scope and Contents</head>
<p>Three portraits, and one photograph of Linton standing on the porch at Appledore.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2190288"
id="aspace_65d451a3bbd47e254e263320903b6177"
level="file">
<did>
<unittitle>"Death of Mr. S. G. Lynn"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/235267 /locations/9"
containerid="39002112209102"
encodinganalog="archive legal"
id="aspace_65d451a3bbd47e254e263320903b6177_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_65d451a3bbd47e254e263320903b6177_c2"
localtype="folder"
parent="aspace_65d451a3bbd47e254e263320903b6177_c1">22</container>
</did>
<scopecontent id="aspace_b32bc6d6d03bb9476c8935502cb13365">
<head>Scope and Contents</head>
<p>Copied by Linton from <title>
<part>The Irish Canadian</part>
</title>, vol. x, no. 9</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2190266"
id="aspace_b1876672d06dfef692c5c7315593d701"
level="subseries">
<did>
<unittitle>Writings and Engravings</unittitle>
</did>
<arrangement id="aspace_006f70c34f30a2f20c1e86ea9736a046">
<head>Arrangement</head>
<p>Arranged in chronological order.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/2190289"
id="aspace_8e58a95ea326b0a3f1e56128ec93e2b4"
level="file">
<did>
<unittitle>
<title>
<part>Bob Thin: a Poor-law Tale</part>
</title> (London: J. Watson, [184-?])</unittitle>
<unitdatestructured altrender="circa 1845" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1840">1840</fromdate>
<todate standarddate="1850">1850</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235267 /locations/9"
containerid="39002112209102"
encodinganalog="archive legal"
id="aspace_8e58a95ea326b0a3f1e56128ec93e2b4_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_8e58a95ea326b0a3f1e56128ec93e2b4_c2"
localtype="folder"
parent="aspace_8e58a95ea326b0a3f1e56128ec93e2b4_c1">23</container>
<daoset altrender="/repositories/11/digital_objects/133441">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/2043780"
identifier="oid:2043780"
linktitle="19 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1197470/full/!150,150/0/default.jpg"
identifier="oid:2043780"
linktitle="[Front wrapper]"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/2043780"
identifier="oid:2043780"
linktitle="[Front wrapper]"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Bob Thin: a Poor-law Tale (London: J. Watson, [184-?])</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190290"
id="aspace_e44babbae7b212edd2ec2d6d87ec32ad"
level="file">
<did>
<unittitle>Advertising cards for "Mr. Honeysuckle's Store of Children's Books, 85, Hatton Garden, London"</unittitle>
<unitdatestructured altrender="circa 1850" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1845">1845</fromdate>
<todate standarddate="1855">1855</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/235267 /locations/9"
containerid="39002112209102"
encodinganalog="archive legal"
id="aspace_e44babbae7b212edd2ec2d6d87ec32ad_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_e44babbae7b212edd2ec2d6d87ec32ad_c2"
localtype="folder"
parent="aspace_e44babbae7b212edd2ec2d6d87ec32ad_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2190291"
id="aspace_c0a54b5e5480d114ad3d56037fd78fe3"
level="file">
<did>
<unittitle>
<title>
<part>Flowers</part>
</title>, <title>