-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1102.xml
2085 lines (2085 loc) · 123 KB
/
1102.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.perfam">beinecke.perfam</recordid>
<otherrecordid localtype="BIB">3975273</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Percy Family Papers
</titleproper>
<titleproper localtype="filing">Percy Family Papers</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>June 1996</date>
<num>OSB MSS 88</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">3975273</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-2</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>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:10:20-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 00:10</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1102" level="collection">
<did>
<unittitle>Percy family papers</unittitle>
<unitid>OSB MSS 88</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>0.63</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">2 boxes</physdesc>
<unitdatestructured altrender="1760-1822" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1760">1760</fromdate>
<todate standarddate="1822">1822</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_93408c8fb584ae980a883b05450f0464">Correspondence, covers, and other documents chiefly from members of the Percy family to members of the Davidson family, disbound from album assembled by Thomas Davidson, Jr. Includes routine business and social letters from the first three Dukes of Northumberland to Thomas Davidson and Thomas Davidson, Jr.; letters from Elizabeth Percy to Martha Davidson; one letter by Thomas Percy; and various autographs and seals.</abstract>
<origination label="Creator">
<persname source="local">
<part localtype="agent_person">Davidson, Thomas, active approximately 1800</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_f97693becc4a7c0dd2d1cb1d5f32c385">
<head>Immediate Source of Acquisition</head>
<p>Purchased in 1969. For further information, please consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_5f5b2406bf25ccffcef543563789cbce">
<head>Conditions Governing Use</head>
<p>The Percy Family Papers are 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_5c09cff1cdafececa54d707de4b8725a">
<head>Preferred Citation</head>
<p>Percy Family Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_26edd72c2aa2e601b0837b8820341017">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_3f234fa53442b6a6b2c74896b1a9c7ca">
<head>Processing Information</head>
<p>This finding aid was produced from a previously existing card set in the Manuscripts Catalog, or from another inventory. All pertinent bibliographical information has been retained.</p>
</processinfo>
<bioghist id="aspace_6203830f9d06ce6d5c2aef897f86c93b">
<head>I. Hugh Percy (formerly Smithson), 1st Duke of Northumberland, 1715-1786</head>
<p>Hugh Smithson, fourth baronet of Stanwick in Yorkshire, married the heiress to the Percy title and estates in 1740 over the objections of her family. In 1750, shortly after her succession as Baroness Percy <title localtype="simple" render="italic">
<part>suo jure</part>
</title>, Hugh Smithson took the surname Percy by Act of Parliament and was seated in the House of Lords as Earl of Northumberland. He was created Duke in 1766 with the support of William Pitt.</p>
<p>Northumberland was active in politics for over thirty years. He instituted many agricultural improvements on the Percy estates, reclaiming land and rebuilding laborers' cottages, and developed highly profitable coal mines. He renovated Alnwick Castle, hiring Robert Adam as architect and designer, was elected a Fellow of the Royal Society, and was a founding Trustee of the British Museum.</p>
<p>The couple had two sons and one daughter, Lady Elizabeth, who died unmarried. In addition, Northumberland had several natural children. His son James Smithson, born in France to Elizabeth Keate Macie in 1765, was trained as a scientist at Oxford and died in Genoa in 1829, leaving the estate that eventually became the founding bequest of the Smithsonian Institution.</p>
<p>Lady Elizabeth Percy, Duchess of Northumberland, died in 1776. Hugh Percy, Duke of Northumberland, died on June 6, 1786.</p>
</bioghist>
<bioghist id="aspace_797ad3fe6b4c6b97ed0a44ee17fad769">
<head>II. Hugh Percy, (sometime Smithson), 2nd Duke of Northumberland, 1742-1817</head>
<p>Eldest son of the first Duke, Hugh Smithson assumed the surname of Percy by Act of Parliament along with his father in 1750. He entered the Army in 1759 and in 1764 married Lady Anne Stuart, daughter of Lord Bute. He served with distinction at the Battle of Lexington and was named Lieutenant-General of the Army in America early in 1777, but was recalled from command after many disputes with General Howe. He continued his military career, however, taking command of the Percy yeomanry regiment in 1798 and a colonelcy in the horse-guards in 1806.</p>
<p>Northumberland was granted a divorce in Parliament from Lady Anne in 1779 on the grounds of her adultery; he immediately married Frances Julia Burrell, with whom he had three daughters and two sons. He continued his father's agricultural improvements, and when corn prices fell after 1815, he reduced his rents by twenty-five percent; his tenants built a monument to him in gratitude. He held twice-weekly gatherings at Alnwick Castle, inviting tenants and local tradespeople. The second Duke of Northumberland died suddenly "of rheumatic gout" in July 1817. His widow died in May, 1820.</p>
</bioghist>
<bioghist id="aspace_548f1b99744b4397c81b0687df189e94">
<head>III. Hugh Percy, 3rd Duke of Northumberland, 1785-1847</head>
<p>Hugh Percy, eldest son of the second Duke, was educated at St. John's College, Cambridge and elected M.P. for Buckingham and for Westminster in 1806. While in Parliament he proposed a bill to abolish slavery in the British colonies, but it failed. In 1807 he took his seat in the House of Lords as Baron Percy. Ten years later he succeeded his father as Duke of Northumberland. He married Lady Charlotte Florentia Clive, who was for some years Governess to the future Queen Victoria. The couple had no children.</p>
<p>Northumberland was Ambassador Extraordinary to France at the coronation of Charles X in 1825. In January 1829 he was appointed Governor-General of Ireland, shortly before the passage of the Catholic Relief Bill, and was recalled when the ministry of the Duke of Wellington fell in November 1830. He was elected Chancellor of Cambridge in 1840, a post he held until his death at Alnwick Castle on February 12, 1847.</p>
</bioghist>
<scopecontent id="aspace_43f91d93bf0ffeffef3a3376a5eadcf8">
<head>Scope and Contents</head>
<p>The Percy Family Papers consist of letters, covers, and a few other papers, most sent to members of the Davidson family by several members of the Percy (Smithson) family, particularly the first three Dukes of Northumberland. The papers span the dates 1760-1822 and were originally assembled into an autograph album by Thomas Davidson, Jr., Esq. of Newcastle on Tyne, who held at least two patronage positions in the grant of the Dukes, including Distributor of Stamps for Northumberland. The album was disassembled in 1969 and the correspondence received its present arrangement; other papers were apparently kept in their original order. The papers have been organized into two series: I. Correspondence; and II. Other Album Pages.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref14">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, is housed in folders 1-97 and contains letters and covers, arranged alphabetically by correspondent. About half of the items in the series are unaccompanied covers addressed to various members of the Davidson family, mounted on album pages, some annotated by Davidson. The remainder are almost entirely brief business and social notes from the Dukes of Northumberland to Thomas Davidson and Thomas Davidson, Jr.</p>
<p>While the letters are largely routine, the correspondence as a whole sheds light on the strong and well-tended connections between the Percy family and the recipients of their patronage. Topics include payments and letters to be forwarded by Davidson for them; local committee meetings, village and manor court schedules, and appointments; social calls and invitations to public receptions at Alnwick Castle; congratulations on the birth of children and condolences on deaths; and the frequent absences of the Dukes and their family members in London.</p>
<p>A letter of February 6, 1781 conveys Northumberland's endorsement of Thomas Davidson, Jr.'s nomination as Distributor of Stamps. Letters by the second Duke of Northumberland also discuss Davidson's appointment as Clerk of the Lieutenancy of the County and various militia matters during the Napoleonic Wars. An 1816 letter concerns shipping arrangements for a portrait of the Duke by Thomas Phillips, which "has been much admired in London by the connoisseurs." Box 2, folder 86 contains four letters from his sister, Lady Elizabeth Percy, to Martha Davidson, containing family news and expressions of homesickness for Alnwick Castle.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref137">Series II, <title localtype="simple" render="italic">
<part>Other Album Pages</part>
</title>
</ref>, is located in folders 98-107 and arranged in original album order. Contents include a printed copy of the Davidson crest; locks of hair; a recipe for rheumatism medicine; and detached autographs and seals. There are two printed items: a copy of the popular facsimile of the last letter of Queen Marie Antoinette with accompanying printed translation; and a broadside "Monody on the Death" of Frances Julia, Dowager Duchess of Northumberland, attributed to "M.H." of "Ladies' Academy, Wearmouth."</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Nobility</part>
<part localtype="geographic">Great Britain</part>
<part localtype="genre_form">Autographs</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85098774"
source="lcsh">
<part localtype="topical">Patronage, Political</part>
</subject>
<geogname source="local">
<part localtype="geographic">Northumberland (England)</part>
<part localtype="topical">History</part>
</geogname>
<persname rules="aacr">
<part localtype="agent_person">Davidson, Martha</part>
</persname>
<persname source="local">
<part localtype="agent_person">Davidson, Thomas, 1722-1781</part>
</persname>
<persname source="local">
<part localtype="agent_person">Davidson, Thomas, active approximately 1800</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Northumberland, Algernon Percy, Duke of, 1792-1865</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Northumberland, Hugh Percy, Duke of, 1712-1786</part>
</persname>
<persname>
<part localtype="agent_person">Northumberland, Hugh Percy, Duke of, 1742-1817</part>
</persname>
<persname>
<part localtype="agent_person">Northumberland, Hugh Percy, Duke of, 1785-1847</part>
</persname>
<persname source="local">
<part localtype="agent_person">Percy, Elizabeth, Lady</part>
</persname>
<persname>
<part localtype="agent_person">Percy, Thomas, 1729-1811</part>
</persname>
<famname>
<part localtype="agent_family">Percy family</part>
</famname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/395538"
id="ref14"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.51</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1.5 boxes</physdesc>
<unitdatestructured altrender="1760-1822" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1760">1760</fromdate>
<todate standarddate="1822">1822</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_ee8ecdc9a7055741f3308e7c91eec927">
<head>Scope and Contents</head>
<p>Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>, is arranged alphabetically by name of correspondent.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/395539"
id="ref16"
level="subseries">
<did>
<unittitle>HAMILTON, EUPHEMIA HAMILTON, DUCHESS OF, 1786-1859</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/395540"
id="ref17"
level="file">
<did>
<unittitle>ALS to Martha Davidson</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">1</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/395541"
id="ref18"
level="subseries">
<did>
<unittitle>HEARD, ISAAC, 1730-1822</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/395542"
id="ref19"
level="file">
<did>
<unittitle>ALS to the Duke of Northumberland</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
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>
</c>
</c>
<c altrender="/repositories/11/archival_objects/395543"
id="ref20"
level="subseries">
<did>
<unittitle>LEFEVRE, ----</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/395544"
id="ref21"
level="file">
<did>
<unittitle>ALS to Henry Reveley</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
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>
</c>
</c>
<c altrender="/repositories/11/archival_objects/395545"
id="ref22"
level="subseries">
<did>
<unittitle>NORTHUMBERLAND, CHARLOTTE FLORENTIA (CLIVE) PERCY,</unittitle>
</did>
<scopecontent id="aspace_9ae476c427f328a6541241ba19ebbb41">
<head>Scope and Contents</head>
<p>[DUCHESS OF, 1787-1866]</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/395546"
id="ref23"
level="file">
<did>
<unittitle>ALS to Martha Davidson; London</unittitle>
<unitdatestructured altrender="1820 Mar 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1820-03-23">1820 Mar 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
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>
</c>
</c>
<c altrender="/repositories/11/archival_objects/395547"
id="ref25"
level="subseries">
<did>
<unittitle>NORTHUMBERLAND, FRANCES JULIA (BURELL) PERCY,</unittitle>
</did>
<scopecontent id="aspace_53e83ca900ccd10c299f328d1d99b26b">
<head>Scope and Contents</head>
<p>[DUCHESS OF, 1752-1820]</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/395548"
id="ref26"
level="file">
<did>
<unittitle>2 ALS to Martha Davidson; Clifton</unittitle>
<unitdatestructured altrender="1789 Oct 6, n.d."
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1789-10-06">1789 Oct 6, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395549"
id="ref27"
level="file">
<did>
<unittitle>ALS to Thomas Davidson, Jr.</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
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>
</c>
</c>
<c altrender="/repositories/11/archival_objects/395551"
id="ref30"
level="subseries">
<did>
<unittitle>NORTHUMBERLAND, HUGH PERCY, DUKE OF, 1715-1786</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/395552"
id="ref31"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Northumberland House</unittitle>
<unitdatestructured altrender="1760 Feb 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760-02-05">1760 Feb 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395553"
id="ref32"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1765 Apr 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1765-04-12">1765 Apr 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
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>
</c>
<c altrender="/repositories/11/archival_objects/395554"
id="ref33"
level="file">
<did>
<unittitle>ALS in third person to Thomas Davidson; Northumberland House</unittitle>
<unitdatestructured altrender="1772 Feb 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1772-02-14">1772 Feb 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395555"
id="ref34"
level="file">
<did>
<unittitle>LS to Thomas Davidson; Northumberland House</unittitle>
<unitdatestructured altrender="1781 Feb 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1781-02-06">1781 Feb 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">10</container>
</did>
<scopecontent id="aspace_e85639d77e4a948bddbff4e11444e2b9">
<head>Scope and Contents</head>
<p>T. Davidson, Jr., to be Distributor of Stamps. In the hand of Thomas Percy</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/395556"
id="ref36"
level="file">
<did>
<unittitle>ALS in third person to Thomas Davidson</unittitle>
<unitdatestructured altrender="[1783?] Oct 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-10-04">[1783?] Oct 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395557"
id="ref37"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Bath</unittitle>
<unitdatestructured altrender="1783 Nov 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-11-18">1783 Nov 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395558"
id="ref38"
level="file">
<did>
<unittitle>ALS to John Lowes; Bath</unittitle>
<unitdatestructured altrender="1783 Dec 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-12-14">1783 Dec 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395559"
id="ref39"
level="file">
<did>
<unittitle>2 LS to William Lowes; Northumberland House</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1774 May, Jun</unitdate>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">14</container>
</did>
<scopecontent id="aspace_69648d02e6bebc4874a87322163cd861">
<head>Scope and Contents</head>
<p>Concerning a forthcoming election; in the hand of Thomas Percy</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/395560"
id="ref41"
level="subseries">
<did>
<unittitle>NORTHUMBERLAND, HUGH PERCY, DUKE OF, 1742-1817</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/395561"
id="ref42"
level="file">
<did>
<unittitle>ALS to John Davidson; Syon [London]</unittitle>
<unitdatestructured altrender="1786 Jul 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1786-07-08">1786 Jul 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395562"
id="ref43"
level="file">
<did>
<unittitle>Cover to John Davidson; Alnwick</unittitle>
<unitdatestructured altrender="1788 Jul 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1788-07-16">1788 Jul 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
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>
</c>
<c altrender="/repositories/11/archival_objects/395563"
id="ref44"
level="file">
<did>
<unittitle>ALS to John Davidson; Alnwick Castle</unittitle>
<unitdatestructured altrender="1804 Jan 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1804-01-08">1804 Jan 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395564"
id="ref45"
level="file">
<did>
<unittitle>ALS to John Davidson; Alnwick Castle</unittitle>
<unitdatestructured altrender="1809 Oct 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1809-10-19">1809 Oct 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395565"
id="ref46"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Stanwick</unittitle>
<unitdatestructured altrender="1783 Nov 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-11-12">1783 Nov 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395566"
id="ref47"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Stanwick</unittitle>
<unitdatestructured altrender="1783 Dec 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1783-12-03">1783 Dec 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395567"
id="ref48"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Stanwick</unittitle>
<unitdatestructured altrender="1784 Jan 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1784-01-05">1784 Jan 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395568"
id="ref49"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Northumberland House</unittitle>
<unitdatestructured altrender="1787 Apr 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1787-04-07">1787 Apr 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395569"
id="ref50"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; Alnwick</unittitle>
<unitdatestructured altrender="1804 Aug 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1804-08-21">1804 Aug 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395570"
id="ref51"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Alnwick Castle</unittitle>
<unitdatestructured altrender="1805 Aug 19" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1805-08-19">1805 Aug 19</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395571"
id="ref52"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Alnwick Castle</unittitle>
<unitdatestructured altrender="1805 Sep" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1805-09">1805 Sep</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395572"
id="ref53"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; Alnwick</unittitle>
<unitdate label="creation" unitdatetype="inclusive">1805 -- 15</unitdate>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395573"
id="ref54"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1808 Apr 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-04-25">1808 Apr 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395574"
id="ref55"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1808 May 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-05-04">1808 May 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395575"
id="ref56"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1808 Aug 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1808-08-18">1808 Aug 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395576"
id="ref57"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Alnwick Castle</unittitle>
<unitdatestructured altrender="1810 May 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1810-05-21">1810 May 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395577"
id="ref58"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; Alnwick</unittitle>
<unitdatestructured altrender="1810 Dec 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1810-12-26">1810 Dec 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395578"
id="ref59"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; Alnwick Castle</unittitle>
<unitdatestructured altrender="1811 Feb 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1811-02-27">1811 Feb 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395579"
id="ref60"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; Alnwick</unittitle>
<unitdatestructured altrender="1812 Jan 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1812-01-12">1812 Jan 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395580"
id="ref61"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; Alnwick</unittitle>
<unitdatestructured altrender="1812 Apr 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1812-04-25">1812 Apr 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395581"
id="ref62"
level="file">
<did>
<unittitle>Cover to Miss Davidson; Alnwick</unittitle>
<unitdatestructured altrender="1813 Jan 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1813-01-28">1813 Jan 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">35</container>
</did>
<scopecontent id="aspace_be7aa0012514692cea68cf7be3cd4976">
<head>Scope and Contents</head>
<p>With note, "Please remember me kindly to Bolby."</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/395582"
id="ref64"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1814 Jun 24" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-06-24">1814 Jun 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395583"
id="ref65"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1814 Aug 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-08-10">1814 Aug 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref65_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref65_c2" localtype="folder" parent="aspace_ref65_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395584"
id="ref66"
level="file">
<did>
<unittitle>ALS fragment to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1814 Sep 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-09-26">1814 Sep 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref66_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref66_c2" localtype="folder" parent="aspace_ref66_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395585"
id="ref67"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1814 Sep 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-09-29">1814 Sep 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref67_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref67_c2" localtype="folder" parent="aspace_ref67_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395586"
id="ref68"
level="file">
<did>
<unittitle>Cover to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1814 Dec 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-12-20">1814 Dec 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref68_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref68_c2" localtype="folder" parent="aspace_ref68_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395587"
id="ref69"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1814 Dec 28" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1814-12-28">1814 Dec 28</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref69_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref69_c2" localtype="folder" parent="aspace_ref69_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395588"
id="ref70"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1815 Mar 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1815-03-22">1815 Mar 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref70_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref70_c2" localtype="folder" parent="aspace_ref70_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395589"
id="ref71"
level="file">
<did>
<unittitle>ALS to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1815 Apr 15" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1815-04-15">1815 Apr 15</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref71_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref71_c2" localtype="folder" parent="aspace_ref71_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395590"
id="ref72"
level="file">
<did>
<unittitle>ALS (fragment) to Thomas Davidson; London</unittitle>
<unitdatestructured altrender="1815 Jun 12" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1815-06-12">1815 Jun 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38694 /locations/4051"
containerid="39002099340375"
id="aspace_ref72_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref72_c2" localtype="folder" parent="aspace_ref72_c1">44</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/395591"
id="ref73"