-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path526.xml
2835 lines (2835 loc) · 164 KB
/
526.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.lunts">beinecke.lunts</recordid>
<otherrecordid localtype="BIB">3451208</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Lev Lunts Papers
</titleproper>
<titleproper localtype="filing">Lunts (Lev) Papers</titleproper>
<author>by Anastasia Zhodzishskaya</author>
</titlestmt>
<publicationstmt>
<publisher>Beinecke Rare Book and Manuscript Library</publisher>
<address>
<addressline>P. O. Box 208330</addressline>
<addressline>New Haven, CT 06520-8330</addressline>
<addressline localtype="telephone">(203) 432-2977 </addressline>
<addressline localtype="email">[email protected]</addressline>
<addressline>
<ref href="http://beinecke.library.yale.edu/"
linktitle="http://beinecke.library.yale.edu/"
show="new">http://beinecke.library.yale.edu/</ref>
</addressline>
</address>
<date>January 1992</date>
<num>GEN MSS 104</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">3451208</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1-5</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="11">11</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="224">224</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-08T23:01:13-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:01</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/526" level="collection">
<did>
<unittitle>Lev Lunt︠s︡ papers</unittitle>
<unitid>GEN MSS 104</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="rus">Russian</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>3.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">5 boxes</physdesc>
<unitdatestructured altrender="1896-1931" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1896">1896</fromdate>
<todate standarddate="1931">1931</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_32c6916c943f4b2ae03aecab6cc600a1">The papers contain correspondence of Lunt︠s︡ and his father, Natan Lunt︠s︡, writings, and personal papers of Lev and Natan Lunt︠s︡.</abstract>
<origination label="Creator">
<persname>
<part localtype="agent_person">Lunt︠s︡, Lev, 1901-1924</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_ddb453a3f8bb482d1e4acc3d0d8267da">
<head>Immediate Source of Acquisition</head>
<p>The Lev Lunts Papers were purchased by Yale University in 1965 from Lunts's sister, Mrs. Genia Hornstein. The papers were discovered at Mrs. Hornstein's home in London in 1964 by Gary Kern. Mr. Kern identified the material and made the initial sorting.</p>
</acqinfo>
<userestrict id="aspace_62b39f44a3a771272abac6370095450b">
<head>Conditions Governing Use</head>
<p>The Lev Lunts Papers are the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_158ef19d8de91b7b107bed87a3e92482">
<head>Preferred Citation</head>
<p>Lev Lunts Papers. General Collection, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_f59edce7ff1c23e5a66293f113f7e6c3">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
<p>Restricted Fragile Papers in box 5 may only be consulted with permission of the appropriate curator. Preservation photocopies for reference use have been substituted in the main files.</p>
</accessrestrict>
<processinfo id="aspace_6f2ca2396e382e1f4c31342d725c4bbb">
<head>Processing Information</head>
<p>Slavic names, titles, and quotations in their original languages have been transliterated in accordance with Library of Congress guidelines.</p>
</processinfo>
<bioghist id="aspace_f279cb19ae682ac8abea929026dad2a5">
<head>LEV LUNTS (1901-1924)</head>
<p>Lev Natanovich Lunts, the promising but short-lived playwright, critic, and author, was born in St. Petersburg on May 2, 1901 (April 19, old style), into a family of Jewish intelligentsia. His father, Natan IAkovlevich, was a provisor and importer of optical instruments; his mother, Anna Efimovna, had been a concert pianist. He graduated from the St. Petersburg gimnasiia (high school) in 1918, with honors, and enrolled in the department of Romano-Germanic Languages and Literatures of the St. Petersburg University, where he studied under professors Dmitrii Petrov, Georgii Lozinskii, and others. He was considered an outstanding student and, upon graduation in 1922, was asked to remain on the faculty of his department as a post-graduate fellow. He began publishing his first articles of literary criticism in the St. Petersburg periodical <title localtype="simple" render="italic">
<part>ZHizn' Iskusstva</part>
</title> in 1919-20.</p>
<p>While at the university, Lunts also attended lectures at "Dom Iskusstv," which was organized as part of Maksim Gorky's project, "Vsemirnaia Literatura," for the encouragement of young writers and poets, and which served from 1920 to 1923 as a place for meetings and lectures, and as a residence. The lectures and seminars there inspired him and his friend Mikhail Slonimskii, on the advice of Victor SHklovskii, to found the literary group known as "Serapionovy brat'ia" (Serapion Brothers). Its first meeting took place on February 1, 1921 in Slonimskii's room at Dom Iskusstv, where it continued to meet in its first years. Those present were: Il'ia Gruzdev, Veniamin Kaverin, Lev Lunts, Nikolai Nikitin, Elizaveta Polonskaia, Vladimir Pozner, Victor SHklovskii, Mikhail Slonimskii, and Mikhail Zoshchenko. Konstantin Fedin, Vsevolod Ivanov, and Nikolai Tikhonov joined the group that spring. Others who attended the meetings were the "Serapion maidens"-- Musia Alonkina, Zoia Gatskevich (Nikitina), Ida Kaplan, and Lidiia KHariton, as well as "guests," who included Evgenii Zamiatin, Olga Forsh, IUrii Tynianov, Anna Akhmatova, and Osip Mandel'shtam. The group was characterized by a deliberate lack of a single literary or ideological tendency and a common belief that the artistic claims of literature should not be subjugated to social agenda or political ideology. Lunts belonged to the left, "westernizing" wing of the Serapions, as he indicated in his article "O rodnykh brat'iakh" and the speech "Na zapad!", which was published in the Berlin periodical <title localtype="simple" render="italic">
<part>Beseda</part>
</title> (number 3, 1923). The group came under attack by Marxist critics who accused its members of being "apolitical." Lunts responded to these criticisms in his articles "Pis'mo v redaktsiiu" and "Ob ideologii i publitsistike."</p>
<p>In June of 1921 Lev Lunts joined the All-Russian Professional Writers Union. In the same summer, his parents left Russia and moved to Germany. Lunts remained in St. Petersburg to finish his studies at the university. During the years 1921-23 he lived in the "obez'iannik" at Dom Iskusstv, along with other young writers, artists, and poets including Aleksandr Grin and Vladimir Piast. It was then that Lunts wrote and published the greater part of his works. By the end of 1922, beginning of 1923, he became known in St. Petersburg for his literary criticism, his plays <title localtype="simple" render="italic">
<part>Vne zakona</part>
</title> and <title localtype="simple" render="italic">
<part>Bertrand-de-Born</part>
</title>, and his controversial polemical articles "Pochemu my serapionovy brat'ia," and "Na zapad!".</p>
<p>In 1922 Lunts's health began to deteriorate. From his correspondence with his parents we learn that he originally decided to remain in Russia, although they repeatedly urged him to join them in Germany. By 1923, however, he was making every effort to obtain permission to travel abroad. With the help of Maksim Gorky, he procured an academic leave from the university and an exit visa for a literary-research trip to Spain. He left Russia on June 1, 1923. By the time he reached his parents in Hamburg, he was too sick to continue and went instead to a sanatorium in Koenigstein. It is there that he wrote the chronicle "Puteshestvie na bol'nichnoi koike." Lunts spent the last year of his life in sanatoriums and hospitals in Germany. For most of this time he was bedridden, at times partially paralyzed; at one point, after what was probably a stroke, he lost the ability to read and write and was obliged to teach himself again. Among his writings from this period was the second of his two screenplays, <title localtype="simple" render="italic">
<part>Vosstanie veshchei</part>
</title>, and the play <title localtype="simple" render="italic">
<part>Gorod pravdy</part>
</title>, which he sent to the Serapions. Lev Lunts died in the hospital in Eppendorf on May 9, 1924 at the age of 23. <title localtype="simple" render="italic">
<part>Bibliography</part>
</title> Lunts, Lev. <title localtype="simple" render="italic">
<part>Rodina i drugie proizvedeniia</part>
</title>. Ed. with an afterword and commentary by M. Vainshtein. Jerusalem: Pamiat', 1981. ---. <title localtype="simple" render="italic">
<part>Zaveshchanie TSaria</part>
</title>. Ed. with an introduction by W. Schriek. Munich: Sagner, 1983. <title localtype="simple" render="italic">
<part>Novyi zhurnal</part>
</title>. Number 79, New York, 1965: 44-79; Number 82, 1966: 136-92; Number 83, 1966: 132-84; Number 90, 1968: 39-57.</p>
</bioghist>
<scopecontent id="aspace_c0dfa8e61abae28303d57c92a4834df8">
<head>Scope and Contents</head>
<p>The Lev Lunts Papers consist of correspondence, writings, and personal papers that document the short career of the Russian playwright. Most papers date from between 1922 and 1930, but the collection spans the years 1896-1931. Except where indicated, all the papers are in Russian.</p>
<p>The papers are divided into three series; <title localtype="simple" render="italic">
<part>Correspondence</part>
</title> (Box 1), <title localtype="simple" render="italic">
<part>Writings</part>
</title> (Box 2-3), and <title localtype="simple" render="italic">
<part>Family Papers</part>
</title> (Box 4), plus on box of <title localtype="simple" render="italic">
<part>Restricted Fragile Papers</part>
</title>.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref11">Series I, <title localtype="simple" render="italic">
<part>Correspondence</part>
</title>
</ref>, consists primarily of letters to Lev Lunts, some letters and drafts of letters written by him, and the personal correspondence of his father, Natan Lunts. Lev's correspondence covers two periods in his life. The first is the year after his parents' departure from Russia in the summer of 1921. This period is documented in the letters of Natan Lunts to Lev and in Lev's letters to his family, which are filed with the <title localtype="simple" render="italic">
<part>Outgoing</part>
</title> correspondence. The second period is from June 1923 to May 1924, from the time that Lev left Russia and joined his parents until his death. In the last year of his life, Lunts corresponded actively with people in Russia, as well as friends from St. Petersburg who were already abroad. The correspondence of Natan Lunts dates, for the most part, from after Lev's death.</p>
<p>Among the items in the <title localtype="simple" render="italic">
<part>Incoming</part>
</title> correspondence are letters from prominent literary figures such as Kornei Chukovskii, Maksim Gorky, Il'ia Erenburg, and Evgenii Zamiatin, as well as a number of letters from Nina Berberova, who befriended Lunts when he lived at Dom Iskusstv. Berberova writes from Berlin, then Marienbad, and finally from Venice, where she and Vladislav KHodasevich stopped briefly before moving to Paris. For the most part, these are letters of friendship and concern, but they deal also with literary issues, such as plans for the production of the German translation of <title localtype="simple" render="italic">
<part>Vne zakona</part>
</title> in Berlin, and the publishing of Lunts's articles and other works in <title localtype="simple" render="italic">
<part>Beseda</part>
</title>.</p>
<p>Other incoming letters are from Lunts's colleagues and personal friends, the fellow members of the Serapion Brothers. Most extensive are the correspondences of Lidiia KHariton and Ida Kaplan, two of the Serapion maidens, and of Vladimir Pozner, who was one of the first and youngest members of the group, but who had by this time emigrated to Paris with his parents. The correspondents relate the news of the group and its members and comment on their latest work. Another subject is Lunts's work, the publication and production of his writings and plays in Russia, including the fate of <title localtype="simple" render="italic">
<part>Vne zakona</part>
</title>, and an account (L. KHariton) of the reactions of the Serapions to the play <title localtype="simple" render="italic">
<part>Gorod pravdy</part>
</title>. These, and the letters from other Serapions, provide an insight into the spirit of youthful friendship in the group, the members' relationships to each other, and the characters of these young writers, who were later to have very different fates, some adjusting and becoming mainstream Soviet writers, some repressed, and some exiled. Taken together, these letters tell the story of a year in the life of the Serapion Brothers--their literary successes and failures and the developments in their personal lives, all against the background of the extraordinary historical events of the time. Also of note are a letter from Elizaveta Polonskaia with an autograph poem and one from Aleksandr Slonimskii, written collaboratively with Samuil Marshak, containing a humorous poem composed by the two. Some of these letters have been published in various issues of <title localtype="simple" render="italic">
<part>Novyi ZHurnal</part>
</title> and in the collection <title localtype="simple" render="italic">
<part>Zaveshchanie TSaria</part>
</title>. Also part of the <title localtype="simple" render="italic">
<part>Incoming</part>
</title> correspondence are letters from Dmitrii Umanskii, Lunts's German translator, which discuss his work on <title localtype="simple" render="italic">
<part>Vne zakona</part>
</title>, and his attempts to get it published and produced in German.</p>
<p>Most of the outgoing letters are written by Lev Lunts to his parents in the years 1922-23. He discusses his university studies, his literary success, his material circumstances, and, in the later letters, his health and his plans to leave Russia. There are also two letters to his sister Evgeniia; a draft of a letter to Gorky, in which he expresses despair at being chronically ill in the prime of his life and talks about the Serapions and his play <title localtype="simple" render="italic">
<part>Gorod pravdy</part>
</title>, and a draft of a letter to Nikolai Nikitin and his wife Zoia, which is a humorous response to their letters of September 25, 1923 (Box 1, folder 17).</p>
<p>The correspondence of Natan Lunts is filed under its own heading. After Lev's death, his father kept in touch with some of his friends, including Nina Berberova, Ida Kaplan, Lidiia KHariton, Elizaveta Polonskaia, and Mikhail Slonimskii. At first his father and his friends share the pain and shock of their loss; later they discuss the care of his possessions, his manuscripts, and the plans (never materialized) by the Serapions to put out a two volume edition of Lunts's works, including some articles and obituaries by his friends. Also included is Natan's correspondence with translators Dmitrii Umanskii (German) and F. O. Dempsey (pseudonym, John Silver, English) regarding the publication and production of Lev's plays and Natan's personal correspondence with friends and relatives, including R. Jakobson and M. IArblum. The series concludes with three folders of condolence letters, telegrams, and cards to the family.</p>
<p>
<ref actuate="onrequest" show="replace" target="ref103">Series II, <title localtype="simple" render="italic">
<part>Writings</part>
</title>
</ref> is divided into four sections: <title localtype="simple" render="italic">
<part>Drama</part>
</title>, <title localtype="simple" render="italic">
<part>Screenplays</part>
</title>, <title localtype="simple" render="italic">
<part>Articles</part>
</title>, and <title localtype="simple" render="italic">
<part>Shorter Works</part>
</title>. Translations comprise a significant portion of this series. Items of particular interest are holograph originals of the unpublished screenplay <title localtype="simple" render="italic">
<part>Zaveshchanie TSaria</part>
</title>; the humorous short story "KHozhdeniia", a parody of the Serapions which Lunts sent to them to be read at the group's anniversary celebration and which incited much commentary in the correspondence; and the chronicle "Puteshestvie na bol'nichnoi koike." Other holograph originals include a first draft of the play <title localtype="simple" render="italic">
<part>Gorod pravdy</part>
</title> and a draft of the article "O rodnykh brat'iakh."</p>
<p>
<ref actuate="onrequest" show="replace" target="ref151">The third and final series, <title localtype="simple" render="italic">
<part>Family Papers</part>
</title>
</ref>, contains documents such as a birth certificate, educational and identification records; documents related to Lev Lunts's death and burial; and newspaper clippings with obituaries and posthumous articles by his friends, including Konstantin Fedin, Nina Berberova, and Mikhail Slonimskii. Other items include photographs of Lev, Ida Kaplan, and others; Lunts's wallet and its contents; and some newspaper clippings. One clipping, a short resolution, signed collectively by the Serapion Brothers and published in <title localtype="simple" render="italic">
<part>Leningradskaia Pravda</part>
</title> on January 27, 1924, became the cause of the group's break with Nikolai Nikitin (see also Lidiia KHariton's letter of March 2, 1924). Also found in the series are some personal papers of Natan Lunts.</p>
</scopecontent>
<controlaccess>
<subject source="local">
<part localtype="topical">Authors, Russian</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Dramatists, Russian</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2010111596"
source="lcsh">
<part localtype="topical">Russian drama</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85115991"
source="lcsh">
<part localtype="topical">Russian literature</part>
<part localtype="temporal">20th Century</part>
</subject>
<subject source="local">
<part localtype="topical">Sanatoriums</part>
<part localtype="geographic">Germany</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85125811"
source="lcsh">
<part localtype="geographic">Soviet Union</part>
<part localtype="topical">History</part>
<part localtype="temporal">1917-1936</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85125826"
source="lcsh">
<part localtype="geographic">Soviet Union</part>
<part localtype="topical">Intellectual life</part>
<part localtype="temporal">1917-1970</part>
</geogname>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85039342"
source="lcsh">
<part localtype="topical">Dramatists</part>
</subject>
<persname>
<part localtype="agent_person">Berberova, N. (Nina), 1901-1993</part>
</persname>
<persname>
<part localtype="agent_person">Chukovskiĭ, Korneĭ, 1882-1969</part>
</persname>
<persname>
<part localtype="agent_person">Ėrenburg, Ilʹi︠a︡, 1891-1967</part>
</persname>
<persname>
<part localtype="agent_person">Fedin, Konstantin, 1892-1977</part>
</persname>
<persname rules="aacr">
<part localtype="agent_person">Kaplan, Ida</part>
</persname>
<persname>
<part localtype="agent_person">Kaverin, V. (Veniamin), 1902-1989</part>
</persname>
<persname source="local">
<part localtype="agent_person">KHariton, Lidiia, 1899-</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Lozinskii, Grigorii, 1886-1955</part>
</persname>
<persname>
<part localtype="agent_person">Lunt︠s︡, Lev, 1901-1924</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Lunt︠s︡, Natan</part>
</persname>
<persname source="local">
<part localtype="agent_person">Nikitin, Nikolaĭ, 1897-1963</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Petrov, D. K(Dmitrĭ Konstantinovich), 1872-1925</part>
</persname>
<persname source="local">
<part localtype="agent_person">Polonskai︠a︡, Elizaveta Grigorévna, 1890-</part>
</persname>
<persname>
<part localtype="agent_person">Pozner, Vladimir, 1905-1992</part>
</persname>
<persname>
<part localtype="agent_person">Shklovskiĭ, Viktor, 1893-1984</part>
</persname>
<persname source="local">
<part localtype="agent_person">Slonimiskiĭ, Mikhail Leonidovich, 1897-1972</part>
</persname>
<persname source="local">
<part localtype="agent_person">Slonimskiĭ, A. L(Aleksandr Leonidovich), 1884-1964</part>
</persname>
<persname>
<part localtype="agent_person">Tikhonov, Nikolaĭ, 1896-1979</part>
</persname>
<persname source="local">
<part localtype="agent_person">Umanskii, Dmitrii</part>
</persname>
<persname>
<part localtype="agent_person">Zami͡atin, Evgeniĭ Ivanovich, 1884-1937</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/169726"
id="ref11"
level="series">
<did>
<unittitle>Correspondence</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>0.5</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">1 box</physdesc>
<unitdatestructured altrender="1922-31" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1922">1922</fromdate>
<todate standarddate="1931">1931</todate>
</daterange>
</unitdatestructured>
</did>
<scopecontent id="aspace_909ebf202a36869eb7e67f71b3a07609">
<head>Scope and Contents</head>
<p>The correspondence is divided into three alphabetically arranged subseries: <title localtype="simple" render="italic">
<part>Incoming</part>
</title>, <title localtype="simple" render="italic">
<part>Outgoing</part>
</title>, and <title localtype="simple" render="italic">
<part>Natan Lunts</part>
</title>. The third subseries contains the incoming and outgoing correspondence of the Natan Lunts. Unidentified correspondence has been placed at the end of each subseries.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/169727"
id="ref13"
level="subseries">
<did>
<unittitle>INCOMING</unittitle>
</did>
<c altrender="/repositories/11/archival_objects/169728"
id="ref14"
level="file">
<did>
<unittitle>Alekseev, Gleb</unittitle>
<unitdatestructured altrender="1923 Jun 29" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923-06-29">1923 Jun 29</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
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/169729"
id="ref15"
level="file">
<did>
<unittitle>Berberova, Nina</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
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/169730"
id="ref16"
level="file">
<did>
<unittitle>Chukovskii, Kornei</unittitle>
<unitdatestructured altrender="1924 Jan 7" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1924-01-07">1924 Jan 7</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
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/169731"
id="ref17"
level="file">
<did>
<unittitle>Chukovskii, Nikolai</unittitle>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169732"
id="ref18"
level="file">
<did>
<unittitle>Erenburg, Il'ia</unittitle>
<unitdatestructured altrender="1923 Jul 25" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923-07-25">1923 Jul 25</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169733"
id="ref19"
level="file">
<did>
<unittitle>Fedin, Konstantin</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">5</container>
</did>
<relatedmaterial id="aspace_0527b71b00a36afdb66c9280bddfeaed">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref32">See also: Lidiia KHariton, Box 1, folder 11</ref>
</p>
</relatedmaterial>
<relatedmaterial id="aspace_4039ec8c1e848b08d5bd082325783aec">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref47">See also: Serapion Brothers, Box 1, folder 21</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169734"
id="ref22"
level="file">
<did>
<unittitle>Gorky, Maksim</unittitle>
<unitdatestructured altrender="1923 Dec 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923-12-22">1923 Dec 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169735"
id="ref23"
level="file">
<did>
<unittitle>Gruzdev, Il'ia</unittitle>
</did>
<relatedmaterial id="aspace_a79eecdc491aa7696637c8cebaea82fc">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref47">See: Serapion Brothers, Box 1, folder 21</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169736"
id="ref25"
level="file">
<did>
<unittitle>Gurvich, Boris</unittitle>
<unitdatestructured altrender="1924 Jan 14" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1924-01-14">1924 Jan 14</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169737"
id="ref26"
level="file">
<did>
<unittitle>Kaplan, Ida</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">8</container>
<daoset altrender="/repositories/11/digital_objects/130675">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16474513"
identifier="oid:16474513"
linktitle="29 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16561492/full/!150,150/0/default.jpg"
identifier="oid:16474513"
linktitle="29 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16474513"
identifier="oid:16474513"
linktitle="29 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Kaplan, Ida</p>
</descriptivenote>
</daoset>
</did>
<relatedmaterial id="aspace_ecf493b0f3fa22507c9e2bdbf98ab0cf">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref47">See also: Serapion Brothers, Box 1, folder 21</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169738"
id="ref28"
level="file">
<did>
<unittitle>Kaplun, S.</unittitle>
<unitdatestructured altrender="1923 Nov 22" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923-11-22">1923 Nov 22</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">9</container>
</did>
<relatedmaterial id="aspace_797b90932126e2847b8d8c8135ab6f4d">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref63">See also: Dmitrii Umanskii, Box 1, folder 29</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169739"
id="ref30"
level="file">
<did>
<unittitle>Kaverin, Veniamin</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">10</container>
</did>
<relatedmaterial id="aspace_2e81b0cf3db7adab45737b4ea64c7e4b">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref47">See also: Serapion Brothers, Box 1, folder 21</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169740"
id="ref32"
level="file">
<did>
<unittitle>KHariton, Lidiia</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">11-12</container>
<daoset altrender="/repositories/11/digital_objects/130676">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16474514"
identifier="oid:16474514"
linktitle="92 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16561521/full/!150,150/0/default.jpg"
identifier="oid:16474514"
linktitle="f.11, 1"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16474514"
identifier="oid:16474514"
linktitle="f.11, 1"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>KHariton, Lidiia</p>
</descriptivenote>
</daoset>
</did>
<relatedmaterial id="aspace_5417ae7b59c4bbfa1c19e928d98ae2ce">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref47">See also: Serapion Brothers, Box 1, folder 21</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169741"
id="ref34"
level="file">
<did>
<unittitle>Lozinskii, Grigorii</unittitle>
<unitdatestructured altrender="1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">1923</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169742"
id="ref35"
level="file">
<did>
<unittitle>Lunts, Evgeniia</unittitle>
<unitdatestructured altrender="1923 Sep 30, n.d"
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1923-09-30">1923 Sep 30, n.d</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">14</container>
<daoset altrender="/repositories/11/digital_objects/130677">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16474516"
identifier="oid:16474516"
linktitle="5 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16561611/full/!150,150/0/default.jpg"
identifier="oid:16474516"
linktitle="5 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16474516"
identifier="oid:16474516"
linktitle="5 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Lunts, Evgeniia</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169743"
id="ref36"
level="file">
<did>
<unittitle>Lunts, Natan</unittitle>
<unitdatestructured altrender="1922-23" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1922">1922</fromdate>
<todate standarddate="1923">1923</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">15-16</container>
<daoset altrender="/repositories/11/digital_objects/130678">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16474517"
identifier="oid:16474517"
linktitle="21 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16561616/full/!150,150/0/default.jpg"
identifier="oid:16474517"
linktitle="f.15, 1"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16474517"
identifier="oid:16474517"
linktitle="f.15, 1"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Lunts, Natan</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169744"
id="ref37"
level="file">
<did>
<unittitle>Marshak, Samuil</unittitle>
</did>
<relatedmaterial id="aspace_e2dfa2f5fca981e6c1eb3c18fcb2b786">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref54">See: Aleksandr Slonimskii, Box 1, folder 23</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169745"
id="ref39"
level="file">
<did>
<unittitle>Nikitin, Nikolai</unittitle>
<unitdatestructured altrender="1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">1923</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169746"
id="ref40"
level="file">
<did>
<unittitle>Nikitina, Zoia</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169747"
id="ref41"
level="file">
<did>
<unittitle>Peshkov, Aleksei</unittitle>
</did>
<relatedmaterial id="aspace_c544ee142123c83782316fb7291c081a">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref22">See: Maksim Gorky, Box 1, folder 6</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169748"
id="ref43"
level="file">
<did>
<unittitle>Petrov, Dmitrii</unittitle>
<unitdatestructured altrender="1923" label="creation" unitdatetype="inclusive">
<datesingle standarddate="1923">1923</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169749"
id="ref44"
level="file">
<did>
<unittitle>Polonskaia, Elizaveta</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">19</container>
</did>
<relatedmaterial id="aspace_ac356cefe5015aa2cebebf751d4eb211">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref47">See also: Serapion Brothers, Box 1, folder 21</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169750"
id="ref46"
level="file">
<did>
<unittitle>Pozner, Vladimir</unittitle>
<unitdatestructured altrender="1923-24" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1923">1923</fromdate>
<todate standarddate="1924">1924</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">20</container>
<daoset altrender="/repositories/11/digital_objects/130660">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/16562138"
identifier="oid:16562138"
linktitle="38 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/16562139/full/!150,150/0/default.jpg"
identifier="oid:16562138"
linktitle="38 images"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/16562138"
identifier="oid:16562138"
linktitle="38 images"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Pozner, Vladimir</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169751"
id="ref47"
level="file">
<did>
<unittitle>Serapion Brothers</unittitle>
<unitdatestructured altrender="1924 Feb 2, n.d."
label="creation"
unitdatetype="inclusive">
<datesingle standarddate="1924-02-02">1924 Feb 2, n.d.</datesingle>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/16349 /locations/9"
containerid="39002099427560"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">21</container>
<daoset altrender="/repositories/11/digital_objects/130645">
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/manifests/10050109"
identifier="oid:10050109"
linktitle="9 images"
linkrole="text-json"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/iiif/2/1386645/full/!150,150/0/default.jpg"
identifier="oid:10050109"
linktitle="p. 1"
linkrole="image-thumbnail"
show="embed"/>
<dao actuate="onrequest"
audience="external"
daotype="unknown"
href="https://collections.library.yale.edu/catalog/10050109"
identifier="oid:10050109"
linktitle="p. 1"
linkrole="text-html"
show="new"/>
<descriptivenote>
<p>Serapion Brothers</p>
</descriptivenote>
</daoset>
</did>
</c>
<c altrender="/repositories/11/archival_objects/169752"
id="ref48"
level="file">
<did>
<unittitle>SHklovskii, Victor</unittitle>
</did>
<relatedmaterial id="aspace_8a03a7744f2faa24bd46945300a6af85">
<head>Related Archival Materials note</head>
<p>
<ref actuate="onrequest" show="replace" target="ref47">See: Serapion Brothers, Box 1, folder 21</ref>
</p>
</relatedmaterial>
</c>
<c altrender="/repositories/11/archival_objects/169753"
id="ref50"
level="file">