-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1776.xml
1573 lines (1573 loc) · 91.4 KB
/
1776.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.chase">beinecke.chase</recordid>
<otherrecordid localtype="BIB">4549697</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Eleanor Chase Papers
</titleproper>
<titleproper localtype="filing">Chase (Eleanor) Papers</titleproper>
<author>by Andrea Benefiel and Lisa Conathan</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>2013</date>
<num>YCAL MSS 748</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This encoded finding aid is compliant with the Yale EAD Best Practice Guidelines, Version 1.0.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-5</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 6-9</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>in_progress</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:41:46-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 01:41</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1776" level="collection">
<did>
<unittitle>Eleanor Chase papers</unittitle>
<unitid>YCAL MSS 748</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>2.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">9 boxes</physdesc>
<unitdatestructured altrender="1914-1996" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1914">1914</fromdate>
<todate standarddate="1996">1996</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1914">1914</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Chase, Eleanor, 1903-1944</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_55c2d3e2e98b4bd6bf16e728a149f6e9">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_3f686569dfd9bed067cd66578661bfaa">
<head>Conditions Governing Use</head>
<p>The Eleanor Chase Papers 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>
<prefercite id="aspace_ba9c110143f28e464b4044975795d2f2">
<head>Preferred Citation</head>
<p>Eleanor Chase Papers. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<scopecontent id="aspace_a288c954fc93c106268abef49d991a84">
<head>Scope and Contents</head>
<p>The papers include correspondence, writings, photographs, and scrapbooks documenting the life and literary career of Eleanor Chase. Correspondence contains incoming letters to Eleanor Chase (1919 to 1943). Principal correspondents include W. Graham Robertson and Robert Benchley. Also included is one letter to Alexandra Fatio Taylor from Helen Keller, 1953. Writings consist chiefly of typescript drafts of novels, short stories, poetry, and drama, most of which were unpublished during Chase's lifetime. Photographs include portraits of Eleanor Chase and of literary critic Alexander Woolcott. Scrapbooks, which have been disbound, contain letters, photographs, and clippings related to Eleanor Chase, her writings, and her family.</p>
</scopecontent>
<acqinfo id="aspace_33d90a8c5a1916cd486ccca01fc25944">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Alexandra Taylor on the Eugene G. O'Neill Memorial Fund, 2000. Gift of Alexandra Taylor, 2003-2007.</p>
</acqinfo>
<bioghist id="aspace_beccb4e238fbd2e93444a6f6e37e4b70">
<head>Eleanor Chase (1903-1944)</head>
<p>Eleanor Chase Fatio, American novelist and socialite, was born in Oshkosh, Wisconsin, on March 3, 1903 to Nia Sawyer and Charles Curry Chase. In 1928 she published her first novel, <title render="italic">
<part>Pennagan Place</part>
</title> (New York: J. H. Sears & Co.). Her second novel, <title render="italic">
<part>The Last of Wisdom</part>
</title> (New York: J. H. Sears & Co.) followed in 1932. Chase was a member of the Authors League and friend of Alexander Woolcott and Robert Benchley.</p>
<p>Eleanor Chase married the Swiss-born architect Maurice Fatio in 1929. The couple lived in New York and Palm Beach, Florida. She died on October 21, 1944 and was survived by her children, Alexandra Fatio Taylor and Maurice Pierre Fatio.</p>
<p>Additional biographical information can be found in <title render="italic">
<part>Eleanor of Palm Beach</part>
</title>, by Hubert Pryor ([Philadelphia, PA: Xlibris Corp., 2002).</p>
</bioghist>
<arrangement id="aspace_c7274050d2a990d5fcbf1751d28896f1">
<head>Arrangement</head>
<p>Organized into three series: I. Correspondence, 1919-1953. II. Writings, 1914-1944. III. Photographs and Scrapbooks, 1910-1996.</p>
</arrangement>
<processinfo id="aspace_72cb0112d06553645d382b29d14190a7">
<head>Processing Information</head>
<p>Former call numbers: Uncat MSS 25, Uncat MSS 972, Uncat Za File 609, Uncat Za File 673.</p>
<p>This collection received a basic level of processing, including rehousing and arrangement, in 2013.</p>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
</processinfo>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85004341"
source="lcsh">
<part localtype="topical">American literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, American</part>
<part localtype="temporal">20th Century</part>
<part localtype="genre_form">Archives</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300127104" source="aat">
<part localtype="genre_form">Photographic prints</part>
</genreform>
<genreform source="local">
<part localtype="genre_form">Scrapbooks</part>
</genreform>
<occupation source="local_beinecke">
<part localtype="occupation">Authors</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th Century</part>
</occupation>
<persname>
<part localtype="agent_person">Benchley, Robert, 1889-1945</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Chase, Eleanor, 1903-1944</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Fatio, Maurice, 1897-1943</part>
</persname>
<persname>
<part localtype="agent_person">Robertson, W. Graham</part>
</persname>
<persname>
<part localtype="agent_person">Woollcott, Alexander, 1887-1943</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/712678"
id="ref39"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.21</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1919-1953" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1919">1919</fromdate>
<todate standarddate="1953">1953</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_b077cd853f4a6f2daf43107546ed5351">
<head>Scope and Contents</head>
<p>Correspondence contains incoming letters to Eleanor Chase (1919 to 1943). Principal correspondents include W. Graham Robertson and Robert Benchley. Also included is one letter to Alexandra Fatio Taylor from Helen Keller, 1953.</p>
<p>Additional correspondence may be found in Scrapbooks (Series III.).</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/712679"
id="ref22"
level="file">
<did>
<unittitle>Chase, Eleanor</unittitle>
<unitdatestructured altrender="1919-1943" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1919">1919</fromdate>
<todate standarddate="1943">1943</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/83623 /locations/9"
containerid="39002104853495"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">1-3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712680"
id="ref125"
level="file">
<did>
<unittitle>Taylor, Alexandra Fatio from Helen Keller</unittitle>
<unitdatestructured altrender="1953 October 20"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1953-10-20">1953 October 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/83623 /locations/9"
containerid="39002104853495"
id="aspace_ref125_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref125_c2" localtype="folder" parent="aspace_ref125_c1">4</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/712681"
id="ref40"
level="series">
<did>
<unittitle>Writings</unittitle>
<unitid>Series II</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>1.67</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">4 boxes</physdesc>
<unitdatestructured altrender="1914-1944" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1914">1914</fromdate>
<todate standarddate="1944">1944</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_9da1c46a96cb153c65ae13a2bab47a96">
<head>Scope and Contents</head>
<p>Writings contain the autograph manuscript and typescript drafts and clippings of novels, short stories, poetry, and plays written by Eleanor Chase. A play adaptation of Chase's novel <title render="italic">
<part>Pennagan Place</part>
</title> written by Warren B. Duff is also included.</p>
<p>Additional writings may also be found in Scrapbooks listed below.</p>
</scopecontent>
<arrangement id="aspace_77bac87ee2b612db96e23f44fdc19374">
<head>Arrangement</head>
<p>Organized into four subseries: Novels, Short Stories, Poetry, and Drama.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/712682"
id="ref43"
level="subseries">
<did>
<unittitle>Novels</unittitle>
</did>
<arrangement id="aspace_fbb8b05ec1c3505ce7f3ec3226d2b1f2">
<head>Arrangement</head>
<p>Arranged alphabetically by title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/712683"
id="ref13"
level="file">
<did>
<unittitle>"The Grove," bound typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83624 /locations/9"
containerid="39002104853503"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712684"
id="ref16"
level="file">
<did>
<unittitle>"The Moon Had a Golden Ring," typescript </unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83624 /locations/9"
containerid="39002104853503"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">6-12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712685"
id="ref48"
level="file">
<did>
<unittitle>"The Moon Had a Golden Ring," typescript </unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">13-18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712686"
id="ref49"
level="file">
<did>
<unittitle>"Pennajam [sic] Place," chapter one, typescript draft</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">19</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/712687"
id="ref44"
level="subseries">
<did>
<unittitle>Short Stories</unittitle>
</did>
<arrangement id="aspace_a2f449fe0fcf05f9fc46ee030ad6dfef">
<head>Arrangement</head>
<p>Arranged alphabetically by title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/712688"
id="ref19"
level="file">
<did>
<unittitle>"Aftermath," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712689"
id="ref50"
level="file">
<did>
<unittitle>"Amends," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712690"
id="ref51"
level="file">
<did>
<unittitle>"At Thy Sweet Voice," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712691"
id="ref52"
level="file">
<did>
<unittitle>"A Black Hat for Aunt Harriet," co-written with George Oppenheimer, typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712692"
id="ref53"
level="file">
<did>
<unittitle>"Doris," autograph manuscript</unittitle>
<unitdatestructured altrender="1924 December 7"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1924-12-07">1924 December 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712693"
id="ref54"
level="file">
<did>
<unittitle>"The Editor Is Not Responsible," typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712694"
id="ref55"
level="file">
<did>
<unittitle>"The Egoist," typescript drafts, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712695"
id="ref56"
level="file">
<did>
<unittitle>"Enter Little Emily," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712696"
id="ref57"
level="file">
<did>
<unittitle>"Every Hyacinth the Garden Wears," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712697"
id="ref58"
level="file">
<did>
<unittitle>"The Fall of the House of Hawkes," typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712698"
id="ref59"
level="file">
<did>
<unittitle>"Habit," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712699"
id="ref60"
level="file">
<did>
<unittitle>"Hide-Out," typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712700"
id="ref110"
level="file">
<did>
<unittitle>"His Chum," in the <title render="italic">
<part>Los Angeles Sunday Times</part>
</title>, newspaper clipping</unittitle>
<unitdatestructured altrender="1917 May 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1917-05-06">1917 May 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref110_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref110_c2" localtype="folder" parent="aspace_ref110_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712701"
id="ref61"
level="file">
<did>
<unittitle>"His Heart to Hold," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83625 /locations/9"
containerid="39002104853511"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712702"
id="ref15"
level="file">
<did>
<unittitle>"I Miss an Attic," typescript, with related clipping</unittitle>
<unitdatestructured altrender="1937; undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1937">1937; undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712703"
id="ref62"
level="file">
<did>
<unittitle>"Making-Over Martie," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712704"
id="ref63"
level="file">
<did>
<unittitle>"The Marquis Buys a Rug," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712705"
id="ref64"
level="file">
<did>
<unittitle>"Miss Finger and the Ministers," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712706"
id="ref65"
level="file">
<did>
<unittitle>"Mrs. Ulysses," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712707"
id="ref66"
level="file">
<did>
<unittitle>"Night-Shift," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712708"
id="ref67"
level="file">
<did>
<unittitle>"Nothing To Do With It," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref67_c2" localtype="folder" parent="aspace_ref67_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712709"
id="ref68"
level="file">
<did>
<unittitle>"Object Lessons for Little Girls," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712710"
id="ref69"
level="file">
<did>
<unittitle>"One of the Crowd," typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712711"
id="ref70"
level="file">
<did>
<unittitle>"One of the Signers," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712712"
id="ref71"
level="file">
<did>
<unittitle>"Pennagan Interlude," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712713"
id="ref72"
level="file">
<did>
<unittitle>"Recess," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">45</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712714"
id="ref73"
level="file">
<did>
<unittitle>"Seconds," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">46</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712715"
id="ref74"
level="file">
<did>
<unittitle>"Something To Do," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref74_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref74_c2" localtype="folder" parent="aspace_ref74_c1">47</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712716"
id="ref75"
level="file">
<did>
<unittitle>"The Son of the King of England," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref75_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref75_c2" localtype="folder" parent="aspace_ref75_c1">48</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712717"
id="ref76"
level="file">
<did>
<unittitle>"Sonny Temple and Timothy Tucker," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">49</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712718"
id="ref77"
level="file">
<did>
<unittitle>"Thirty-Five," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref77_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref77_c2" localtype="folder" parent="aspace_ref77_c1">50</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712719"
id="ref78"
level="file">
<did>
<unittitle>"Tivetson's Point of View," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">51</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712720"
id="ref79"
level="file">
<did>
<unittitle>"Values," typescript</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref79_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref79_c2" localtype="folder" parent="aspace_ref79_c1">52</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712721"
id="ref80"
level="file">
<did>
<unittitle>"Wedding Day," typescript, corrected</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref80_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref80_c2" localtype="folder" parent="aspace_ref80_c1">53</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/712722"
id="ref45"
level="subseries">
<did>
<unittitle>Poems</unittitle>
</did>
<arrangement id="aspace_104c564016142a07d6e2b76840e919c2">
<head>Arrangement</head>
<p>Organized under two headings: Collected Poetry and Poems.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/712723"
id="ref127"
level="file">
<did>
<unittitle>Collected Poetry</unittitle>
</did>
<arrangement id="aspace_0bf0e89600407fe968fd7bb5f81b7a6e">
<head>Arrangement</head>
<p>Arranged alphabetically by title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/712724"
id="ref11"
level="file">
<did>
<unittitle>"Across the Way & Other Poems," typescript, with clipping</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref11_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref11_c2" localtype="folder" parent="aspace_ref11_c1">54</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712725"
id="ref12"
level="file">
<did>
<unittitle>"Arpeggio," autograph manuscript and typescript draft with clippings</unittitle>
<unitdatestructured altrender="1917, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1917">1917, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">55</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712726"
id="ref14"
level="file">
<did>
<unittitle>"Heart Murmurs," autograph manuscript and typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83626 /locations/9"
containerid="39002104853529"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">56-57</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/712727"
id="ref128"
level="file">
<did>
<unittitle>Poems</unittitle>
</did>
<arrangement id="aspace_a9f3a560a489cdfb095f3c0f25fe6dc7">
<head>Arrangement</head>
<p>Arranged alphabetically by title.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/712728"
id="ref81"
level="file">
<did>
<unittitle>"Ah, even then bemused by grief...," autograph manuscript and typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83627 /locations/9"
containerid="39002104853537"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref81_c2" localtype="folder" parent="aspace_ref81_c1">58</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712729"
id="ref82"
level="file">
<did>
<unittitle>"America is waking...," and "A new dress....," autograph manuscript and typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83627 /locations/9"
containerid="39002104853537"
id="aspace_ref82_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref82_c2" localtype="folder" parent="aspace_ref82_c1">59</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712730"
id="ref83"
level="file">
<did>
<unittitle>"Anthony, Anthony...," "As every draft...," and "Autumn 1940...," autograph manuscript and typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83627 /locations/9"
containerid="39002104853537"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref83_c2" localtype="folder" parent="aspace_ref83_c1">60</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712731"
id="ref84"
level="file">
<did>
<unittitle>"The Canning Tower," newspaper clipping</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83627 /locations/9"
containerid="39002104853537"
id="aspace_ref84_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref84_c2" localtype="folder" parent="aspace_ref84_c1">61</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712732"
id="ref85"
level="file">
<did>
<unittitle>"Conscience is my counsellor...," and "Do you remember...," autograph manuscript and typescript drafts</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/83627 /locations/9"
containerid="39002104853537"
id="aspace_ref85_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref85_c2" localtype="folder" parent="aspace_ref85_c1">62</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/712733"