-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1736.xml
1634 lines (1634 loc) · 88 KB
/
1736.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.putzel">beinecke.putzel</recordid>
<otherrecordid localtype="BIB">3754954</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Max Putzel Papers Relating to William Marion Reedy and The Mirror
</titleproper>
<titleproper localtype="filing">Putzel (Max) Papers Relating to William Marion Reedy and The Mirror</titleproper>
<author>by Beinecke staff</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>January 2013</date>
<num>YCAL MSS 689</num>
</publicationstmt>
<notestmt>
<controlnote>
<p>This finding aid, which is compliant with the Yale EAD Best Practice Guidelines, Version 1.0., has a MARC record in Yale's ILS with the following bib number: <num localtype="Orbis-bib">3754954</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-9, 11</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 10 Oversize</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T01:37:12-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:37</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1736" level="collection">
<did>
<unittitle>Max Putzel papers relating to William Marion Reedy and The Mirror</unittitle>
<unitid>YCAL MSS 689</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>5.16</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">11 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1954">1954</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_1026d360ac6fa117cc04389c04018d9d">The collection consists of Max Putzel's research materials on St. Louis-area journalist William Marion Reedy and drafts of Putzel's biography of Reedy, The Man In the Mirror (1963). Putzel's research materials include the following: subject files containing photomechanical copies of articles from The Mirror and other publications, including work by Reedy and others, original newspaper clippings, and correspondence, including copies of letters from Reedy to others and letters to and from Putzel; index cards containing Putzel's autograph manuscript notes and bibliographic information; and miscellaneous copies of The Mirror and copies of essays by Reedy. Writings include an outline and paper submitted by Putzel for courses taken at Washington University in St. Louis in the mid 1950s and a draft and setting copy of Putzel's book-length biography of Reedy.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Putzel, Max</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_46b58a5ea9e3c6d78061c847f661ab2a">
<head>Immediate Source of Acquisition</head>
<p>Gift of Max Putzel, 1964. For additional information consult the appropriate curator.</p>
</acqinfo>
<accessrestrict id="aspace_942fba45724b073903f1b58fba298c5f">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_6d26a049cf3ff9fe47f628b6d8dd1ea2">
<head>Conditions Governing Use</head>
<p>The Max Putzel Papers Relating to William Marion Reedy and The Mirror 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_10ac42dfa6e54d612e03158e9d036dc6">
<head>Preferred Citation</head>
<p>Max Putzel Papers Relating to William Marion Reedy and The Mirror. Yale Collection of American Literature, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_a61cc55774895f6978b57a7c8d308b79">
<head>Processing Information</head>
<p>Former call number: Uncat Za Reedy.</p>
</processinfo>
<bioghist id="aspace_09861bcea734c96c0dafc22dc5ca8dfa">
<head>William Marion Reedy (1862-1920)</head>
<p>William Marion Reedy, a well-known American journalist, was born December 11, 1862 in St. Louis, Missouri to Patrick and Anne (Marion) Reedy and raised on the north side of St. Louis in a mostly Irish-American neighborhood called Kerry Patch. Reedy attended Christian Brothers College (1880) and then took his first journalism job with the <title localtype="simple" render="italic">
<part>Missouri Republican</part>
</title>. Reedy moved on to the <title localtype="simple" render="italic">
<part>St. Louis Globe-Democrat</part>
</title>, where he started out as a court reporter and then focused on feature writing. During his twenty years at the paper, he also wrote articles for other publications, including the <title localtype="simple" render="italic">
<part>Sunday Mirror</part>
</title>, which he took over and renamed <title localtype="simple" render="italic">
<part>Reedy's Mirror</part>
</title>. Reedy died July 28, 1920 in San Francisco, California.</p>
<p>Biographical information taken from "William Marion Reedy." <title localtype="simple" render="italic">
<part>Contemporary Authors Online</part>
</title>. Detroit: Gale, 2002. <title localtype="simple" render="italic">
<part>Gale Biography In Context</part>
</title>. Web. 10 Jan. 2013.</p>
</bioghist>
<bioghist id="aspace_9f83282a0f9d8d5f09258552713bcad4">
<head>Max Putzel (1910-2003)</head>
<p>Max Putzel, born April 5, 1910 in Denver, Colorado to Henry V. and Helen (Renard) Putzel, grew up in New Rochelle, New York and St. Louis, Missouri before earning a bachelor's degree from Yale University in 1932. After graduating from Yale, Putzel took a job at the Granite City, Illinois <title localtype="simple" render="italic">
<part>Press-Record</part>
</title> and then the <title localtype="simple" render="italic">
<part>St. Louis Post-Dispatch</part>
</title>, where he worked as a copy boy, feature writer, and drama editor. In the late 1930s and early 1940s Putzel worked as an associate editor at <title localtype="simple" render="italic">
<part>Common Sense</part>
</title> magazine in New York and then spent the war years working for the U.S. State Department's Office of Inter-American Affairs. When the war ended, Putzel became a farmer, first in Virginia, where he worked as a tenant farmer, then in the Meramec River Valley west of St. Louis, where he bought and worked a family farm. He attended Washington University in the mid 1950s and returned to Yale in the late 1950s for a doctorate in English. Putzel then taught English and American literature at the University of Connecticut for two decades. Putzel was the author of <title localtype="simple" render="italic">
<part>The Man in the Mirror</part>
</title> (1963), a biography of newspaper editor William Marion Reedy, and <title localtype="simple" render="italic">
<part>Genius of Place: William Faulkner's Triumphant Beginnings</part>
</title> (1985). Putzel died August 19, 2003.</p>
<p>Biographical information taken from obituary published in the <title localtype="simple" render="italic">
<part>Hartford Courant</part>
</title>, August 23, 2003 and "Max Putzel." <title localtype="simple" render="italic">
<part>Contemporary Authors Online</part>
</title>. Detroit: Gale, 2002. <title localtype="simple" render="italic">
<part>Gale Biography In Context</part>
</title>. Web. 10 January 2013.</p>
</bioghist>
<scopecontent id="aspace_fb2a7efdca07e9d15af4f996a60c63ab">
<head>Scope and Contents</head>
<p>The collection consists of Max Putzel's research materials on St. Louis-area journalist William Marion Reedy and drafts of Putzel's biography of Reedy, <title localtype="simple" render="italic">
<part>The Man in the Mirror</part>
</title> (1963). Putzel's research materials include the following: subject files containing photomechanical copies of articles from <title localtype="simple" render="italic">
<part>The Mirror</part>
</title> and other publications, including work by Reedy and others, original newspaper clippings, and correspondence, including copies of letters from Reedy to others and letters to and from Putzel; index cards containing Putzel's autograph manuscript notes and bibliographic information; and miscellaneous copies of <title localtype="simple" render="italic">
<part>The Mirror</part>
</title> and copies of essays by Reedy. Writings in the collection include an outline and paper submitted by Putzel for courses taken at Washington University in St. Louis in the mid 1950s and a draft and setting copy of Putzel's book-length biography of Reedy.</p>
</scopecontent>
<arrangement id="aspace_300513f5ecab5c590ab9b60387cd525e">
<head>Arrangement</head>
<p>Organized into two series: I. Research Material, 1907-1963. II. Writings, 1954-1963.</p>
</arrangement>
<controlaccess>
<title source="local">
<part localtype="uniform_title">The Mirror, St. Louis</part>
</title>
<title identifier="http://id.loc.gov/authorities/names/n97116251"
source="lcsh">
<part localtype="uniform_title">Mirror (Saint Louis, Mo.)</part>
</title>
<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 identifier="http://id.loc.gov/authorities/subjects/sh89005219"
source="lcsh">
<part localtype="topical">Journalists</part>
<part localtype="geographic">United States</part>
</subject>
<subject source="local">
<part localtype="topical">Periodicals</part>
<part localtype="geographic">United States</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/names/n79041725"
source="lcsh">
<part localtype="geographic">Saint Louis (Mo.)</part>
</geogname>
<occupation source="local">
<part localtype="occupation">Journalists</part>
<part localtype="geographic">United States</part>
<part localtype="temporal">20th cenntury</part>
</occupation>
<persname source="local">
<part localtype="agent_person">Putzel, Max (Man in The mirror)</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Reedy, William Marion, 1862-1920</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/694558"
id="ref12"
level="series">
<did>
<unittitle>Research Material</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4.66</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">8 boxes</physdesc>
<unitdatestructured altrender="1907-1963" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1963">1963</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_a34bab8c38f1149132da26ec507bfcf9">
<head>Arrangement</head>
<p>Organized into three subseries: Subject Files, Index Cards, and Other Material.</p>
</arrangement>
<scopecontent id="aspace_2b243bcc3623dde1acea724752067348">
<head>Scope and Contents</head>
<p>The research materials include subject files, index cards, and writings relating to Max Putzel's work on William Marion Reedy and <title localtype="simple" render="italic">
<part>The Mirror</part>
</title>. The subject files consist chiefly of photomechanical copies of articles from <title localtype="simple" render="italic">
<part>The Mirror</part>
</title> and other publications, including work by Reedy and others, as well as original newspaper clippings and correspondence. Correspondence includes (copies of) letters from Reedy and letters to and from Putzel. The index cards contain Putzel's autograph manuscript notes and bibliographic information. Other materials include miscellaneous copies of <title localtype="simple" render="italic">
<part>The Mirror</part>
</title> and copies of essays by Reedy.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/694559"
id="ref14"
level="subseries">
<did>
<unittitle>Subject Files</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/694560"
id="ref15"
level="file">
<did>
<unittitle>Akins, Zoe</unittitle>
<unitdatestructured altrender="1907-1958, undated"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1907">1907</fromdate>
<todate standarddate="1958">1958</todate>
</daterange>
</unitdatestructured>
<physloc id="aspace_a3c36ed4acf0ca914bacdb186bccf65a">Also stored in: Oversize, Box 10</physloc>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694561"
id="ref17"
level="file">
<did>
<unittitle>Atherton, Gertude</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694562"
id="ref18"
level="file">
<did>
<unittitle>Beardsley, Aubrey</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694563"
id="ref19"
level="file">
<did>
<unittitle>Bellamy, Edward</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694564"
id="ref20"
level="file">
<did>
<unittitle>Bernays, Thekla</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694565"
id="ref21"
level="file">
<did>
<unittitle>Bibliog[raphical] Notes</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694566"
id="ref22"
level="file">
<did>
<unittitle>Bierce, Ambrose</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694567"
id="ref23"
level="file">
<did>
<unittitle>Bloch, Albert</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694568"
id="ref24"
level="file">
<did>
<unittitle>Braithwaite, William Stanley (copies)</unittitle>
<unitdatestructured altrender="1915-1917" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1915">1915</fromdate>
<todate standarddate="1917">1917</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694569"
id="ref25"
level="file">
<did>
<unittitle>Braun, W. C.</unittitle>
<unitdatestructured altrender="1953, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1953">1953, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694570"
id="ref26"
level="file">
<did>
<unittitle>Bruner, R. W.</unittitle>
<unitdatestructured altrender="1959 June 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959-06-06">1959 June 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694571"
id="ref27"
level="file">
<did>
<unittitle>Bryan, William Jennings</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694572"
id="ref28"
level="file">
<did>
<unittitle>Byars, William Vincent</unittitle>
<unitdatestructured altrender="1959, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">1959, undated</datesingle>
</unitdatestructured>
<physloc id="aspace_39001b5132ce774733eef7c9304ae723">Also stored in: Oversize, Box 10</physloc>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694573"
id="ref30"
level="file">
<did>
<unittitle>Cable, George W.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694574"
id="ref31"
level="file">
<did>
<unittitle>Carman, Bliss</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694575"
id="ref32"
level="file">
<did>
<unittitle>Chopin, Kate</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694576"
id="ref33"
level="file">
<did>
<unittitle>Churchill, Winston</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694577"
id="ref34"
level="file">
<did>
<unittitle>Clemens, Cyril</unittitle>
<unitdatestructured altrender="1963 April 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1963-04-08">1963 April 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694578"
id="ref35"
level="file">
<did>
<unittitle>Cowper, William</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694579"
id="ref36"
level="file">
<did>
<unittitle>Crane, Stephen</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694580"
id="ref37"
level="file">
<did>
<unittitle>"D" general</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694581"
id="ref38"
level="file">
<did>
<unittitle>Dreiser & Reedy</unittitle>
<unitdatestructured altrender="1959, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1959">1959, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694582"
id="ref39"
level="file">
<did>
<unittitle>Ederheimer, Richard</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694583"
id="ref40"
level="file">
<did>
<unittitle>Filley, Cle[?] Ives</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694584"
id="ref41"
level="file">
<did>
<unittitle>Forty-Eight, Committee of</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physloc id="aspace_9deb40bfbebf02bd7162c28f0a24c23e">Also stored in: Oversize, Box 10</physloc>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694585"
id="ref43"
level="file">
<did>
<unittitle>"G" general</unittitle>
<unitdatestructured altrender="1915, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1915">1915, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694586"
id="ref44"
level="file">
<did>
<unittitle>Garland, Hamlin</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694587"
id="ref45"
level="file">
<did>
<unittitle>George, Henry</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694588"
id="ref46"
level="file">
<did>
<unittitle>Godkin, E. L.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694589"
id="ref47"
level="file">
<did>
<unittitle>"H" general (empty)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694590"
id="ref48"
level="file">
<did>
<unittitle>Hawthorne, Nathaniel (empty)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694591"
id="ref49"
level="file">
<did>
<unittitle>Hubbard, Elbert</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694592"
id="ref50"
level="file">
<did>
<unittitle>Huebsch, B. W.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694593"
id="ref51"
level="file">
<did>
<unittitle>Imperialism 1896-</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694594"
id="ref52"
level="file">
<did>
<unittitle>Kennerley, Mitchell</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<physloc id="aspace_8e806d27faf663299c006ff7f48f8c0c">Also stored in: Oversize, Box 10</physloc>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694595"
id="ref54"
level="file">
<did>
<unittitle>LaBeaume, Louis</unittitle>
<unitdatestructured altrender="1916-1918" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1916">1916</fromdate>
<todate standarddate="1918">1918</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694596"
id="ref55"
level="file">
<did>
<unittitle>Lawrence, J. J.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694597"
id="ref56"
level="file">
<did>
<unittitle>Lindsay, Vachel</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694598"
id="ref57"
level="file">
<did>
<unittitle>Li[erature], Amer[ican]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694599"
id="ref58"
level="file">
<did>
<unittitle>Loomis, Roger Sherman</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81675 /locations/9"
containerid="39002104674024"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694600"
id="ref59"
level="file">
<did>
<unittitle>Lowell, Amy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694601"
id="ref60"
level="file">
<did>
<unittitle>Masters, ----</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694602"
id="ref61"
level="file">
<did>
<unittitle>"McGaffey-Reedy autograph"</unittitle>
<unitdatestructured altrender="1905" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1905">1905</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694603"
id="ref62"
level="file">
<did>
<unittitle>McIntyre, Minnie</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694604"
id="ref63"
level="file">
<did>
<unittitle>McKinley, William</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694605"
id="ref64"
level="file">
<did>
<unittitle>Mirror bibliography</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694606"
id="ref65"
level="file">
<did>
<unittitle>Mosher, Thos.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694607"
id="ref66"
level="file">
<did>
<unittitle>"P" general (empty)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694608"
id="ref67"
level="file">
<did>
<unittitle>Pollard, Joseph Percival</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694609"
id="ref68"
level="file">
<did>
<unittitle>"R/Biog/Bauday"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694610"
id="ref69"
level="file">
<did>
<unittitle>"R/Biog/St. L. Post-Dispatch"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694611"
id="ref70"
level="file">
<did>
<unittitle>"R/Biog/St. Louis Univ. Mag." (empty)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694612"
id="ref71"
level="file">
<did>
<unittitle>Religion (empty)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/694613"
id="ref72"
level="file">
<did>
<unittitle>(Rudy) Biog[raphy]</unittitle>
<unitdatestructured altrender="1941, undated" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1941">1941, undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/81676 /locations/9"
containerid="39002104674032"