-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path732.xml
1974 lines (1974 loc) · 115 KB
/
732.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.jerrold">beinecke.jerrold</recordid>
<otherrecordid localtype="BIB">4514207</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Jerrold/Smith Autograph Collection
</titleproper>
<titleproper localtype="filing">Jerrold/Smith Autograph Collection</titleproper>
<author>by Ellen Doon</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>December 1999</date>
<num>GEN MSS 467</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">4514207</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Box: 1</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-08T23:32:45-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Wednesday January 8, 2025 at 23:32</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/732" level="collection">
<did>
<unittitle>Jerrold/Smith autograph collection</unittitle>
<unitid>GEN MSS 467</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.42</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1840-1928" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1840">1840</fromdate>
<todate standarddate="1928">1928</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_e3b7b413c9b7a24dd99948aa09d7c68d">Letters and other manuscript items representing a wide range of prominent figures in nineteenth century British literature, theater, and art, as well as nineteenth and early twentieth century socialism, reform politics, and medicine. About two thirds of the correspondence was received by Blanchard Jerrold and by Adolphe and Alice Smith; letters to other recipients include several to Mrs. and Miss de Fonblanque.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Jerrold, Blanchard, 1826-1884</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_839dc6827550c10aa4658eca86610f33">
<head>Immediate Source of Acquisition</head>
<p>Purchased in 1975 from William P. Wreden, on the Edwin J. Beinecke Fund.</p>
</acqinfo>
<userestrict id="aspace_54b58dee4d8b1739d8a6b8861e4c3781">
<head>Conditions Governing Use</head>
<p>The Jerrold/Smith Autograph Collection is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_01b30570cfffd852f9abd528e3d5c2b7">
<head>Preferred Citation</head>
<p>Jerrold/Smith Autograph Collection. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<accessrestrict id="aspace_3c243527d4b2d452113db8b9a935dd3c">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_dbfbfaf14eba96061f35be7ceaeaf7e8">
<head>Processing Information</head>
<p>The material in this collection was removed from an album soon after its acquisition by the library. The original order is not known.</p>
</processinfo>
<bioghist id="aspace_bf5b61bb4b78a897745e59d4258ae34f">
<head>BIOGRAPHICAL NOTES</head>
<p>William Blanchard Jerrold (1826-1884) was the son of British playwright, journalist and political satirist Douglas William Jerrold (1803-1857). The elder Jerrold was editor of a number of publications including the <title localtype="simple" render="italic">
<part>Daily News</part>
</title>, <title localtype="simple" render="italic">
<part>Jerrold's Shilling Magazine</part>
</title>, and <title localtype="simple" render="italic">
<part>Lloyd's Weekly</part>
</title>, as well as a regular contributor to <title localtype="simple" render="italic">
<part>Punch</part>
</title>. Blanchard Jerrold also wrote frequently for these papers, and at his father's death he took over the editorship of <title localtype="simple" render="italic">
<part>Lloyd's</part>
</title>. He was a prolific writer, a novelist and playwright as well as a journalist, and he shared his father's interest in social reform and the labor movement. His 1872 collaboration with the illustrator Gustave Doré, <title localtype="simple" render="italic">
<part>London: a Pilgrimage</part>
</title>, contrasts the lives of London's rich and poor. Among his many other works are biographies of Doré, George Cruikshank, and Napoleon III, and a series of writings on food entitled "Knife and Fork." (More detailed biographies of both Douglas and Blanchard Jerrold may be found in the <title localtype="simple" render="italic">
<part>Dictionary of National Biography</part>
</title>.)</p>
<p>Adolphe Smith (1846-1925) was a British journalist and socialist. He was born at Headingley, Yorkshire, but at least one of his parents was French; he seems to have lived in France for part of his life, and fought in the Paris Commune uprising of 1870-71. He wrote frequently on contemporary public health issues, such as the cholera epidemics in France in the 1880s and the spread of smallpox in London. He served as an interpreter at conferences of the International Association of Medical Press, and was the official Anglo-French Interpreter at Congresses of the [Socialist] International between 1882-1910. Smith is best known today for the text accompanying John Thomson's photographs in <title localtype="simple" render="italic">
<part>Street Life in London</part>
</title>, published serially in 1877-78, which documents the life of London's poor; other full-length books include <title localtype="simple" render="italic">
<part>The Biography of Charles Bradlaugh</part>
</title> and <title localtype="simple" render="italic">
<part>Monaco and Monte Carlo</part>
</title>.</p>
<p>Alice Jerrold Smith (1848-1882), Blanchard Jerrold's daughter, married Adolphe Smith in 1872. She wrote <title localtype="simple" render="italic">
<part>A Cruise on the Acorn</part>
</title>, a children's book published in 1875 by Marcus Ward & Co., as well as literary criticism for the Liverpool <title localtype="simple" render="italic">
<part>Courier</part>
</title>.</p>
</bioghist>
<scopecontent id="aspace_a2e2553a4be9f64d5bbeb6417f29e394">
<head>Scope and Contents</head>
<p>The material in this collection appears to have been assembled principally for its autograph value. It was removed from an album shortly after its acquisition by the library; the original order of the material is not known. The collection includes letters and other items representing a wide range of prominent figures in nineteenth century British literature, theater, and art, as well as nineteenth and early twentieth century socialism and reform politics. About two thirds of the correspondence was received by Blanchard Jerrold and by Adolphe Smith and his wife Alice Smith; letters to other recipients include several to Mrs. and Miss de Fonblanque. In most cases there is only one letter or note from each correspondent.</p>
<p>The collection is organized into three series: <title localtype="simple" render="italic">
<part>Blanchard Jerrold Papers</part>
</title>, <title localtype="simple" render="italic">
<part>Adolphe and Alice Smith Papers</part>
</title>, and <title localtype="simple" render="italic">
<part>Third Party Letters and Other Manuscripts</part>
</title>. All three are housed in one box.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Blanchard Jerrold Papers</part>
</title>
</ref>, is organized into two subseries: Letters to Blanchard Jerrold and Other Papers. The correspondence to Blanchard Jerrold is addressed both to him personally and to the Editor of <title localtype="simple" render="italic">
<part>Lloyd's Weekly</part>
</title>. It includes letters from many of the leading figures in Victorian literary, artistic and theatrical circles. Letters from Clarkson Stanfield, Anthony Trollope, and John Forster concern a collection taken up by Jerrold for the actor Kenny Meadows in 1861. Several of the letters are addressed to Jerrold at the Reform Club, including one from William Gladstone. Also present are a letter to Douglas Jerrold and an autograph manuscript fragment of Blanchard Jerrold's <title localtype="simple" render="italic">
<part>The Life of Napoleon III</part>
</title>.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref48">Series II, <title localtype="simple" render="italic">
<part>Adolphe and Alice Smith Papers</part>
</title>
</ref>, is organized into three subseries: Letters to Adolphe Smith, Letters to Alice Smith, and Other Papers. The letters to Adolphe Smith document his involvement in the British and international socialist, communist, and trade unionist movements. His correspondents include prominent figures in the British labor movement, writers and activists in radical politics, Members of Parliament, and prominent international socialists and communists, as well as actors, artists, and physiologists. Letters to Alice Smith document her work as a literary critic for the Liverpool <title localtype="simple" render="italic">
<part>Courier</part>
</title>. Most of her correspondents write to thank her for favorable reviews in that publication. Also present is the title page and flyleaf of an album (possibly the album from which the collection was removed), inscribed "Alice Adolphe Smith."</p>
<p>
<ref actuate="onrequest" show="replace" target="ref96">Series III, <title localtype="simple" render="italic">
<part>Third Party Letters and Other Manuscripts</part>
</title>
</ref>, consists chiefly of correspondence to various recipients from actors, writers, nobility, and others, but it also includes a small sketch of Thackeray, a manuscript poem fragment by Holloway, a manuscript titled "Extracts from Dr. Moore's Travels Thro Italy," and a list of names which may at one time have been represented in the autograph collection. A number of the letters are addressed to a Mrs and Miss de Fonblanque. A few of the letters were likely written to Jerrold or to Adolphe or Alice Smith, but have been included in this series rather than with their correspondence because the recipients cannot be conclusively identified.</p>
</scopecontent>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85009856"
source="lcsh">
<part localtype="topical">Authors, English</part>
<part localtype="temporal">19th century</part>
</subject>
<subject source="local">
<part localtype="topical">Journalists</part>
<part localtype="geographic">Great Britain</part>
<part localtype="genre_form">Correspondence </part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2008111947"
source="lcsh">
<part localtype="topical">Socialism</part>
<part localtype="geographic">Europe</part>
</subject>
<subject source="local">
<part localtype="topical">Theater</part>
<part localtype="geographic">Great Britain</part>
<part localtype="temporal">19th century</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300028571" source="aat">
<part localtype="genre_form">Autographs (manuscripts)</part>
</genreform>
<persname rules="aacr">
<part localtype="agent_person">Jerrold, Blanchard, 1826-1884</part>
</persname>
<persname>
<part localtype="agent_person">Jerrold, Douglas, 1803-1857</part>
</persname>
<persname>
<part localtype="agent_person">Smith, Adolphe</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Smith, Alice, fl. 1873-1881</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/227108"
id="ref11"
level="series">
<did>
<unittitle>Blanchard Jerrold Papers</unittitle>
<unitid>Series I</unitid>
<unitdatestructured altrender="1856-1878" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1856">1856</fromdate>
<todate standarddate="1878">1878</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_e88f14421363ac8a80ceecf16b7f37ad">.08'(30 folders)</physdesc>
</did>
<scopecontent id="aspace_9c2efe2fced2ecbbbfe04998d2fca669">
<head>Scope and Contents</head>
<p>Some letters in series III may also be to Blanchard Jerrold or his father, but were not included in this series because the recipient could not be conclusively identified.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/227109"
id="ref13"
level="subseries">
<did>
<unittitle>LETTERS TO BLANCHARD JERROLD</unittitle>
</did>
<scopecontent id="aspace_d97397649aeac22da3d0f6582ac5386d">
<head>Scope and Contents</head>
<p>The letters are signed autograph letters unless noted otherwise.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/227110"
id="ref14"
level="file">
<did>
<unittitle>Barr, Matthius, to the editor of <title localtype="simple" render="italic">
<part>Lloyd's Weekly</part>
</title>
</unittitle>
<unitdatestructured altrender="18[73?] Sep 2" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1873-09-02">18[73?] Sep 2</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227111"
id="ref15"
level="file">
<did>
<unittitle>Bourbon, Auguste de, to the editor of <title localtype="simple" render="italic">
<part>Lloyd's Weekly</part>
</title>
</unittitle>
<unitdatestructured altrender="1872 Aug 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1872-08-27">1872 Aug 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227112"
id="ref16"
level="file">
<did>
<unittitle>Browning, Robert, regarding Francis Mahony</unittitle>
<unitdatestructured altrender="1868 Jun 5" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-06-05">1868 Jun 5</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227113"
id="ref17"
level="file">
<did>
<unittitle>Celeste, Madame, unsigned and written in third person</unittitle>
<unitdatestructured altrender="1860 Sep 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860-09-25">1860 Sep 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227114"
id="ref18"
level="file">
<did>
<unittitle>Dickens, Charles</unittitle>
<unitdatestructured altrender="1868 Jul 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-07-29">1868 Jul 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227115"
id="ref19"
level="file">
<did>
<unittitle>Doré, Gustave, 2 letters</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227116"
id="ref20"
level="file">
<did>
<unittitle>Forster, John</unittitle>
<unitdatestructured altrender="1861 Jun 23" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-06-23">1861 Jun 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227117"
id="ref21"
level="file">
<did>
<unittitle>Gladstone, William E., written in the third person</unittitle>
<unitdatestructured altrender="1868 Aug 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-08-20">1868 Aug 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227118"
id="ref22"
level="file">
<did>
<unittitle>Hunt, Leigh</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. Feb 17</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227119"
id="ref23"
level="file">
<did>
<unittitle>Hunt, Thornton</unittitle>
<unitdatestructured altrender="1861 Feb 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-02-20">1861 Feb 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227120"
id="ref24"
level="file">
<did>
<unittitle>Jeaffreson, John Cordy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227121"
id="ref25"
level="file">
<did>
<unittitle>Jerrold, Douglas</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227122"
id="ref26"
level="file">
<did>
<unittitle>Landseer, [Charles?]</unittitle>
<unitdatestructured altrender="1870 Nov 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1870-11-01">1870 Nov 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227123"
id="ref27"
level="file">
<did>
<unittitle>[Leighton?], P. H.</unittitle>
<unitdatestructured altrender="[1870 Dec 20?]"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1870-12-20">[1870 Dec 20?]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227124"
id="ref28"
level="file">
<did>
<unittitle>Lemon, Mark</unittitle>
<unitdate label="creation" unitdatetype="inclusive">185[?] Oct 27</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227125"
id="ref29"
level="file">
<did>
<unittitle>Lytton, Edward Bulwer</unittitle>
<unitdatestructured altrender="1871 Aug 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1871-08-01">1871 Aug 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227126"
id="ref30"
level="file">
<did>
<unittitle>Mathews, C. J.</unittitle>
<unitdatestructured altrender="1862 Feb 18" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-02-18">1862 Feb 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227127"
id="ref31"
level="file">
<did>
<unittitle>Oxenford, John</unittitle>
<unitdatestructured altrender="1873 Jan 13" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1873-01-13">1873 Jan 13</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227128"
id="ref32"
level="file">
<did>
<unittitle>Panton, [Joseph?]</unittitle>
<unitdatestructured altrender="1862 Feb 10" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-02-10">1862 Feb 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227129"
id="ref33"
level="file">
<did>
<unittitle>Reid, Mayne, 2 letters, one to BJ and one to "Dear Sir"</unittitle>
<unitdatestructured altrender="1875-78" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875">1875</fromdate>
<todate standarddate="1878">1878</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227130"
id="ref34"
level="file">
<did>
<unittitle>Smith, Albert</unittitle>
<unitdatestructured altrender="[1859 Aug]" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1859-08">[1859 Aug]</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227131"
id="ref35"
level="file">
<did>
<unittitle>Stanfield, Clarkson</unittitle>
<unitdatestructured altrender="1861 Jun 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-06-27">1861 Jun 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227132"
id="ref36"
level="file">
<did>
<unittitle>Stanley, Arthur Penrhyn</unittitle>
<unitdatestructured altrender="1871 Jun 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1871-06-03">1871 Jun 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227133"
id="ref37"
level="file">
<did>
<unittitle>Tenniel, John</unittitle>
<unitdatestructured altrender="1868 Jun 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-06-22">1868 Jun 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
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>
</c>
<c altrender="/repositories/11/archival_objects/227134"
id="ref38"
level="file">
<did>
<unittitle>Trollope, Anthony</unittitle>
<unitdatestructured altrender="1861 Jun 21" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-06-21">1861 Jun 21</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227135"
id="ref39"
level="file">
<did>
<unittitle>Wilson, Erasmus</unittitle>
<unitdatestructured altrender="1858 May 20" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1858-05-20">1858 May 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227136"
id="ref40"
level="file">
<did>
<unittitle>Yates, Edmund</unittitle>
<unitdatestructured altrender="1861 Aug 8" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1861-08-08">1861 Aug 8</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">27</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/227137"
id="ref42"
level="subseries">
<did>
<unittitle>OTHER PAPERS</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/227138"
id="ref43"
level="file">
<did>
<unittitle>Jerrold, Blanchard, manuscript fragment of his <title localtype="simple" render="italic">
<part>The Life of Napoleon III</part>
</title>, signed</unittitle>
<unitdatestructured altrender="1877" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1877">1877</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">28</container>
</did>
<scopecontent id="aspace_311f65f9751dabdcdef82f3c9d2bb4ad">
<head>Scope and Contents</head>
<p>"Book IX, Chapter IX. The First Year of the Empire"</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/227139"
id="ref45"
level="file">
<did>
<unittitle>Mackay, Charles, ALS to Douglas Jerrold</unittitle>
<unitdatestructured altrender="1856 Feb 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1856-02-16">1856 Feb 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227140"
id="ref46"
level="file">
<did>
<unittitle>Unidentified correspondent, ALS to Miss Jerrold</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">30</container>
</did>
</c>
</c>
</c>
<c altrender="/repositories/11/archival_objects/227141"
id="ref48"
level="series">
<did>
<unittitle>Adolphe and Alice Smith Papers</unittitle>
<unitid>Series II</unitid>
<unitdatestructured altrender="1872-1922" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1922">1922</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_db79c8e1f604c87c0249be04f1e00b76">.13' (38 folders)</physdesc>
</did>
<scopecontent id="aspace_205f5da07c4706dcd3cbb01b26db6d50">
<head>Scope and Contents</head>
<p>Some letters in Series III may also be to Adolphe or Alice Smith, but were filed in that series because the recipient could not be conclusively identified.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/227142"
id="ref50"
level="subseries">
<did>
<unittitle>LETTERS TO ADOLPHE SMITH</unittitle>
</did>
<scopecontent id="aspace_e5d5541b4b3195ca0163a02bac7d9c36">
<head>Scope and Contents</head>
<p>The letters are signed autograph letters unless otherwise noted.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/227143"
id="ref51"
level="file">
<did>
<unittitle>Aladin, Alexis</unittitle>
<unitdatestructured altrender="1910 Sep 27" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1910-09-27">1910 Sep 27</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227144"
id="ref52"
level="file">
<did>
<unittitle>Bradlaugh, Charles, two letters</unittitle>
<unitdatestructured altrender="1873-80" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1873">1873</fromdate>
<todate standarddate="1880">1880</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">32</container>
</did>
<scopecontent id="aspace_3b29c48d30c6c7d31577b70f6c5e9218">
<head>Scope and Contents</head>
<p>With tickets to London Dialectical Society debate 1873 Jan 15, signed</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/227145"
id="ref54"
level="file">
<did>
<unittitle>Bunting, Sir Percy</unittitle>
<unitdatestructured altrender="1910 Sep 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1910-09-01">1910 Sep 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227146"
id="ref55"
level="file">
<did>
<unittitle>Cachin, Marcel</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227147"
id="ref56"
level="file">
<did>
<unittitle>Carrel, Alexis</unittitle>
<unitdatestructured altrender="1912 Sep 16" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1912-09-16">1912 Sep 16</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227148"
id="ref57"
level="file">
<did>
<unittitle>Carson, Edward, typed postcard, signed</unittitle>
<unitdatestructured altrender="1920 [Jun?] 1" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1920-06-01">1920 [Jun?] 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref57_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref57_c2" localtype="folder" parent="aspace_ref57_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227149"
id="ref58"
level="file">
<did>
<unittitle>Cremer, W. Randal</unittitle>
<unitdatestructured altrender="1906 [Sep?] 23"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1906-09-23">1906 [Sep?] 23</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref58_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref58_c2" localtype="folder" parent="aspace_ref58_c1">37</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227150"
id="ref59"
level="file">
<did>
<unittitle>Dilke, Sir Charles Wentworth, letter and note</unittitle>
<unitdatestructured altrender="1880 Apr 6, n.d."
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1880-04-06">1880 Apr 6, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref59_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref59_c2" localtype="folder" parent="aspace_ref59_c1">38</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227151"
id="ref60"
level="file">
<did>
<unittitle>Grayson, Victor, 2 letters</unittitle>
<unitdatestructured altrender="1908" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1908">1908</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref60_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref60_c2" localtype="folder" parent="aspace_ref60_c1">39</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227152"
id="ref61"
level="file">
<did>
<unittitle>Herkomer, Hubert, invitation to "A. Smith and friends", engraved illustration, unsigned</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.y. [Mar 30]</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref61_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref61_c2" localtype="folder" parent="aspace_ref61_c1">40</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227153"
id="ref62"
level="file">
<did>
<unittitle>Herron, George S.</unittitle>
<unitdatestructured altrender="1911 Sep 6" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1911-09-06">1911 Sep 6</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref62_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref62_c2" localtype="folder" parent="aspace_ref62_c1">41</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227154"
id="ref63"
level="file">
<did>
<unittitle>Irving, Henry</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref63_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref63_c2" localtype="folder" parent="aspace_ref63_c1">42</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227155"
id="ref64"
level="file">
<did>
<unittitle>Odger, George</unittitle>
<unitdate label="creation" unitdatetype="inclusive">n.d.</unitdate>
<container altrender="/repositories/11/top_containers/20202 /locations/9"
containerid="39002075016304"
id="aspace_ref64_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref64_c2" localtype="folder" parent="aspace_ref64_c1">43</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/227156"
id="ref65"
level="file">
<did>
<unittitle>Richet, Charles</unittitle>
<unitdatestructured altrender="1922 Dec 3" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1922-12-03">1922 Dec 3</datesingle>
</unitdatestructured>