-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1090.xml
1394 lines (1394 loc) · 80.8 KB
/
1090.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.shen">beinecke.shen</recordid>
<otherrecordid localtype="BIB">3946208</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the William Shenstone Papers
</titleproper>
<titleproper localtype="filing">Shenstone (William) Papers</titleproper>
<author>by Diane J. Ducharme</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 2000</date>
<num>OSB MSS 63</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">3946208</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 1</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="5">5</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="15">15</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>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:09:15-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:09</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1090" level="collection">
<did>
<unittitle>William Shenstone papers</unittitle>
<unitid>OSB MSS 63</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.4</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1726-1979, 1751-1770"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1726">1726</fromdate>
<todate standarddate="1979">1979</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1751">1751</fromdate>
<todate standarddate="1770">1770</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_bd6e15c1ddf31c4fd76ab05c502ee688">The papers concern the Leasowes estate, including correspondence with Shenstone's attorney Thomas Milward and others about his legal and financial difficulties; mortgages and indentures on the property; documents concerning the case of Dolman vs. Shenstone and the settlement of his estate after his death; and surveys, descriptions and engravings of the Leasowes.<lb/>The collection also contains engraved portraits of Shenstone; verses addressed to him by friends, including Robert Dodsley and Lady Luxborough; and an autograph copy of his "The Snuff-box."</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Shenstone, William, 1714-1763</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_6df738bf6260075dc771f4d98cfd89fb">
<head>Immediate Source of Acquisition</head>
<p>Bequest of James Marshall and Marie-Louise Osborn. For further information, consult the appropriate curator.</p>
</acqinfo>
<userestrict id="aspace_19c0acd30771c28e8dc818ad637914c4">
<head>Conditions Governing Use</head>
<p>The William Shenstone Papers is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_75201d923c50b3a8908278250cefbcb1">
<head>Preferred Citation</head>
<p>William Shenstone Papers. James Marshall and Marie-Louise Osborn Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_429772f298b21c4690c3022ddbc041d1">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<bioghist id="aspace_27b130c48f70a4ef6f40aad056e24703">
<head>WILLIAM SHENSTONE, 1714-1763</head>
<p>William Shenstone was born in Halesowen, Worcestershire on November 13, 1714. He was educated first in a dame school run by Sarah Lloyd, whom he celebrated in his poem "The Schoolmistress," then at the Halesowen grammar school. In 1732 he matriculated at Pembroke College, Oxford, where his friends included the writers Richard Jago and Richard Graves.</p>
<p>A small volume of his poetry was privately printed at Oxford in 1737, and "The Judgement of Hercules" and "The Schoolmistress" appeared anonymously in 1741 and 1742. Shenstone was enrolled at Oxford until 1742, but took no degree.</p>
<p>After the death of his guardian Thomas Dolman in 1745, Shenstone moved onto the Leasowes estate and devoted his life and more than his income to improving the grounds and gardens. The <title localtype="simple" render="italic">
<part>ferme ornée</part>
</title> style of ornamented landscaping at The Leasowes was an important influence on later English landscape gardening (a term Shenstone may have originated), and the grounds became "a place to be visited by travellers, and copied by designers," as Johnson noted.</p>
<p>Shenstone's occasional poetry continued to appear in Robert Dodsley's <title localtype="simple" render="italic">
<part>Collection of Poems</part>
</title> (1748, 1755, 1758), and his friends and correspondents included several literary figures, among them William Somerville, Joseph Spence, Joseph Grainger, Thomas Percy, and the actor Thomas Hull, as well as Lady Luxborough.</p>
<p>In early 1763, Shenstone hoped to be granted a pension by Lord Bute, and visited Lord Stamford in pursuit of it. Unfortunately, during his return home he developed a chill and a "putrid fever," and died on February 11, 1763. The unmarried Shenstone had no direct heirs, and left his financially embarrassed estate to his cousin, John Hodgetts. Dodsley published his three-volume <title localtype="simple" render="italic">
<part>Works</part>
</title>, which included Shenstone's essay "Unconnected Thoughts on Gardening," in 1764-69.</p>
</bioghist>
<scopecontent id="aspace_9401556f98dc51fa02c0613104953141">
<head>Scope and Contents</head>
<p>The William Shenstone Papers consist of correspondence, legal and financial documents, and printed material related to the poet William Shenstone and his estate, The Leasowes. The papers span the dates 1726-1979, but the bulk of the material dates from the 1750s and 1760s. The papers are housed in one box and have been organized into four series.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref10">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, is arranged in two subseries. The first, William Shenstone Correspondence, contains letters by and to Shenstone, arranged alphabetically by correspondent. Folders 5-10 hold Shenstone's letters to his estate manager and attorney Thomas Milward, most concerning the lands inherited by Shenstone from his guardian Thomas Dolman but contested by Dolman's other heirs. The second subseries, Thomas Milward (Estate) Correspondence, contains third-party letters to Milward on various business matters, chronologically arranged.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref27">Series II, <title localtype="simple" render="italic">
<part>Financial Papers</part>
</title>
</ref>, consists of miscellaneous bills and receipts pertaining to Shenstone and is housed in folders 18-22.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref33">Series III, <title localtype="simple" render="italic">
<part>Legal Papers</part>
</title>
</ref>, is arranged in two subseries. Dolman v. Shenstone, found in folders 23-33, contains the progress of the writs pertaining to the dispute over the Halesowen inheritance, from the original deed signed by William Penn of Harborough Hall (grandfather of both parties), through the final agreement to partition the estate. Other Legal (Estate) Papers are located in folders 34-43 and include farm mortgages, indentures, and the complete text of a Chancery Brief filed against Shenstone's heirs by his former housekeeper Mary Cutler, alleging nonpayment of wages, interest and 500 pounds to "settle her in the world without going into any other or new service in case of his Death as he had very frequently said it was his intention and design she never should."</p>
<p>
<ref actuate="onrequest" show="replace" target="ref62">Series IV, <title localtype="simple" render="italic">
<part>Other Papers</part>
</title>
</ref>, is housed in folders 44-58. The first subseries, William Shenstone, contains mostly printed material, including engraved portraits of Shenstone and pages from a printing of "The Schoolmistress." The Leasowes includes 18th century engravings of views of the gardens, mounted newspaper clippings concerning the estate, a portion of a poem, "The Leasowes," a map and description from an 1865 freehold auction announcement, and a copy of a 1979 article by John Riely on the development of the gardens.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Female domestics</part>
<part localtype="geographic">Great Britain</part>
</subject>
<subject source="local">
<part localtype="topical">Gardens</part>
<part localtype="geographic">England</part>
<part localtype="topical">Design</part>
</subject>
<subject source="local">
<part localtype="topical">Gardens, English</part>
<part localtype="topical">Design</part>
</subject>
<subject source="local">
<part localtype="topical">Poets, English</part>
<part localtype="topical">Homes and haunts</part>
<part localtype="geographic">England</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85144602"
source="lcsh">
<part localtype="topical">Wages</part>
<part localtype="topical">Household employees</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85075563"
source="lcsh">
<part localtype="geographic">Leasowes Garden (Halesowen, England)</part>
</geogname>
<persname>
<part localtype="agent_person">Dodsley, Robert, 1704-1764</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Luxborough, Henrietta Knight, Baroness, 1699-1756</part>
</persname>
<persname>
<part localtype="agent_person">Shenstone, William, 1714-1763</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/392214"
id="ref10"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
</did>
<c altrender="/repositories/11/archival_objects/392215"
id="ref11"
level="subseries">
<did>
<unittitle>WILLIAM SHENSTONE CORRESPONDENCE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392216"
id="ref12"
level="file">
<did>
<unittitle>Hodgetts, John. ALS to Mr. Clarke; Snowhill, Burmingham</unittitle>
<unitdatestructured altrender="1766 Nov 9" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1766-11-09">1766 Nov 9</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
</did>
<scopecontent id="aspace_f03a552504442efeb3ceb9fa22bf4c11">
<head>Scope and Contents</head>
<p>John Hodgetts was executor of Shenstone's will.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/392217"
id="ref14"
level="file">
<did>
<unittitle>Milward, Thomas. ALS to William Shenstone</unittitle>
<unitdatestructured altrender="1762 Apr 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1762-04-05">1762 Apr 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392218"
id="ref15"
level="file">
<did>
<unittitle>Reynolds, Robert (clerk to a Mr. Crawley). ALS to William Shenstone</unittitle>
<unitdatestructured altrender="1755 May" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1755-05">1755 May</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392219"
id="ref16"
level="file">
<did>
<unittitle>Shenstone, William. ALS (copy) to Thomas Holbeache</unittitle>
<unitdatestructured altrender="1760 Apr 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760-04-08">1760 Apr 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392220"
id="ref17"
level="file">
<did>
<unittitle>Shenstone, William. 2 ALS to Elizabeth Milward</unittitle>
<unitdatestructured altrender="1759" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1759">1759</datesingle>
</unitdatestructured>
<unitdatestructured altrender="1760" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760">1760</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392221"
id="ref18"
level="file">
<did>
<unittitle>Shenstone, William. 27 ALS to Mr. Thomas Milward</unittitle>
<unitdatestructured altrender="1755-61" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1755">1755</fromdate>
<todate standarddate="1761">1761</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">6-10</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392222"
id="ref19"
level="subseries">
<did>
<unittitle>THOMAS MILWARD (ESTATE) CORRESPONDENCE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392223"
id="ref20"
level="file">
<did>
<unittitle>ALS from Thomas Dolman; Broom</unittitle>
<unitdatestructured altrender="1753 Jul 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1753-07-08">1753 Jul 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392224"
id="ref21"
level="file">
<did>
<unittitle>3 ALS from Elizabeth Milward</unittitle>
<unitdatestructured altrender="1755-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1755">1755</fromdate>
<todate standarddate="1756">1756</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392225"
id="ref22"
level="file">
<did>
<unittitle>ALS from John Ingram</unittitle>
<unitdatestructured altrender="1756 Apr 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1756-04-16">1756 Apr 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392226"
id="ref23"
level="file">
<did>
<unittitle>ALS from H. Roberts Jr.</unittitle>
<unitdatestructured altrender="1758 Jul 26" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1758-07-26">1758 Jul 26</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392227"
id="ref24"
level="file">
<did>
<unittitle>4 ALS from Thomas Holbeache</unittitle>
<unitdatestructured altrender="1759-60" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1759">1759</fromdate>
<todate standarddate="1760">1760</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392228"
id="ref25"
level="file">
<did>
<unittitle>ALS from Rowland Hill; Be[waley?]</unittitle>
<unitdatestructured altrender="1761 Jul 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1761-07-04">1761 Jul 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392229"
id="ref26"
level="file">
<did>
<unittitle>ALS from J. Pixell</unittitle>
<unitdatestructured altrender="1767 Feb 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1767-02-25">1767 Feb 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">17</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392230"
id="ref27"
level="series">
<did>
<unittitle>Financial Papers</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1753-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1753">1753</fromdate>
<todate standarddate="1756">1756</todate>
</daterange>
</unitdatestructured>
</did>
<c altrender="/repositories/11/archival_objects/392231"
id="ref28"
level="file">
<did>
<unittitle>Accounting of Shenstone's Receipts and Disbursements</unittitle>
<unitdatestructured altrender="1753-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1753">1753</fromdate>
<todate standarddate="1756">1756</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">18</container>
<daoset altrender="/repositories/11/digital_objects/167511">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16684008"
identifier="oid:16684008"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16684013/full/!150,150/0/default.jpg"
identifier="oid:16684008"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16684008"
identifier="oid:16684008"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Accounting of Shenstone's Receipts and Disbursements</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392232"
id="ref29"
level="file">
<did>
<unittitle>"Mr.Shenstone's Further bill from Milward"</unittitle>
<unitdatestructured altrender="1758" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1758">1758</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392233"
id="ref30"
level="file">
<did>
<unittitle>"Holbeache's bill to Mr. Dolman and Shenstone"</unittitle>
<unitdatestructured altrender="1761 Oct 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1761-10-22">1761 Oct 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392234"
id="ref31"
level="file">
<did>
<unittitle>"Mr.Shenstone's Further bill from Milward"</unittitle>
<unitdatestructured altrender="1761 Sep 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1761-09-02">1761 Sep 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392235"
id="ref32"
level="file">
<did>
<unittitle>Bill</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">22</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392236"
id="ref33"
level="series">
<did>
<unittitle>Legal Papers</unittitle>
<unitid>Series III</unitid>
</did>
<c altrender="/repositories/11/archival_objects/392237"
id="ref34"
level="subseries">
<did>
<unittitle>DOLMAN V. SHENSTONE</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392238"
id="ref35"
level="file">
<did>
<unittitle>Deed concerning Esther Penn</unittitle>
<unitdatestructured altrender="1726 Mar 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1726-03-25">1726 Mar 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">23</container>
</did>
<scopecontent id="aspace_0b06a90d26e041e140f54efd7ef76cfc">
<head>Scope and Contents</head>
<p>Signed by William Penn, William Penn Jr., and Ann Shenstone</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/392239"
id="ref37"
level="file">
<did>
<unittitle>Bill of complaint by Dolman</unittitle>
<unitdatestructured altrender="1726 Jul 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1726-07-03">1726 Jul 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">24</container>
</did>
<scopecontent id="aspace_76a7c95f8118b53965b7830c8fa89f63">
<head>Scope and Contents</head>
<p>With observations in Shenstone's hand</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/392240"
id="ref39"
level="file">
<did>
<unittitle>Notice of intent to execute complaint</unittitle>
<unitdatestructured altrender="1755 Oct 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1755-10-27">1755 Oct 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392241"
id="ref40"
level="file">
<did>
<unittitle>Rough draft of Shenstone's answer in Chancery.</unittitle>
<unitdatestructured altrender="[1755-56?]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1755">1755</fromdate>
<todate standarddate="1756">1756</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392242"
id="ref41"
level="file">
<did>
<unittitle>Notes by Shenstone on a draft</unittitle>
<unitdatestructured altrender="[1755-56?]" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1755">1755</fromdate>
<todate standarddate="1756">1756</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392243"
id="ref42"
level="file">
<did>
<unittitle>Draft answer for Shenstone in Chancery with notes by Shenstone</unittitle>
<unitdatestructured altrender="1755-56" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1755">1755</fromdate>
<todate standarddate="1756">1756</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392244"
id="ref43"
level="file">
<did>
<unittitle>Proposal for division of lands</unittitle>
<unitdatestructured altrender="1756 Jan 4" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1756-01-04">1756 Jan 4</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">29</container>
</did>
<scopecontent id="aspace_90bf5d72f4c432ae00eded8bea3b9645">
<head>Scope and Contents</head>
<p>Signed by H. Hollier</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/392245"
id="ref45"
level="file">
<did>
<unittitle>Proposal for division of the estate</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392246"
id="ref46"
level="file">
<did>
<unittitle>Proposals for divisions</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392247"
id="ref47"
level="file">
<did>
<unittitle>Amended bill of complaint by Thomas Dolman</unittitle>
<unitdatestructured altrender="1756 May 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1756-05-06">1756 May 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392248"
id="ref48"
level="file">
<did>
<unittitle>Draft answer to amended bill of complaint</unittitle>
<unitdatestructured altrender="1756 Nov 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1756-11-01">1756 Nov 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392249"
id="ref49"
level="file">
<did>
<unittitle>Note on date of partition of estate</unittitle>
<unitdatestructured altrender="1760 Apr 17" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760-04-17">1760 Apr 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">33</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/392250"
id="ref50"
level="subseries">
<did>
<unittitle>OTHER LEGAL (ESTATE) PAPERS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/392251"
id="ref51"
level="file">
<did>
<unittitle>"An abstract of William Shenstone's title to the Ivey Estate in Halesowen Parish in the county of Salop"</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392252"
id="ref52"
level="file">
<did>
<unittitle>Indenture between William Shenstone and Paul White</unittitle>
<unitdatestructured altrender="1758 Oct 30" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1758-10-30">1758 Oct 30</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392253"
id="ref53"
level="file">
<did>
<unittitle>Deed between Willian Shenstone and Paul White concerning earlier indenture</unittitle>
<unitdatestructured altrender="1758" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1758">1758</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392254"
id="ref54"
level="file">
<did>
<unittitle>AN to Thomas Milward from Paul White; Kinver</unittitle>
<unitdatestructured altrender="1759 Sep 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1759-09-10">1759 Sep 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392255"
id="ref55"
level="file">
<did>
<unittitle>Indenture between William Shenstone and Edward Davies</unittitle>
<unitdatestructured altrender="1756 Apr 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1756-04-23">1756 Apr 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392256"
id="ref56"
level="file">
<did>
<unittitle>Mortgage Deed between William Shenstone and William Davies</unittitle>
<unitdatestructured altrender="1760 Mar 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1760-03-25">1760 Mar 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392257"
id="ref57"
level="file">
<did>
<unittitle>Draft surrender of the mortgage by Davies</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">40</container>
<daoset altrender="/repositories/11/digital_objects/167512">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16684009"
identifier="oid:16684009"
linktitle="3 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16684016/full/!150,150/0/default.jpg"
identifier="oid:16684009"
linktitle="3 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16684009"
identifier="oid:16684009"
linktitle="3 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Draft surrender of the mortgage by Davies</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392258"
id="ref58"
level="file">
<did>
<unittitle>Indenture between Paul White, Edward Toye, and William Shenstone</unittitle>
<unitdatestructured altrender="1761 Oct 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1761-10-01">1761 Oct 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392259"
id="ref59"
level="file">
<did>
<unittitle>Indenture between William Shenstone, Samuel Spencer, and John Spencer</unittitle>
<unitdatestructured altrender="1758" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1758">1758</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/392260"
id="ref60"
level="file">
<did>
<unittitle>Chancery Brief: Cutler agt. Davies</unittitle>
<unitdatestructured altrender="1764-65" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1764">1764</fromdate>
<todate standarddate="1765">1765</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/38574 /locations/4051"
containerid="39002099371461"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">43</container>