-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path649.xml
2607 lines (2607 loc) · 150 KB
/
649.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.pres">beinecke.pres</recordid>
<otherrecordid localtype="BIB">4116244</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the United States Presidents Collection
</titleproper>
<titleproper localtype="filing">United States Presidents Collection</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>July 1997</date>
<num>GEN MSS 271</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">4116244</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-3, 4 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="6">6</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="26">26</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>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</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-08T23:28:30-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:28</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/649" level="collection">
<did>
<unittitle>United States presidents collection</unittitle>
<unitid>GEN MSS 271</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.4</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">3 boxes + 1 portfolio</physdesc>
<unitdatestructured altrender="1778-1948" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1778">1778</fromdate>
<todate standarddate="1948">1948</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_45baa50d79de939a5ff10a74db452a2f">Letters, legal documents, and other material created or signed by United States presidents.</abstract>
</did>
<acqinfo id="aspace_7024cc30b2669453cde2dadd52b50dca">
<head>Immediate Source of Acquisition</head>
<p>Ongoing collection of documents acquired by gift and purchase from various sources. Type of accession (gift or purchase) and date of acquisition is noted in the box-and-folder list. For further information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_fcf8f85531c9cea5a8ee706bd74bde4f">
<head>Conditions Governing Use</head>
<p>The United States Presidents Collection 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_1c59903ff9f0ec568578e13d6eff9c43">
<head>Preferred Citation</head>
<p>United States Presidents Collection. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_5ec9c84e8f52077cbb3195a583fd7670">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Restricted Fragile Papers in portfolio may only be consulted with permission of the appropriate curator. Preservation photocopies for reference use have been substituted in the main files.</p>
</accessrestrict>
<processinfo id="aspace_67c00038f48325ea9f9aa9d325d78f58">
<head>Processing Information</head>
<p>This finding aid was produced from previously existing cards in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained. If the collection also contains unlisted or unsorted material, it has been noted in the box-and-folder list. This finding aid will be updated periodically to account for new materials that may be added to the collection. The date of the most recent update is noted on the title page. For information on material that may have been added since the last update, please consult the Public Service Desk.</p>
</processinfo>
<scopecontent id="aspace_f39dadeef44060fa62bd9192e0c1c750">
<head>Scope and Contents</head>
<p>This finding aid encompasses accessions of single manuscripts and small groups of manuscripts and other papers, by or pertaining to United States Presidents, which the library has chosen to group and list as an artificial collection.</p>
</scopecontent>
<controlaccess>
<persname>
<part localtype="agent_person">Adams, John Quincy, 1767-1848</part>
</persname>
<persname>
<part localtype="agent_person">Adams, John, 1735-1826</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Arthur, Chester Alan, 1829-1886</part>
</persname>
<persname>
<part localtype="agent_person">Buchanan, James, 1791-1868</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Cleveland, Grover, 1837-1908</part>
</persname>
<persname>
<part localtype="agent_person">Coolidge, Calvin, 1872-1933</part>
</persname>
<persname>
<part localtype="agent_person">Fillmore, Millard, 1800-1874</part>
</persname>
<persname>
<part localtype="agent_person">Grant, Ulysses S. (Ulysses Simpson), 1822-1885</part>
</persname>
<persname>
<part localtype="agent_person">Harding, Warren G. (Warren Gamaliel), 1865-1923</part>
</persname>
<persname>
<part localtype="agent_person">Jackson, Andrew, 1767-1845</part>
</persname>
<persname>
<part localtype="agent_person">Jefferson, Thomas, 1743-1826</part>
</persname>
<persname>
<part localtype="agent_person">Lincoln, Abraham, 1809-1865</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Madison, James, 1751-1836</part>
</persname>
<persname>
<part localtype="agent_person">Pierce, Franklin, 1804-1869</part>
</persname>
<persname>
<part localtype="agent_person">Polk, James K. (James Knox), 1795-1849</part>
</persname>
<persname>
<part localtype="agent_person">Roosevelt, Franklin D. (Franklin Delano), 1882-1945</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Roosevelt, Theodore, 1858-1919</part>
</persname>
<persname>
<part localtype="agent_person">Taft, William H. (William Howard), 1857-1930</part>
</persname>
<persname>
<part localtype="agent_person">Taylor, Zachary, 1784-1850</part>
</persname>
<persname>
<part localtype="agent_person">Truman, Harry S., 1884-1972</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Tyler, John, 1790-1862</part>
</persname>
<persname>
<part localtype="agent_person">Van Buren, Martin, 1782-1862</part>
</persname>
<persname>
<part localtype="agent_person">Washington, George, 1732-1799</part>
</persname>
<persname>
<part localtype="agent_person">Wilson, Woodrow, 1856-1924</part>
</persname>
<corpname source="local">
<part localtype="agent_corporate_entity">United States. President</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/215003"
id="ref11"
level="series">
<did>
<unittitle>File List</unittitle>
<unitid>Series I</unitid>
</did>
<c altrender="/repositories/11/archival_objects/215004"
id="ref12"
level="file">
<did>
<unittitle>Adams, John</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215005"
id="ref13"
level="file">
<did>
<unittitle>Letters-patent appointing Joseph Hopkinson Indian comissioner for the Oneida Tribe, Philadelphia</unittitle>
<unitdatestructured altrender="1798 May 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1798-05-04">1798 May 4</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_b83fe299a12dddff7282fef6b60c9ca6">
<head>Scope and Contents</head>
<p>Also signed by Timothy Pickering. Accompanied by engraved portrait of Adams. Gift, 1957.</p>
</scopecontent>
<relatedmaterial id="aspace_9e5bab58fb19a5ac708aa4f59e105c8f">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref221">See: Oversize, box 3, folder 89</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/215006"
id="ref16"
level="file">
<did>
<unittitle>Receipt in Adams' hand stating that he has given to William Walters 33 guilders and five stuyvers, Amsterdam</unittitle>
<unitdatestructured altrender="1781 Jan 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1781-01-14">1781 Jan 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">1</container>
</did>
<scopecontent id="aspace_5beea195fe1a8a6cdff986bf60f9c403">
<head>Scope and Contents</head>
<p>Receipt is signed by William Walters. A note on the verso identifies Walters as "a seaman prisoner escaped from England and taken with the Small Pox here at Amsterdam." Gift, 1958.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215007"
id="ref18"
level="file">
<did>
<unittitle>Adams, John Quincy</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215008"
id="ref19"
level="file">
<did>
<unittitle>ALS to D[avid] Francis Bacon, Washington, D.C.</unittitle>
<unitdatestructured altrender="1845 Mar 31" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845-03-31">1845 Mar 31</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">2</container>
</did>
<scopecontent id="aspace_3db3f1aa9c6fe04fe994c0dd62323f53">
<head>Scope and Contents</head>
<p>With envelope.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215009"
id="ref21"
level="file">
<did>
<unittitle>AL (in third person) to Mrs. [Sidney Stotesbury?] Dickerson</unittitle>
<unitdatestructured altrender="1836 Feb 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1836-02-08">1836 Feb 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">3</container>
</did>
<scopecontent id="aspace_4f45731a3a42cc381cfc7291730fd10a">
<head>Scope and Contents</head>
<p>Removed from: <title localtype="simple" render="italic">
<part>Abraham Lincoln</part>
</title> by Nicolay and Hay (New York, 1917). Gift, 1954.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215010"
id="ref23"
level="file">
<did>
<unittitle>ANS to Messers. A Glennie and Son, London</unittitle>
<unitdatestructured altrender="1817 Mar 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1817-03-24">1817 Mar 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">4</container>
</did>
<scopecontent id="aspace_d561eef6890f1292476526656e0ca77b">
<head>Scope and Contents</head>
<p>Accompanied by small piece of paper: "I John Quincy Adams, of Quincy (County of) Norfolk (and) Commonwealth of Massachusetts."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215011"
id="ref25"
level="file">
<did>
<unittitle>ALS to Henry Wheaton, introducing E. C. Bacon, Washington, D.C.</unittitle>
<unitdatestructured altrender="1844 Apr 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1844-04-08">1844 Apr 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">5</container>
</did>
<scopecontent id="aspace_41c3e8506abf7f93fd1937a67e86c1a0">
<head>Scope and Contents</head>
<p>Gift, 1927.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215012"
id="ref27"
level="file">
<did>
<unittitle>"Extracts of a Resolution, approved 27 December 1813...23 December 1817 ...23 January 1819...11 January 1822," Department of State, Washington</unittitle>
<unitdatestructured altrender="1822 Jun 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1822-06-27">1822 Jun 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">6</container>
</did>
<scopecontent id="aspace_792fb7510e19364548e04035a5ab2f26">
<head>Scope and Contents</head>
<p>Printed form signed by J. Q. Adams and addressed to Jeremiah Day concerning the depositing of government documents in the libraries of colleges and universities. Address in manuscript.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215013"
id="ref29"
level="file">
<did>
<unittitle>Arthur, Chester Allan. ANS of autobiographical details</unittitle>
<unitdatestructured altrender="[1880 Jun 8]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1880-06-08">[1880 Jun 8]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">7</container>
</did>
<scopecontent id="aspace_183ef5b7099d7a8f74e60f4585a29958">
<head>Scope and Contents</head>
<p>Gift, 1930.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215014"
id="ref31"
level="file">
<did>
<unittitle>Buchanan, James</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215015"
id="ref32"
level="file">
<did>
<unittitle>ANS to the President [James K. Polk?]</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">8</container>
</did>
<scopecontent id="aspace_a3c4716ce82a949d1cf1d20e489a1240">
<head>Scope and Contents</head>
<p>With fragment of autograph letter from Joshua Bates. Gift, 1938.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215016"
id="ref34"
level="file">
<did>
<unittitle>ALS to Charles S. Todd, Washington</unittitle>
<unitdatestructured altrender="1844 Mar 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1844-03-18">1844 Mar 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">9</container>
</did>
<scopecontent id="aspace_f0c637090355fe4c634f29f8e6ac5607">
<head>Scope and Contents</head>
<p>Gift, 1927.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215017"
id="ref36"
level="file">
<did>
<unittitle>ALS to Robert J. Walker, Washington</unittitle>
<unitdatestructured altrender="1845 Sep 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1845-09-03">1845 Sep 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">10</container>
</did>
<scopecontent id="aspace_833a3aac456c4a175dee5f93a2866151">
<head>Scope and Contents</head>
<p>Removed from: <title localtype="simple" render="italic">
<part>Abraham Lincoln</part>
</title> by Nicolay and Hay (New York, 1917). Gift, 1954.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215018"
id="ref38"
level="file">
<did>
<unittitle>AL to unidentified recipient, Wheatland near Lancaster</unittitle>
<unitdatestructured altrender="1852 Nov 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1852-11-19">1852 Nov 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">11</container>
</did>
<scopecontent id="aspace_65274807957666d28c1a5f90c0e2cef3">
<head>Scope and Contents</head>
<p>Accompanied by a letter from John Bassett Moore to J. H. Penniman, 1924 Jan 26. Gift.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215019"
id="ref40"
level="file">
<did>
<unittitle>Cleveland, Grover</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215020"
id="ref41"
level="file">
<did>
<unittitle>31 ALS, 1 TLS, and 2 telegrams to LeRoy Brooks</unittitle>
<unitdatestructured altrender="1897-1907" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1897">1897</fromdate>
<todate standarddate="1907">1907</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">12-15</container>
</did>
<scopecontent id="aspace_fe6424b60cceb80d073bf88dab5de411">
<head>Scope and Contents</head>
<p>Gift, 1937.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215021"
id="ref43"
level="file">
<did>
<unittitle>ALS to Edward P. Clark, Princeton</unittitle>
<unitdatestructured altrender="1901 Oct 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1901-10-17">1901 Oct 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">16</container>
</did>
<scopecontent id="aspace_ee2a83c8ee452045dfb5fd41ff8a6ba1">
<head>Scope and Contents</head>
<p>With envelope. Gift, 1928.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215022"
id="ref45"
level="file">
<did>
<unittitle>ALS to Robley D. Evans, Princeton</unittitle>
<unitdatestructured altrender="1899 Mar 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1899-03-29">1899 Mar 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">17</container>
</did>
<scopecontent id="aspace_1bc8d4f11fec8a3f8737eb0661fc34c6">
<head>Scope and Contents</head>
<p>With envelope. Introducing LeRoy Brooks. Gift, 1937.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215023"
id="ref47"
level="file">
<did>
<unittitle>ALS to Joseph O'Connor, Albany, [New York]</unittitle>
<unitdatestructured altrender="1884 Oct 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1884-10-24">1884 Oct 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">18</container>
</did>
<scopecontent id="aspace_dda9c3e0724f572773c3eaba88463c88">
<head>Scope and Contents</head>
<p>Gift, 1930.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215024"
id="ref49"
level="file">
<did>
<unittitle>ALS to Robert M. O'Reilly, Princeton</unittitle>
<unitdatestructured altrender="1903 Mar 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1903-03-21">1903 Mar 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">19</container>
</did>
<scopecontent id="aspace_ed4a404c5f0622bba066db80c6cb7be0">
<head>Scope and Contents</head>
<p>With envelope. Introducing LeRoy Brooks. Gift, 1937.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215025"
id="ref51"
level="file">
<did>
<unittitle>ALS to Robert Sedgwick, Princeton</unittitle>
<unitdatestructured altrender="1905 Mar 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1905-03-14">1905 Mar 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">20</container>
</did>
<scopecontent id="aspace_8a228e5e5a6b67ae86022b5a9342ba5b">
<head>Scope and Contents</head>
<p>With envelope. Removed from: <title localtype="simple" render="italic">
<part>A Defense of Fishermen</part>
</title> by Grover Cleveland (Princeton, 1902). Gift, 1954.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215026"
id="ref53"
level="file">
<did>
<unittitle>ALS to E. Stewart Sumner, Albany</unittitle>
<unitdatestructured altrender="1884 Oct 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1884-10-04">1884 Oct 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">21</container>
</did>
<scopecontent id="aspace_87c01d35e71e5d01cd27e226094bd859">
<head>Scope and Contents</head>
<p>Gift, 1956.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215027"
id="ref55"
level="file">
<did>
<unittitle>ALS to William F. Vilas, Chairman, D. P. Bestor, and other members of the Committee of the Democratic National Convention, Albany</unittitle>
<unitdatestructured altrender="1884 Aug" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1884-08">1884 Aug</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">22</container>
</did>
<scopecontent id="aspace_20ece1c506047357cb50dc6784e2de71">
<head>Scope and Contents</head>
<p>This letter, accepting the nomination for President by the Democratic party, was written by Cleveland in the Adirondacks, and sent to Daniel S. Lamont to be copied and transmitted officially to the Democratic party committee. Gift, 1937.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215028"
id="ref57"
level="file">
<did>
<unittitle>Brief for the Supreme Court case of Andrew Spaulding and another versus Albert B. Williams and others, [Buffalo, N.Y.]</unittitle>
<unitdatestructured altrender="[1879]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1879">[1879]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">23</container>
</did>
<scopecontent id="aspace_18816571a33da6c9a8c4575e98810945">
<head>Scope and Contents</head>
<p>Autograph manuscript. Accompanied by: typed sheet giving additional facts concerning the case of Spaulding versus Williams, with George A. Bailey's name stamp; ALS from Judge Charles Barker Wheeler to George A. Bailey, Buffalo, 1915 Jun 9; 3 newspaper clippings concerning manuscript briefs of Cleveland. Gift, 1919.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215029"
id="ref59"
level="file">
<did>
<unittitle>Signature, on Executive Mansion stationery, made at Washington shortly after his marriage</unittitle>
<unitdatestructured altrender="1886 Jun 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1886-06-02">1886 Jun 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">24</container>
</did>
<scopecontent id="aspace_97073839ab2df4253f3be35563d63960">
<head>Scope and Contents</head>
<p>Gift, 1935.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215030"
id="ref61"
level="file">
<did>
<unittitle>Card from Executive Mansion, Washington, autographed</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">25</container>
</did>
<scopecontent id="aspace_6dfa171583b82987bc0ff3c94a241880">
<head>Scope and Contents</head>
<p>Gift, 1956.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215031"
id="ref63"
level="file">
<did>
<unittitle>Card, autographed</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">26</container>
</did>
<scopecontent id="aspace_0b50f422429c07580bd4d5bda220f976">
<head>Scope and Contents</head>
<p>Gift, 1935.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215032"
id="ref65"
level="file">
<did>
<unittitle>Coolidge, Calvin</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215033"
id="ref66"
level="file">
<did>
<unittitle>TLS to the Rainbow Division Veterans Association, Washington</unittitle>
<unitdatestructured altrender="1921 Jun" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921-06">1921 Jun</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">27</container>
</did>
<scopecontent id="aspace_a1580d2097ed5d459dc29eaded2720ef">
<head>Scope and Contents</head>
<p>Accompanied by 2 TLS from Bentley Mulford to the editor of the <title localtype="simple" render="italic">
<part>Saturday Review</part>
</title> and to Andrew Keogh, concerning the letter from Coolidge. Gift, 1925.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215034"
id="ref68"
level="file">
<did>
<unittitle>Holograph letter to William Howard Taft</unittitle>
<unitdatestructured altrender="1923 Oct 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923-10-17">1923 Oct 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">28</container>
</did>
<scopecontent id="aspace_c05d780d75efd337daaa6e3c795238cf">
<head>Scope and Contents</head>
<p>With a note of transmittal from Taft to Anson Phelps Stokes, on verso, 1927 Apr 12. Gift, 1927.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215035"
id="ref70"
level="file">
<did>
<unittitle>Fillmore, Millard</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215036"
id="ref71"
level="file">
<did>
<unittitle>5 ALS to D[avid] Francis Bacon, Buffalo and Washington.</unittitle>
<unitdatestructured altrender="1843-52" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1843">1843</fromdate>
<todate standarddate="1852">1852</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">29</container>
<daoset altrender="/repositories/11/digital_objects/250228">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17477265"
identifier="oid:17477265"
linktitle="12 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17477268/full/!150,150/0/default.jpg"
identifier="oid:17477265"
linktitle="12 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17477265"
identifier="oid:17477265"
linktitle="12 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>5 ALS to D[avid] Francis Bacon, Buffalo and Washington.</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_ca81763fc59f14f8f3a4d7b34d9d9f49">
<head>Scope and Contents</head>
<p>Accompanied by signature clipped from franked envelope and pasted on sheet of paper.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215037"
id="ref73"
level="file">
<did>
<unittitle>ALS to Messrs. Harper and Brothers, New York</unittitle>
<unitdatestructured altrender="1846 May 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1846-05-26">1846 May 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref73_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref73_c2" localtype="folder" parent="aspace_ref73_c1">30</container>
<daoset altrender="/repositories/11/digital_objects/250227">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/17477266"
identifier="oid:17477266"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/17477280/full/!150,150/0/default.jpg"
identifier="oid:17477266"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/17477266"
identifier="oid:17477266"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>ALS to Messrs. Harper and Brothers, New York</p>
</descriptivenote>
</daoset>
</did>
<scopecontent id="aspace_b6fb174c4f3d4e9a65605e8ae8d6eb0b">
<head>Scope and Contents</head>
<p>With detailed suggestions for Chauncey Allen Goodrich's edition of Webster's Dictionary, 1847. Purchase, 1955.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215038"
id="ref75"
level="file">
<did>
<unittitle>Grant, Ulysses Simpson</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215039"
id="ref76"
level="file">
<did>
<unittitle>Signed photograph</unittitle>
<unitdatestructured altrender="1866 Apr 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1866-04-03">1866 Apr 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref76_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref76_c2" localtype="folder" parent="aspace_ref76_c1">31</container>
</did>
<scopecontent id="aspace_d924a95ca53aedb89ecb751f1bf27c50">
<head>Scope and Contents</head>
<p>Gift, 1928.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215040"
id="ref78"
level="file">
<did>
<unittitle>Warrant for pardon of Richard S. Gray, Washington</unittitle>
<unitdatestructured altrender="1873 Mar 11" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1873-03-11">1873 Mar 11</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref78_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref78_c2" localtype="folder" parent="aspace_ref78_c1">32</container>
</did>
<scopecontent id="aspace_0b4e7c5ad96bd97e5db34a01b17df87b">
<head>Scope and Contents</head>
<p>Accompanied by an etching of Grant. Removed from: <title localtype="simple" render="italic">
<part>Abraham Lincoln</part>
</title> by Nicolay and Hay (New York, 1917). Gift, 1954.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215041"
id="ref80"
level="file">
<did>
<unittitle>Harding, Warren Gamaliel</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215042"
id="ref81"
level="file">
<did>
<unittitle>TLS to the Rainbow Division Veterans Association</unittitle>
<unitdatestructured altrender="1921 May" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1921-05">1921 May</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref81_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref81_c2" localtype="folder" parent="aspace_ref81_c1">33</container>
</did>
<scopecontent id="aspace_732402ddeca7fde51108064695df975a">
<head>Scope and Contents</head>
<p>Gift, 1925.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/215043"
id="ref83"
level="file">
<did>
<unittitle>TLS to Dr. W. G. Thompson, Washington</unittitle>
<unitdatestructured altrender="1922 Dec 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922-12-26">1922 Dec 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/19387 /locations/4051"
containerid="39002099281298"
id="aspace_ref83_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref83_c2" localtype="folder" parent="aspace_ref83_c1">34</container>
</did>
<scopecontent id="aspace_f129490ac04d38a152835d72f723d15a">
<head>Scope and Contents</head>
<p>Accompanied by clipping of picture showing Harding using an ax. Gift, 1928.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/215044"
id="ref85"
level="file">
<did>
<unittitle>Jackson, Andrew</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/215045"
id="ref86"
level="file">
<did>
<unittitle>Autograph signature on a land grant to the heirs of James Sufferance, revolutionary soldier</unittitle>
<unitdatestructured altrender="1832 Jun 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1832-06-13">1832 Jun 13</datesingle>
</unitdatestructured>
</did>
<scopecontent id="aspace_1da3334b1074813222e66518ecd96294">
<head>Scope and Contents</head>
<p>Gift, 1934.</p>
</scopecontent>
<relatedmaterial id="aspace_d750863bf8cf05cc51f4b49b93273b5a">