-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1299.xml
13913 lines (13913 loc) · 845 KB
/
1299.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.cripplecreek">beinecke.cripplecreek</recordid>
<otherrecordid localtype="BIB">4255305</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to Records Concerning Real Property and Legal Transactions near Cripple Creek, Colorado
</titleproper>
<titleproper localtype="filing">Cripple Creek, Guide to Records Concerning Real Property and Legal Transactions</titleproper>
<author>by Matthew Daniel Mason</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>2010</date>
<num>WA MSS S-2641</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">4255305</num>.</p>
</controlnote>
<controlnote localtype="offsite">
<p>Boxes: 1 Oversize, 4-26, 28 Oversize-40 Oversize, 47 Oversize-53 Oversize, 55 Oversize-67, 71 Oversize-80, 82-154, 160 Oversize-168 Oversize, 169 (Oversize), 170-187 Oversize, 189 Oversize-191, 193 Oversize-200</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 2 Oversize-3 Oversize, 27 Oversize, 41 Oversize-46 Oversize, 54 Oversize, 68 Oversize-70 Oversize, 81 Oversize, 155 Oversize-159 Oversize, 188 Oversize, 192 (Broadside), 201 Roll-223 Roll</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>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:24:25-05:00</eventdatetime>
<agenttype value="machine"/>
<agent>ArchivesSpace yale-rebased-v3.3.1</agent>
<eventdescription>This finding aid was produced using ArchivesSpace on Thursday January 9, 2025 at 00:24</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1299" level="collection">
<did>
<unittitle>Records concerning real property and legal transactions near Cripple Creek, Colorado</unittitle>
<unitid>WA MSS S-2641</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="eng">English</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>57.4</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">201 boxes + 17 rolls, 5 broadside folders</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1861">1861</fromdate>
<todate standarddate="1972">1972</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1890">1890</fromdate>
<todate standarddate="1910">1910</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_1e3504577b83df05fc2f5b1bfd0d4800">Manuscript and printed indexes and summary volumes prepared by regional abstract companies to record the history of real property titles and other financial and legal transactions in Fremont, Teller, and El Paso counties in Colorado, 1861-1972, with the bulk of the collection dating from the height of the Cripple Creek gold rush, 1890-1910. The records consist chiefly of summary accounts created by regional abstract companies from official records maintained in the Fremont, Teller, and El Paso county clerks' offices to document the acquisition and transfer of real property, mining claims, powers of attorney, and tax delinquencies. The records created by abstract companies are accompanied by small groups of business records from local institutions and individuals, as well as 22 printed maps and one disbound volume of plat maps from the region.</abstract>
</did>
<acqinfo id="aspace_f287d87f6e5b76f0d9911a31a24f6884">
<head>Immediate Source of Acquisition</head>
<p>Purchased from Brian Levine on the Frederick W. and Carrie S. Beinecke Fund for Western Americana, 1997.</p>
</acqinfo>
<accessrestrict id="aspace_ce10e8149b77a96cf2d89760ce7718a2">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<userestrict id="aspace_ec5aa6ba0ff3e35233bf506b101861fe">
<head>Conditions Governing Use</head>
<p>The Records Concerning Real Property and Legal Transactions near Cripple Creek, Colorado is the physical property of the Beinecke Rare Book and Manuscript Library, Yale University. Literary rights, including copyright, belong to the authors or their legal heirs and assigns. For further information, consult the appropriate curator.</p>
</userestrict>
<prefercite id="aspace_242d8271267f835bfb6b662b3f53d14c">
<head>Preferred Citation</head>
<p>Records Concerning Real Property and Legal Transactions near Cripple Creek, Colorado. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<processinfo id="aspace_ee3b0c6a416182914bf98dda10dbadc3">
<head>Processing Information</head>
<p>In 1997, staff at the Beinecke Rare Book and Manuscript Library augmented a detailed inventory of the materials based on descriptions provided by the dealer. This inventory provided the basis for this guide.</p>
</processinfo>
<bioghist id="aspace_ad2b6d685bd726edd46594c33a1e4d45">
<head>History of the Cripple Creek Region, Colorado</head>
<p>The Cripple Creek Region encompasses land surrounding the communities of Cripple Creek and Victor in Colorado, southwest of Colorado Springs near the base of Pikes Peak. On October 20, 1890, Robert Miller Womack (1844-1909) discovered a deposit of rich gold ore, which he called the El Paso Lode. Within three years, the population of the region increased from five hundred to over ten thousand. The increasing population, as well as political differences between area miners and mine owners, resulted in the division of El Paso County and a portion of Fremont County to create Teller County in March 1899. The population of the region declined steadily during the early twentieth century as the mines became exhausted and the cost of mining rose relative to the price of gold. Mining increased briefly in 1934 when the federal government raised the price of gold, but all gold mines ceased operation during World War II. Some mines reopened after the war, but all mines in the district were closed by 1961.</p>
</bioghist>
<scopecontent id="aspace_99e17b3415655d34c1a4170e0f51e80c">
<head>Scope and Contents</head>
<p>Manuscript and printed indexes and summary volumes prepared by regional abstract companies to record the history of real property titles and other financial and legal transactions in Fremont, Teller, and El Paso counties in Colorado, 1861-1972, with the bulk of the collection dating from the height of the Cripple Creek gold rush, 1890-1910. The records consist chiefly of summary accounts created by regional abstract companies from official records maintained in the Fremont, Teller, and El Paso county clerks' offices to document the acquisition and transfer of real property, mining claims, powers of attorney, and tax delinquencies. The records created by abstract companies are accompanied by small groups of business records from local institutions and individuals, as well as 22 printed maps and one disbound volume of plat maps from the region.</p>
<p>The records for many of the abstract companies include indices, abstracts arranged by date and type, and records related to sales of real estate for delinquent taxes. Abstract companies represented in the collection include Colorado Springs Abstract Company; Cripple Creek Abstract Company; Cripple Creek District Abstract Company; Cripple Creek, Teller County, Abstract Company; El Paso and Fremont Abstract Company; El Paso County Abstract Company; El Paso County Abstract and Title Guaranty Company; Security Abstract & Title Company; Smith, Barton, McDonald & Co.; Teller and El Paso Abstract Company; and Teller County Abstract Company.</p>
<p>The collection includes a single volume created by the City Treasurer of Cripple Creek Colorado from April 7, 1897 to April 19, 1899, a small group of material created by local businesses, a small amount of financial records for the United Mine Workers of America in 1933, and groups of material created by attorney Hildreth Frost and mining engineer Arthur J. Ventress.</p>
<p>Businesses and organizations whose histories are documented include the Colorado Trading and Transfer Company; Cripple Creek State Bank; First National Bank of Cripple Creek; Golden Cycle Land Corporation; Gould Consolidated Mining Company; Lind Auto Service; Mary McKinney Mining Company; Mechanics' and Traders' Insurance Company of New Orleans; Stratton-Independence Ltd.; and Western Union Telegraph Company.</p>
<p>Maps in the collection chiefly document mining operations in the region. Locations include Allman, Arequa,Cameron, Cripple Creek, Gillett, Goldfield, Independence, Lawrence, and Victor. Several maps also document discrete gold mines; one map depicts the grounds of the Myron Stratton Home in Colorado Springs, Colorado.</p>
</scopecontent>
<arrangement id="aspace_83f0e0149f7bacaa4e0b89feb446f0e9">
<head>Arrangement</head>
<p>Organized into five series: I. Records of Identified Abstract Companies 1871-circa 1940. II. Records of Unidentified Abstract Companies, 1861-1940. III. Records of Businesses and Organizations, circa 1895-circa 1972. IV. Records of Individuals, 1901-1926. V. Maps, 1892-1935.</p>
</arrangement>
<controlaccess>
<subject identifier="http://id.loc.gov/authorities/subjects/sh90002691"
source="lcsh">
<part localtype="topical">Mining districts</part>
<part localtype="geographic">Colorado</part>
</subject>
<subject source="local">
<part localtype="topical">Gold mines and mining</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek</part>
</subject>
<subject source="local">
<part localtype="topical">Gold mines and mining</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek Region</part>
</subject>
<subject source="local">
<part localtype="topical">Mineral industries</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek</part>
</subject>
<subject source="local">
<part localtype="topical">Mineral industries</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek Region</part>
</subject>
<subject source="local">
<part localtype="topical">Mines and mineral resources</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek</part>
</subject>
<subject source="local">
<part localtype="topical">Mines and mineral resources</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek Region</part>
</subject>
<subject source="local">
<part localtype="topical">Mines and mineral resources</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek</part>
<part localtype="genre_form">Maps</part>
</subject>
<subject source="local">
<part localtype="topical">Mines and mineral resources</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek Region</part>
<part localtype="genre_form">Maps</part>
</subject>
<subject source="local">
<part localtype="topical">Real property</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek</part>
</subject>
<subject source="local">
<part localtype="topical">Real property</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek Region</part>
</subject>
<geogname identifier="http://id.loc.gov/authorities/names/n79062837"
source="lcsh">
<part localtype="geographic">Cripple Creek (Colo.)</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Cripple Creek Region (Colo.)</part>
</geogname>
<genreform source="local">
<part localtype="genre_form">Maps (documents)</part>
<part localtype="geographic">Colorado</part>
<part localtype="geographic">Cripple Creek</part>
</genreform>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/480610"
id="ref11"
level="series">
<did>
<unittitle>Records of Identified Abstract Companies</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>21.7</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">72 boxes</physdesc>
<unitdatestructured altrender="1871-circa 1940"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1871">1871</fromdate>
<todate standarddate="1940">1940</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_a4b58a745dd53c16c6a733f7cf7155f0">
<head>Arrangement</head>
<p>This series is arranged alphabetically into ten subseries for each abstract company.</p>
<p>Companies representated in this series consist of Colorado Springs Abstract Company; Cripple Creek Abstract Company; Cripple Creek District Abstract Company; Cripple Creek, Teller County, Abstract Company; El Paso and Fremont Abstract Company; El Paso County Abstract Company; El Paso County Abstract and Title Guaranty Company; Security Abstract & Title Company; Smith, Barton, McDonald & Co.; Teller and El Paso Abstract Company; Teller County Abstract Company.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/480611"
id="ref13"
level="subseries">
<did>
<unittitle>Colorado Springs Abstract Company</unittitle>
<unitdatestructured altrender="1871-1935" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1871">1871</fromdate>
<todate standarddate="1935">1935</todate>
</daterange>
</unitdatestructured>
</did>
<bioghist id="aspace_9b84136c3ae8613c179d4ea93f35fd3e">
<head>Biographical/Historical note</head>
<p>Colorado Springs Abstract Co. was an abstract company based in Colorado Springs, Colorado, 1890-circa 1909.</p>
</bioghist>
<arrangement id="aspace_cd69c5713e5804e26d989919af8d95bf">
<head>Arrangement</head>
<p>This subseries is arranged under four headings: Indices, Abstracts of Legal Instruments in El Paso and Teller Counties by Date, Abstracts of Legal Instruments in El Paso County by Type, Sale Records for Delinquent Tax in Teller County</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/480612"
id="ref14"
level="file">
<did>
<unittitle>Indices</unittitle>
<unitdatestructured altrender="circa 1878-1905"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878">1878</fromdate>
<todate standarddate="1905">1905</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_83c371dbaf3c83827bb43c5853cb5513">
<head>Arrangement</head>
<p>Arranged chronologically.</p>
</arrangement>
<c altrender="/repositories/11/archival_objects/480613"
id="ref15"
level="file">
<did>
<unittitle>Index to Judgments, El Paso County</unittitle>
<unitdatestructured altrender="circa 1878-circa 1939"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1878">1878</fromdate>
<todate standarddate="1939">1939</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61995 /locations/9"
containerid="39002091635194"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1 Oversize</container>
</did>
<scopecontent id="aspace_6eb205620a90afab537b12b9a1ada607">
<head>Scope and Contents</head>
<p>Alphabetical index of judgments that includes the debtor, creditor, case number, amounts, and notes.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/480614"
id="ref17"
level="file">
<did>
<unittitle>Index to Tax Sale Records, Lands and Mines</unittitle>
<unitdatestructured altrender="1881-1905" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1881">1881</fromdate>
<todate standarddate="1905">1905</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61996 /locations/4051"
containerid="39002091635202"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">2 Oversize</container>
</did>
<scopecontent id="aspace_781df3f65529ac365807f806dc5ff8af">
<head>Scope and Contents</head>
<p>Index to mines in Ranges 60-71, arranged by range, township, and section. Includes an alphabetical list of mining claims.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/480615"
id="ref19"
level="file">
<did>
<unittitle>Index to Tax Sale Records, Lots</unittitle>
<unitdatestructured altrender="1891-1904" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1891">1891</fromdate>
<todate standarddate="1904">1904</todate>
</daterange>
</unitdatestructured>
<physdesc id="aspace_1663bd79159fabbbd1bc0b1073aae4ec">(1 volume)</physdesc>
<container altrender="/repositories/11/top_containers/61997 /locations/4051"
containerid="39002091635210"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">3 Oversize</container>
</did>
<scopecontent id="aspace_d9d76af72c58186d9bdf3cae326ac4fb">
<head>Scope and Contents</head>
<p>Index to lots sold in towns, additions, and subdivisions in El Paso County and Pueblo County, including Colorado City, Colorado Springs, Manitou Springs.</p>
<p>Laid-in list indexes the locations in the volume.</p>
</scopecontent>
</c>
</c>
<c altrender="/repositories/11/archival_objects/480616"
id="ref23"
level="file">
<did>
<unittitle>Abstracts of Legal Instruments in El Paso County by Type</unittitle>
<unitdatestructured altrender="1871-1896" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1871">1871</fromdate>
<todate standarddate="1896">1896</todate>
</daterange>
</unitdatestructured>
</did>
<arrangement id="aspace_4fb9bae4f73a21eddb53132beaaca6ab">
<head>Arrangement</head>
<p>Arranged alphabetically, then sequentially by volume title.</p>
</arrangement>
<scopecontent id="aspace_de0298f27059707ba5de36a2699d7542">
<head>Scope and Contents</head>
<p>Abstracts of legal instruments, probably in El Paso County.</p>
<p>Alphanumeric designations for volumes refer to designations applied to the original record book in the county clerk's office, not to a sequence of volumes in the abstract company's office. Consequently a bound volume may abstract several volumes of legal instruments.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/480617"
id="ref24"
level="file">
<did>
<unittitle>Volume A</unittitle>
<unitdatestructured altrender="1871-1887" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1871">1871</fromdate>
<todate standarddate="1887">1887</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61998 /locations/9"
containerid="39002091634007"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">1</container>
</did>
<scopecontent id="aspace_f5e60679e1c4fb3420b759e6b9acb4ba">
<head>Scope and Contents</head>
<p>Abstracts of plats of subdivision.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/480618"
id="ref26"
level="file">
<did>
<unittitle>Volume C and Volume D</unittitle>
<unitdatestructured altrender="1888-1889" label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1888">1888</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61998 /locations/9"
containerid="39002091634007"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">2</container>
</did>
<scopecontent id="aspace_2131d4bababf0be7c7f8da06fa275838">
<head>Scope and Contents</head>
<p>Abstracts of plats of subdivision.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/480619"
id="ref28"
level="file">
<did>
<unittitle>Volume 45, Volume 201, Volume 219, Volume 228</unittitle>
<unitdatestructured altrender="1881 February 10-1896 January 14"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1881-02-10">1881 February 10</fromdate>
<todate standarddate="1896-01-14">1896 January 14</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61998 /locations/9"
containerid="39002091634007"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">3</container>
</did>
<scopecontent id="aspace_d0c3dfc8192e740b860a228458e4535d">
<head>Scope and Contents</head>
<p>Volume 45 is split into two sections in the volume. The first section abstracts patents from February 10 to August 9, 1881. The second section abstracts patents from November 4, 1890, to January 14, 1896.</p>
<p>Volume 201 abstracts trusts and mortgages from November 8, 1894 to December 6, 1895.</p>
<p>Volume 219 abstracts trusts and mortgages from December 11, 1895, to January 14, 1896.</p>
<p>Volume 228 abstracts a variety of legal instruments from December 16, 1895, to January 14, 1896.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/480620"
id="ref30"
level="file">
<did>
<unittitle>Volume 46, Volume 177, and Volume183</unittitle>
<unitdatestructured altrender="1881 April 15-1895 January 8"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1881-04-15">1881 April 15</fromdate>
<todate standarddate="1895-01-08">1895 January 8</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61998 /locations/9"
containerid="39002091634007"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">4</container>
</did>
<scopecontent id="aspace_2cdf16d9e2a2589c24f0277c92a0b385">
<head>Scope and Contents</head>
<p>Abstracts of powers of attorney and trustee deeds.</p>
<p>Volume 46 dates from April 15, 1881, to June 25, 1892.</p>
<p>Volume 177 dates from June 28, 1894, to January 8, 1895.</p>
<p>Volume 183 dates from August 10 to October 15, 1894.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/480621"
id="ref32"
level="file">
<did>
<unittitle>Volume 116 (Warranties)</unittitle>
<unitdatestructured altrender="1890 July 31-1891 July 11"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1890-07-31">1890 July 31</fromdate>
<todate standarddate="1891-07-11">1891 July 11</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61999 /locations/9"
containerid="39002091634015"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480622"
id="ref33"
level="file">
<did>
<unittitle>Volume 117 (Quit Claim Deeds)</unittitle>
<unitdatestructured altrender="1890 October 8-1892 October 25"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1890-10-08">1890 October 8</fromdate>
<todate standarddate="1892-10-25">1892 October 25</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61999 /locations/9"
containerid="39002091634015"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480623"
id="ref34"
level="file">
<did>
<unittitle>Volume 118 (Trust Deeds)</unittitle>
<unitdatestructured altrender="1890 February 13-September 29"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1890-02-13">1890 February 13</fromdate>
<todate standarddate="1890-09-29">1890 September 29</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/61999 /locations/9"
containerid="39002091634015"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">5</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480624"
id="ref35"
level="file">
<did>
<unittitle>Volume 128 (Warranties)</unittitle>
<unitdatestructured altrender="1891 July 13-1892 February 24"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1891-07-13">1891 July 13</fromdate>
<todate standarddate="1892-02-24">1892 February 24</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62000 /locations/9"
containerid="39002091634023"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">8</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480625"
id="ref36"
level="file">
<did>
<unittitle>Volume 141 (Dismissals, Judgments, Levies, Liens, <emph render="italic">Lis Pendens</emph>, and Releases)</unittitle>
<unitdatestructured altrender="1892 July 19-1894 December 4"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892-07-19">1892 July 19</fromdate>
<todate standarddate="1894-12-04">1894 December 4</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62000 /locations/9"
containerid="39002091634023"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">9</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480626"
id="ref37"
level="file">
<did>
<unittitle>Volume 144 (Warranties in the Hayden Placer Company subdivision near Fremont, Colorado)</unittitle>
<unitdatestructured altrender="1892 February 16-1896 February 27"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892-02-16">1892 February 16</fromdate>
<todate standarddate="1896-02-27">1896 February 27</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62000 /locations/9"
containerid="39002091634023"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">6</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480627"
id="ref38"
level="file">
<did>
<unittitle>Volume 147 (Warranties)</unittitle>
<unitdatestructured altrender="1892 July 30-1893 April 12"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892-07-30">1892 July 30</fromdate>
<todate standarddate="1893-04-12">1893 April 12</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62001 /locations/9"
containerid="39002091634031"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480628"
id="ref39"
level="file">
<did>
<unittitle>Volume 148 (Warranties)</unittitle>
<unitdatestructured altrender="1893 April 12-December 20"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-04-12">1893 April 12</fromdate>
<todate standarddate="1893-12-20">1893 December 20</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62001 /locations/9"
containerid="39002091634031"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480629"
id="ref40"
level="file">
<did>
<unittitle>Volume 150 (Variety of Legal Instruments)</unittitle>
<unitdatestructured altrender="1892 July 6-1893 July 11"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892-07-06">1892 July 6</fromdate>
<todate standarddate="1893-07-11">1893 July 11</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62001 /locations/9"
containerid="39002091634031"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480630"
id="ref41"
level="file">
<did>
<unittitle>Volume 152 (Quit Claim Deeds)</unittitle>
<unitdatestructured altrender="1892 October 25-1894 May 21"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1892-10-25">1892 October 25</fromdate>
<todate standarddate="1894-05-21">1894 May 21</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62001 /locations/9"
containerid="39002091634031"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">7</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480631"
id="ref42"
level="file">
<did>
<unittitle>Volume 155 (Trusts)</unittitle>
<unitdatestructured altrender="1893 March 3-1896 January 13"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-03-03">1893 March 3</fromdate>
<todate standarddate="1896-01-13">1896 January 13</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62002 /locations/9"
containerid="39002091634049"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480632"
id="ref43"
level="file">
<did>
<unittitle>Volume 157 (Trustee Deeds)</unittitle>
<unitdatestructured altrender="1893 March 29-1896 January 11"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-03-29">1893 March 29</fromdate>
<todate standarddate="1896-01-11">1896 January 11</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62002 /locations/9"
containerid="39002091634049"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480633"
id="ref44"
level="file">
<did>
<unittitle>Volume 158 (Warranties)</unittitle>
<unitdatestructured altrender="1893 February 23-1894 June 4"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-02-23">1893 February 23</fromdate>
<todate standarddate="1894-06-04">1894 June 4</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62002 /locations/9"
containerid="39002091634049"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480634"
id="ref45"
level="file">
<did>
<unittitle>Volume 159 (Trusts)</unittitle>
<unitdatestructured altrender="1894 July 3-1896 January 17"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-07-03">1894 July 3</fromdate>
<todate standarddate="1896-01-17">1896 January 17</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62002 /locations/9"
containerid="39002091634049"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">8</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480635"
id="ref46"
level="file">
<did>
<unittitle>Volume 161 (Releases)</unittitle>
<unitdatestructured altrender="1893 February 17-1894 January 2"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-02-17">1893 February 17</fromdate>
<todate standarddate="1894-01-02">1894 January 2</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62003 /locations/9"
containerid="39002091634056"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480636"
id="ref47"
level="file">
<did>
<unittitle>Volume 162 (Assignments, Trusts, and Mortgages)</unittitle>
<unitdatestructured altrender="1893 April 8-1894 October 26"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-04-08">1893 April 8</fromdate>
<todate standarddate="1894-10-26">1894 October 26</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62003 /locations/9"
containerid="39002091634056"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">20</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480637"
id="ref48"
level="file">
<did>
<unittitle>Volume 164 (Variety of Legal Instruments)</unittitle>
<unitdatestructured altrender="1893 July 10-1894 January 11"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-07-10">1893 July 10</fromdate>
<todate standarddate="1894-01-11">1894 January 11</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62003 /locations/9"
containerid="39002091634056"
id="aspace_ref48_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref48_c2" localtype="folder" parent="aspace_ref48_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480638"
id="ref49"
level="file">
<did>
<unittitle>Volume 166 (Warranties)</unittitle>
<unitdatestructured altrender="1893 December 20-1894 June 8"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1893-12-20">1893 December 20</fromdate>
<todate standarddate="1894-06-08">1894 June 8</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62003 /locations/9"
containerid="39002091634056"
id="aspace_ref49_c1"
label="Mixed Materials"
localtype="box">9</container>
<container id="aspace_ref49_c2" localtype="folder" parent="aspace_ref49_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480639"
id="ref50"
level="file">
<did>
<unittitle>Volume 167 (Variety of Legal Instruments)</unittitle>
<unitdatestructured altrender="1894 January 11-June 5"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-01-11">1894 January 11</fromdate>
<todate standarddate="1894-06-05">1894 June 5</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62004 /locations/9"
containerid="39002091634064"
id="aspace_ref50_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref50_c2" localtype="folder" parent="aspace_ref50_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480640"
id="ref51"
level="file">
<did>
<unittitle>Volume 168 (Releases)</unittitle>
<unitdatestructured altrender="1894 January 3-December 12"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-01-03">1894 January 3</fromdate>
<todate standarddate="1894-12-12">1894 December 12</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62004 /locations/9"
containerid="39002091634064"
id="aspace_ref51_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref51_c2" localtype="folder" parent="aspace_ref51_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480641"
id="ref52"
level="file">
<did>
<unittitle>Volume 170 (Trusts)</unittitle>
<unitdatestructured altrender="1894 March 9-1896 January 9"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-03-09">1894 March 9</fromdate>
<todate standarddate="1896-01-09">1896 January 9</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62004 /locations/9"
containerid="39002091634064"
id="aspace_ref52_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref52_c2" localtype="folder" parent="aspace_ref52_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480642"
id="ref53"
level="file">
<did>
<unittitle>Volume 174 (Variety of Legal Instruments)</unittitle>
<unitdatestructured altrender="1894 June 7-December 29"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-06-07">1894 June 7</fromdate>
<todate standarddate="1894-12-29">1894 December 29</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62004 /locations/9"
containerid="39002091634064"
id="aspace_ref53_c1"
label="Mixed Materials"
localtype="box">10</container>
<container id="aspace_ref53_c2" localtype="folder" parent="aspace_ref53_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480643"
id="ref54"
level="file">
<did>
<unittitle>Volume 175 (Quit Claim Deeds)</unittitle>
<unitdatestructured altrender="1894 January 26-1895 October 26"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-01-26">1894 January 26</fromdate>
<todate standarddate="1895-10-26">1895 October 26</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62005 /locations/9"
containerid="39002091634072"
id="aspace_ref54_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_ref54_c2" localtype="folder" parent="aspace_ref54_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480644"
id="ref55"
level="file">
<did>
<unittitle>Volume 176 (Dismissals, Judgments, Levies, Liens, <emph render="italic">Lis Pendens</emph>, and Releases)</unittitle>
<unitdatestructured altrender="1894 December 4-1896 January 14"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-12-04">1894 December 4</fromdate>
<todate standarddate="1896-01-14">1896 January 14</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62005 /locations/9"
containerid="39002091634072"
id="aspace_ref55_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_ref55_c2" localtype="folder" parent="aspace_ref55_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/480645"
id="ref56"
level="file">
<did>
<unittitle>Volume 177 (Powers of Attorney)</unittitle>
<unitdatestructured altrender="1894 June 28-1895 January 7"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1894-06-28">1894 June 28</fromdate>
<todate standarddate="1895-01-07">1895 January 7</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/62005 /locations/9"
containerid="39002091634072"
id="aspace_ref56_c1"
label="Mixed Materials"
localtype="box">11</container>
<container id="aspace_ref56_c2" localtype="folder" parent="aspace_ref56_c1">29</container>