-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path10703.xml
4072 lines (4072 loc) · 243 KB
/
10703.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.sandm">beinecke.sandm</recordid>
<otherrecordid localtype="BIB">13318423</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Maurice Sand Papers </titleproper>
<titleproper localtype="filing">Sand (Maurice) Papers</titleproper>
<author>by Ève Bourbeau-Allard</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>November 2017</date>
<num>GEN MSS 1463</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">13318423</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-8, 9 (Oversize), 10, 12</p>
</controlnote>
<controlnote localtype="onsite">
<p>Box: 11 (Oversize)</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="1">1</num> published digital object. And that object are comprised of <num localtype="files" altrender="2">2</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>dacs</abbr>
<citation>Describing Archives: A Content Standard</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>completed</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:14:27-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:14</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/10703" level="collection">
<did>
<unittitle>Maurice Sand Papers</unittitle>
<unitid>GEN MSS 1463</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="fre">French</language>
<descriptivenote>
<p>In French.</p>
</descriptivenote>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>5.96</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">12 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1833">1833</fromdate>
<todate standarddate="1995">1995</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1848">1848</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_9cf7a80110cc1dfaeee3d55bbaecb0a0">The Maurice Sand papers contains family and professional correspondence, publishing contracts, writings, drawings, posters, and other material by or about the nineteenth-century author, illustrator, and puppeteer. The collection offers substantial documentation of Sand's theatrical work from the late 1840s to the 1880s; included are holograph scripts, scenarios, or posters for over forty puppet plays created by Sand. The collection also includes three novel drafts, a set of playing cards issued by an unidentified French publisher with humorous additions in ink and pencil by Sand, as well as a manuscript libretto, manuscript music fragments, with vocal lines only, and related correspondence for Callirhoé (circa 1886), an opera by Auguste Bazille (1828-1891) with text by Armand Silvestre (1837-1901) based on a scenario by Sand.</abstract>
<origination label="Creator">
<persname rules="aacr">
<part localtype="agent_person">Sand, Maurice, 1823-1889</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr" source="local">
<part localtype="agent_person">Bazille, Auguste, 1828-1891 (Callirhoé)</part>
</persname>
</origination>
<origination label="Creator">
<persname rules="aacr" source="local">
<part localtype="agent_person">Silvestre, Armand, 1837-1901 (Callirhoé)</part>
</persname>
</origination>
</did>
<accessrestrict id="aspace_f5c40f0c632aa3bb47ce5eb80c2d3590">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Box 10: Restricted fragile material. Reference surrogates have been substituted in the main files. For further information consult the appropriate curator.</p>
</accessrestrict>
<acqinfo id="aspace_bac3f0b51f7a394cfb90671fff8784c3">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Les Amazones on the Edwin J. Beinecke Book Fund, Frederick W. Hilles Fund, Edith and Richard French Fund, and Mary Flagler Cary Fund, 2011-2018.</p>
</acqinfo>
<arrangement id="aspace_c9eddf6995783100ac0168483527b55a">
<head>Arrangement</head>
<p>Organized into five series: I. Correspondence and Contracts, 1848-1929. II. Puppet Theater, 1848-1995. III. Writings, 1841-1886. IV. Artwork, 1833-1887. V. Other Papers, 1853-1960.</p>
</arrangement>
<bioghist id="aspace_caee4680e7d85567601d4cda3acda67f">
<head>Biographical / Historical</head>
<p>Maurice Sand (1823-1889), born Jean-François-Maurice-Arnauld Dudevant, was a French writer, artist, and puppeteer. He was the son of author George Sand (1804-1876) and François Casimir Dudevant (1795-1871), and the brother of Solange Clésinger-Sand. Sand studied painting with Eugène Delacroix in the early 1840s, and later wrote and illustrated several novels and monographs on topics ranging from theater history to the natural sciences. Sand directed an amateur puppet theater at the Sand family estate of Nohant from 1847 to 1876, and at his Paris residences, for which he authored plays, designed sets, and sculpted and operated wood puppets. A life member of the Sociétés géologique et entomologique de France and a chevalier de la Légion d'honneur, Sand also served as mayor of the Nohant-Vicq commune in 1848, and from 1875 to 1879.</p>
<p>Sand married Marceline (Lina) Calamatta in 1862, with whom he had a son, Marc-Antoine (1863-1864), and two daughters, Aurore (1866–1961) and Gabrielle (1868–1909). In 1958, Aurore adopted Georges-André Smeets Dudevant Sand (1911-1970), who later married Christiane Sand.</p>
</bioghist>
<prefercite id="aspace_9ab462e371cb9a0f659180f1a945852e">
<head>Preferred Citation</head>
<p>Maurice Sand Papers. General Collection, Beinecke Rare Book and Manuscript Library, Yale University.</p>
</prefercite>
<processinfo id="aspace_b79631a39c92846918788e7105c10865">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>The processing of this collection involved combining together eight separate accessions of material acquired over time from the same provenance. Information included in the Description of the Papers note, as well as in file titles and descriptions, is drawn from information supplied with the collection by the seller and previous owner, and from a survey of the contents.</p>
</processinfo>
<relatedmaterial id="aspace_8c53fd170264d2899b87b3bf9e22c2b9">
<head>Related Materials</head>
<p>Associated material of the same provenance: the Solange Clésinger-Sand Papers (GEN MSS 755) and the Edmond Plauchut Papers (GEN MSS 1462), Beinecke Rare Book and Manuscript Library, Yale University.</p>
</relatedmaterial>
<scopecontent id="aspace_a59e7c24531ddcad2a13c12a183fd94f">
<head>Scope and Contents</head>
<p>The Maurice Sand papers contains family and professional correspondence, publishing contracts, writings, drawings, posters, and other material by or about the nineteenth-century author, illustrator, and puppeteer. The collection offers substantial documentation of Sand's theatrical work from the late 1840s to the 1880s; included are holograph scripts, scenarios, or posters for over forty puppet plays created by Sand. The collection also includes three novel drafts, a set of playing cards issued by an unidentified French publisher with humorous additions in ink and pencil by Sand, as well as a manuscript libretto, manuscript music fragments, with vocal lines only, and related correspondence for Callirhoé (circa 1886), an opera by Auguste Bazille (1828-1891) with text by Armand Silvestre (1837-1901) based on a scenario by Sand.</p>
</scopecontent>
<userestrict id="aspace_cf082d64685d456e348c41f46bc41fde">
<head>Conditions Governing Use</head>
<p>The Maurice Sand 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>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2009116224"
source="lcsh">
<part localtype="topical">Authors and publishers</part>
<part localtype="geographic">France</part>
</subject>
<subject source="local">
<part localtype="topical">Authors, French</part>
<part localtype="temporal">19th century</part>
<part localtype="genre_form">Archives</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85051870"
source="lcsh">
<part localtype="topical">French literature</part>
<part localtype="temporal">19th century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85094942"
source="lcsh">
<part localtype="topical">Operas</part>
<part localtype="genre_form">Librettos</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85094914"
source="lcsh">
<part localtype="topical">Operas</part>
</subject>
<subject source="local">
<part localtype="topical">Puppet plays, French</part>
<part localtype="temporal">19th century</part>
</subject>
<genreform identifier="http://vocab.getty.edu/aat/300033973" source="aat">
<part localtype="genre_form">Drawings (visual works)</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300211294" source="aat">
<part localtype="genre_form">Playing cards</part>
</genreform>
<genreform identifier="http://vocab.getty.edu/aat/300027221" source="aat">
<part localtype="genre_form">Posters</part>
</genreform>
<occupation source="local">
<part localtype="occupation">Authors</part>
<part localtype="geographic">France</part>
<part localtype="temporal">19th century</part>
</occupation>
<persname rules="aacr">
<part localtype="agent_person">Bazille, Auguste, 1828-1891</part>
</persname>
<persname>
<part localtype="agent_person">Calamatta Sand, Lina, 1842-1901</part>
</persname>
<persname>
<part localtype="agent_person">Sand, George, 1804-1876</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Sand, Maurice, 1823-1889</part>
</persname>
<persname>
<part localtype="agent_person">Silvestre, Armand, 1837-1901</part>
</persname>
<corpname rules="rda" source="local_beinecke">
<part localtype="agent_corporate_entity">Théâtre de Nohant (Nohant-Vicq, France)</part>
</corpname>
<corpname source="local">
<part localtype="agent_corporate_entity">Théâtre des marionnettes (Paris, France)</part>
</corpname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/2630476"
id="aspace_519571718280398d0d3c28423e1c616d"
level="series">
<did>
<unittitle>Correspondence and Contracts</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.25</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1848">1848</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_ae3cef2fa88764f7fa8a8b86f70f72d3">
<head>Arrangement</head>
<p>Organized into two subseries: Personal Correspondence, and Publishing Contracts and Correspondence.</p>
</arrangement>
<scopecontent id="aspace_132a85f1a96527f123277df3281605c2">
<head>Scope and Contents</head>
<p>Series I. Correspondence and Contracts, comprises both personal letters and professional communications with publishers. Correspondence with Auguste Bazille and Armand Silvestre regarding the opera <title>
<part>Callirhoé</part>
</title> is located in Series III. Writings. Twentieth-century third-party correspondence by Aurore Sand regarding family property is located in Series V. Other Papers.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2631033"
id="aspace_61274ccb32df1515ed59ec15527bec8c"
level="subseries">
<did>
<unittitle>Personal Correspondence</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1848">1848</fromdate>
<todate standarddate="1929">1929</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_1cee72cbdf9a2e00e6e1f3d2cf7f5fac">
<head>Arrangement</head>
<p>Arranged alphabetically by correspondent.</p>
</arrangement>
<scopecontent id="aspace_57b2e3f0cf61f1403fedf0f116f164ae">
<head>Scope and Contents</head>
<p>Personal correspondence contains autograph and copied letters exchanged between Maurice Sand and family members, acquaintances, and politicians. Letters concern the health of family members, awards and mayorial duties bestowed on Sand, and comments on Sand's writings.</p>
</scopecontent>
<processinfo id="aspace_8f68474fc2306176440285bdf0f6123c">
<head>Processing Information</head>
<p>File titles specify if letters are outgoing (sent by Sand to the correspondent), or incoming (received by Sand from the correspondent).</p>
</processinfo>
<c altrender="/repositories/11/archival_objects/2630515"
id="aspace_d9906d6c7b06c42935dab056affa0380"
level="file">
<did>
<unittitle>Cavour, Camillo (from)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1860-12-22">1860 December 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_d9906d6c7b06c42935dab056affa0380_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d9906d6c7b06c42935dab056affa0380_c2"
localtype="folder"
parent="aspace_d9906d6c7b06c42935dab056affa0380_c1">1</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2630489"
id="aspace_76c7697fc8a2a9a2d409745d776f0048"
level="file">
<did>
<unittitle>Clésinger-Sand, Solange (to), copy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_76c7697fc8a2a9a2d409745d776f0048_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_76c7697fc8a2a9a2d409745d776f0048_c2"
localtype="folder"
parent="aspace_76c7697fc8a2a9a2d409745d776f0048_c1">2</container>
</did>
<scopecontent id="aspace_126965f23bd23111986b473e6b38e3b5">
<head>Scope and Contents</head>
<p>Copy in the hand of Lina Sand of an 1885 letter from Maurice to his sister.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630490"
id="aspace_4991e87d87d4cdbc3e06451412a8e8a1"
level="file">
<did>
<unittitle>Delasalle, Louis Albert (from)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1879-07-20">1879 July 20</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_4991e87d87d4cdbc3e06451412a8e8a1_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_4991e87d87d4cdbc3e06451412a8e8a1_c2"
localtype="folder"
parent="aspace_4991e87d87d4cdbc3e06451412a8e8a1_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2630900"
id="aspace_3a2b89909ac61d476e4f202e36054e51"
level="file">
<did>
<unittitle>D'Emery, [M] (to and from)</unittitle>
<unitdatestructured altrender="1878, and undated"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1878">1878, and undated</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_3a2b89909ac61d476e4f202e36054e51_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3a2b89909ac61d476e4f202e36054e51_c2"
localtype="folder"
parent="aspace_3a2b89909ac61d476e4f202e36054e51_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2630491"
id="aspace_d322929a609b77d35ce93c39a2a5f065"
level="file">
<did>
<unittitle>Flaubert, Gustave (from), copy</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_d322929a609b77d35ce93c39a2a5f065_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d322929a609b77d35ce93c39a2a5f065_c2"
localtype="folder"
parent="aspace_d322929a609b77d35ce93c39a2a5f065_c1">5</container>
</did>
<scopecontent id="aspace_76b75821158901d679f92d5305779d57">
<head>Scope and Contents</head>
<p>Copy in the hand of Lina Sand of an undated letter (circa 1868) from Flaubert commenting on Sand's novel <title>
<part>Miss Mary</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630667"
id="aspace_8fbaabebabc8f1f1332a11217a3652ef"
level="file">
<did>
<unittitle>Gaubert, Docteur (from), copy of 1837 letter</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_8fbaabebabc8f1f1332a11217a3652ef_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8fbaabebabc8f1f1332a11217a3652ef_c2"
localtype="folder"
parent="aspace_8fbaabebabc8f1f1332a11217a3652ef_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2630516"
id="aspace_f9af4261c080a70147b5af155e7ad3da"
level="file">
<did>
<unittitle>Matheson, A. for the Société de l'Agriculture de Châteauroux (from)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1870-06-18">1870 June 18</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_f9af4261c080a70147b5af155e7ad3da_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_f9af4261c080a70147b5af155e7ad3da_c2"
localtype="folder"
parent="aspace_f9af4261c080a70147b5af155e7ad3da_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2632727"
id="aspace_8a60d2195d0b2944579aeb74acccf4eb"
level="file">
<did>
<unittitle>Petit, [?] (from)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1848">1848</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_8a60d2195d0b2944579aeb74acccf4eb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_8a60d2195d0b2944579aeb74acccf4eb_c2"
localtype="folder"
parent="aspace_8a60d2195d0b2944579aeb74acccf4eb_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2630492"
id="aspace_d8f8269e53ccf8b6e4d4d1e3ae029c7b"
level="file">
<did>
<unittitle>Renan, Ernest (to)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1876">1876</datesingle>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1929">1929</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_d8f8269e53ccf8b6e4d4d1e3ae029c7b_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_d8f8269e53ccf8b6e4d4d1e3ae029c7b_c2"
localtype="folder"
parent="aspace_d8f8269e53ccf8b6e4d4d1e3ae029c7b_c1">9</container>
</did>
<scopecontent id="aspace_da931245d6273462907a0e967ce17748">
<head>Scope and Contents</head>
<p>Accompanied by a letter from Noémi Renan to Aurore Sand (1929).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3170048"
id="aspace_b69c322f26ba0ce3ef198761ccc2d9b2"
level="file">
<did>
<unittitle>Sand, Aurore (to)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875">1875</fromdate>
<todate standarddate="1888">1888</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_b69c322f26ba0ce3ef198761ccc2d9b2_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b69c322f26ba0ce3ef198761ccc2d9b2_c2"
localtype="folder"
parent="aspace_b69c322f26ba0ce3ef198761ccc2d9b2_c1">9a</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2630509"
id="aspace_5384834902f150c3941c0d1fc31d3632"
level="file">
<did>
<unittitle>Sand, George (to)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1864">1864</datesingle>
</unitdatestructured>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_5384834902f150c3941c0d1fc31d3632_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5384834902f150c3941c0d1fc31d3632_c2"
localtype="folder"
parent="aspace_5384834902f150c3941c0d1fc31d3632_c1">10</container>
</did>
<scopecontent id="aspace_67bc60ffd20bb277b9f5729d52b1bf08">
<head>Scope and Contents</head>
<p>Letter sent on behalf of the puppet characters of the Théâtre de Nohant, and two letters regarding Maurice's son's illness.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630663"
id="aspace_5ad9639b6dd397969aa4ec9e6f9f3081"
level="file">
<did>
<unittitle>Sand, George (to and from), copies</unittitle>
<unitdatestructured altrender="circa 1840 - 1854"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1840">1840</fromdate>
<todate standarddate="1854">1854</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_5ad9639b6dd397969aa4ec9e6f9f3081_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_5ad9639b6dd397969aa4ec9e6f9f3081_c2"
localtype="folder"
parent="aspace_5ad9639b6dd397969aa4ec9e6f9f3081_c1">11</container>
</did>
<scopecontent id="aspace_70fe001857c543f60bb91bf1cd817702">
<head>Scope and Contents</head>
<p>Copies in the hand of Aurore Sand of letters exchanged between George and Maurice Sand, and of a letter in Italian by Frederic Chopin to George Sand.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/3171518"
id="aspace_29d5c18c0bea8fa6ca9486155e36676f"
level="file">
<did>
<unittitle>Sand, George (attributed)</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_29d5c18c0bea8fa6ca9486155e36676f_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_29d5c18c0bea8fa6ca9486155e36676f_c2"
localtype="folder"
parent="aspace_29d5c18c0bea8fa6ca9486155e36676f_c1">11a</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/2630659"
id="aspace_9df85fa9ddeb43a9bca2999285617389"
level="file">
<did>
<unittitle>Unidentified correspondents (to)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1875">1875</fromdate>
<todate standarddate="1888">1888</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_9df85fa9ddeb43a9bca2999285617389_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9df85fa9ddeb43a9bca2999285617389_c2"
localtype="folder"
parent="aspace_9df85fa9ddeb43a9bca2999285617389_c1">12</container>
</did>
</c>
</c>
<c altrender="/repositories/11/archival_objects/2630743"
id="aspace_f1552b2785b55698a47d658f52d5618f"
level="subseries">
<did>
<unittitle>Publishing Contracts and Correspondence</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1901">1901</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_5558cdc14bd56fe46e2e0175b313c17f">
<head>Arrangement</head>
<p>Arranged alphabetically by publication title.</p>
</arrangement>
<scopecontent id="aspace_6aa75d67301fe22d4021556e0a2b3757">
<head>Scope and Contents</head>
<p>Publishing contracts and correspondence document Maurice Sand's business relations with publishers for a significant number of his literary works, as well as the involvement of George and Lina Sand in negotiating terms of publication. Key figures of nineteenth-century French publishing are represented, including Michel and Kalmus Lévy (firms Michel Lévy frères until 1875 and Calmann-Lévy thereafter), and Albert Lacroix (firm A.Lacroix, Verboeckhoven).</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/2630896"
id="aspace_dfd8ee89b0e66e2bba4a171e554f375e"
level="file">
<did>
<unittitle>
<title>
<part>L'Augusta</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1872">1872</fromdate>
<todate standarddate="1901">1901</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_dfd8ee89b0e66e2bba4a171e554f375e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_dfd8ee89b0e66e2bba4a171e554f375e_c2"
localtype="folder"
parent="aspace_dfd8ee89b0e66e2bba4a171e554f375e_c1">13</container>
</did>
<scopecontent id="aspace_f9d11ce7d7ab3a16e454e9e8ede38f26">
<head>Scope and Contents</head>
<p>Contract with Michel Lévy frères (1872), bills from Typographie Chamerot et Renouard (1900-1901), and correspondence between Lina Sand and Georges Rochegrosse (1896-1899) regarding the edition illustrated by Rochegrosse.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630661"
id="aspace_c0f68111e52a186d7769280b91a8ea80"
level="file">
<did>
<unittitle>
<title>
<part>Callirhoé</part>
</title> (Quatrième partie)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1863-08-10">1863 August 10</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_c0f68111e52a186d7769280b91a8ea80_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c0f68111e52a186d7769280b91a8ea80_c2"
localtype="folder"
parent="aspace_c0f68111e52a186d7769280b91a8ea80_c1">14</container>
</did>
<scopecontent id="aspace_3696f5d89c67078b7769d710ec2abc21">
<head>Scope and Contents</head>
<p>Letter from Maurice Sand to Emile [Aucante] regarding a mistake in the printing of "Callirhoé" in <title>
<part>Revue des Deux Mondes</part>
</title>, July 1863 issue.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630951"
id="aspace_b30531ed388e4de42b5e518de55ab61d"
level="file">
<did>
<unittitle>
<title>
<part>Le coq aux cheveux d'or</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1866">1866</fromdate>
<todate standarddate="1867">1867</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_b30531ed388e4de42b5e518de55ab61d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_b30531ed388e4de42b5e518de55ab61d_c2"
localtype="folder"
parent="aspace_b30531ed388e4de42b5e518de55ab61d_c1">15</container>
</did>
<scopecontent id="aspace_f487c6ef80b1844b6dcf5d964efc2e7b">
<head>Scope and Contents</head>
<p>Correspondence between Albert Lacroix and Maurice Sand, and between Lacroix and George Sand. George Sand's response is a copy in the hand of Lina Sand.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2631000"
id="aspace_3c2603d964e723de6fabff2b714c078e"
level="file">
<did>
<unittitle>
<title>
<part>La fille du singe</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1885-08">1885 August</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_3c2603d964e723de6fabff2b714c078e_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_3c2603d964e723de6fabff2b714c078e_c2"
localtype="folder"
parent="aspace_3c2603d964e723de6fabff2b714c078e_c1">16</container>
</did>
<scopecontent id="aspace_eb7f3e897ea668df4fb704098353390c">
<head>Scope and Contents</head>
<p>Contract with Paul Ollendorff.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2631009"
id="aspace_94398b36c36a1de270f44b703995187d"
level="file">
<did>
<unittitle>
<title>
<part>Funestre oubli</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1889-01-12">1889 January 12</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_94398b36c36a1de270f44b703995187d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_94398b36c36a1de270f44b703995187d_c2"
localtype="folder"
parent="aspace_94398b36c36a1de270f44b703995187d_c1">17</container>
</did>
<scopecontent id="aspace_abdf36983985c1aa48b6eda95dad4ea0">
<head>Scope and Contents</head>
<p>Rejection notice from Frédéric Masson, editor of <title>
<part>Paris illustré</part>
</title>
</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630995"
id="aspace_2ce0b8e6e09051c9ff5827835de10c2d"
level="file">
<did>
<unittitle>
<title>
<part>Mademoiselle Azote</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1869-05-17">1869 May 17</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_2ce0b8e6e09051c9ff5827835de10c2d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_2ce0b8e6e09051c9ff5827835de10c2d_c2"
localtype="folder"
parent="aspace_2ce0b8e6e09051c9ff5827835de10c2d_c1">18</container>
</did>
<scopecontent id="aspace_75a85bf2f4d4f7aa1eeb86a839309784">
<head>Scope and Contents</head>
<p>Contract with Michel Lévy frères.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630998"
id="aspace_519c47a81205d3b1ab873afc10150671"
level="file">
<did>
<unittitle>
<title>
<part>Mademoiselle de Cérignan</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1874-04-01">1874 April 1</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_519c47a81205d3b1ab873afc10150671_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_519c47a81205d3b1ab873afc10150671_c2"
localtype="folder"
parent="aspace_519c47a81205d3b1ab873afc10150671_c1">19</container>
</did>
<scopecontent id="aspace_ae588956f1564e610185480c86af8380">
<head>Scope and Contents</head>
<p>Contract with Michel Lévy frères.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630943"
id="aspace_57aac90398299cc1aa7ccf21e9bd53e5"
level="file">
<did>
<unittitle>
<title>
<part>Masques et bouffons</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1860">1860</fromdate>
<todate standarddate="1869">1869</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_57aac90398299cc1aa7ccf21e9bd53e5_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_57aac90398299cc1aa7ccf21e9bd53e5_c2"
localtype="folder"
parent="aspace_57aac90398299cc1aa7ccf21e9bd53e5_c1">20</container>
</did>
<scopecontent id="aspace_e2c5c2dc3246cec92060ae3459d42694">
<head>Scope and Contents</head>
<p>Contract between Maurice Sand and Ernest Bouju (1860), letter from A. Laplace regarding a lawsuit for counterfeited products based on Sand's illustrations (1869).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2631215"
id="aspace_ea6605efdf47cd5f30c544ef6a1cea53"
level="file">
<did>
<unittitle>
<title>
<part>Miss Mary</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1868-03-24">1868 March 24</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_ea6605efdf47cd5f30c544ef6a1cea53_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ea6605efdf47cd5f30c544ef6a1cea53_c2"
localtype="folder"
parent="aspace_ea6605efdf47cd5f30c544ef6a1cea53_c1">21</container>
</did>
<scopecontent id="aspace_66b6bae2843bd7335766443c8566f3d6">
<head>Scope and Contents</head>
<p>Letter from Michel Lévy negotiating publishing terms for <title>
<part>Miss Mary</part>
</title> in relation to the sales of <title>
<part>Callirhoé</part>
</title>.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630946"
id="aspace_45e60537f2904b3c3f34c9a49243adc4"
level="file">
<did>
<unittitle>
<title>
<part>Le monde des papillons</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1862">1862</fromdate>
<todate standarddate="1866">1866</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_45e60537f2904b3c3f34c9a49243adc4_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_45e60537f2904b3c3f34c9a49243adc4_c2"
localtype="folder"
parent="aspace_45e60537f2904b3c3f34c9a49243adc4_c1">22</container>
</did>
<scopecontent id="aspace_1dde4404c94dc516c4bccd5c237c878e">
<head>Scope and Contents</head>
<p>Contract with Ernest Bouju for <title>
<part>Deux jours dans le monde des papillons</part>
</title> (1860), contract with J. Rothschild for <title>
<part>Le monde des papillons</part>
</title> (1866).</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630948"
id="aspace_7a29db856765eec434aebad661af0eee"
level="file">
<did>
<unittitle>
<title>
<part>Raoul de la Chastre</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1865-03-03">1865 March 3</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_7a29db856765eec434aebad661af0eee_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_7a29db856765eec434aebad661af0eee_c2"
localtype="folder"
parent="aspace_7a29db856765eec434aebad661af0eee_c1">23</container>
</did>
<scopecontent id="aspace_5474284eee6970989d483eff0db84a1b">
<head>Scope and Contents</head>
<p>Letter from Michael Lévy frères confirming acceptance of contract.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2634664"
id="aspace_c818f3ad00f2a808f48d298309f41deb"
level="file">
<did>
<unittitle>
<title>
<part>Six mille lieues à toute vapeur</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1862-04-14">1862 April 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_c818f3ad00f2a808f48d298309f41deb_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_c818f3ad00f2a808f48d298309f41deb_c2"
localtype="folder"
parent="aspace_c818f3ad00f2a808f48d298309f41deb_c1">24</container>
</did>
<scopecontent id="aspace_24d81f318602db181a3d7cf82027ab09">
<head>Scope and Contents</head>
<p>Letter from Michel Lévy frères confirming acceptance of contract.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2631005"
id="aspace_9852de9fcbf399bc71c23d981a5da67d"
level="file">
<did>
<unittitle>
<title>
<part>Le théâtre des marionnettes</part>
</title>
</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<datesingle standarddate="1889-01-07">1889 January 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"
id="aspace_9852de9fcbf399bc71c23d981a5da67d_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_9852de9fcbf399bc71c23d981a5da67d_c2"
localtype="folder"
parent="aspace_9852de9fcbf399bc71c23d981a5da67d_c1">25</container>
</did>
<scopecontent id="aspace_de4d0861ac44dc08aef180eff005b459">
<head>Scope and Contents</head>
<p>Contract with Calmann-Lévy.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/2630914"
id="aspace_2f97fc6dfe8cb8ec61bf9eda0e35074b"
level="file">
<did>
<unittitle>Unknown work</unittitle>
<unitdate label="creation" unitdatetype="inclusive">undated</unitdate>
<container altrender="/repositories/11/top_containers/304459 /locations/9"
containerid="39002099260078"
encodinganalog="archive half legal"