-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1241.xml
4932 lines (4932 loc) · 261 KB
/
1241.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.musquiz">beinecke.musquiz</recordid>
<otherrecordid localtype="BIB">3546247</otherrecordid>
<filedesc>
<titlestmt>
<titleproper>Guide to the Luis Alberto Guajardo Collection of Músquiz, Mexico Records
</titleproper>
<titleproper localtype="filing">Luis Alberto Guajardo Collection of Músquiz, Mexico Records</titleproper>
<author>by Beinecke Staff and Alison Clemens</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>August 1993</date>
<num>WA MSS S-1482</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">3546247</num>.</p>
</controlnote>
<controlnote localtype="onsite">
<p>Boxes: 1-17</p>
</controlnote>
<controlnote localtype="digital">
<p>This collection contains <num localtype="objects" altrender="6">6</num> published digital objects. And those objects are comprised of <num localtype="files" altrender="541">541</num> digital files.</p>
</controlnote>
</notestmt>
</filedesc>
<maintenancestatus value="derived"/>
<maintenanceagency countrycode="US">
<agencycode>US-CtY-BR</agencycode>
<agencyname>Beinecke Rare Book and Manuscript Library</agencyname>
</maintenanceagency>
<languagedeclaration>
<language langcode="eng">English</language>
<script scriptcode="Latn">Latin</script>
<descriptivenote>
<p>Finding aid written in English.</p>
</descriptivenote>
</languagedeclaration>
<conventiondeclaration>
<abbr>beinecke manuscript unit archival processing manual</abbr>
<citation>translation missing: en.enumerations.resource_finding_aid_description_rules.beinecke manuscript unit archival processing manual</citation>
</conventiondeclaration>
<rightsdeclaration>
<abbr>CC0</abbr>
<citation href="https://creativecommons.org/publicdomain/zero/1.0/"/>
<descriptivenote>
<p>Finding aid description and metadata in Archives at Yale are licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication. This means that anyone may copy, modify, and distribute this descriptive metadata without restriction or permission. The CC0 license is explained in full on the Creative Commons website: <ref href="https://creativecommons.org/publicdomain/zero/1.0/">CC0 1.0 Universal (CC0 1.0) Public Domain Dedication</ref>. More information is available on our <ref href="https://archives.yale.edu/help">Help page</ref>.</p>
</descriptivenote>
</rightsdeclaration>
<localcontrol localtype="findaidstatus">
<term>under_revision</term>
</localcontrol>
<maintenancehistory>
<maintenanceevent>
<eventtype value="derived"/>
<eventdatetime>2025-01-09T00:18:30-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:18</eventdescription>
</maintenanceevent>
</maintenancehistory>
</control>
<archdesc altrender="/repositories/11/resources/1241" level="collection">
<did>
<unittitle>Luis Alberto Guajardo Collection of Músquiz, Mexico Records</unittitle>
<unitid>WA MSS S-1482</unitid>
<repository>
<corpname>
<part>Beinecke Rare Book and Manuscript Library</part>
</corpname>
</repository>
<langmaterial>
<language langcode="spa">Spanish; Castilian</language>
</langmaterial>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>7.09</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">17 boxes</physdesc>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1553">1553</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<unitdatestructured label="creation" unitdatetype="bulk">
<daterange>
<fromdate standarddate="1801">1801</fromdate>
<todate standarddate="1889">1889</todate>
</daterange>
</unitdatestructured>
<abstract id="aspace_e4b59b32a4848028acf9cc8fd95d146e">The Luis Alberto Guajardo Collection of Músquiz, Mexico Records contains administrative records from the town of Músquiz, Coahuila, Mexico. The records were collected by Luis Alberto Guajardo, a general in the Mexican Army. Guajardo's military travels allowed him to visit local record offices in Coahuila and research the history of the region. This research led to the formulation of Guajardo's Apuntes Datos y Noticias Para la Historia de Coahuila, a history of the Coahuila region. The Records are arranged in five overlapping chronologies. This order has been maintained from an earlier, unknown processor, perhaps Guajardo himself. The chronologies include circulars issued by the Coahuila government; religious, legal, military, land, water, and mining records pertaining to Musquiz and the Coahuila region; census records, including the documentation of Indians, widows, slaves, and vassals; legal records, including records administering issues of violence against women; documents pertaining to the administration of Indian affairs, particularly those of the Seminole and Apache tribes; and indices of correspondence and decrees in Coahuila, wills, and court proceedings. Also included is material on the founding and history of the Texas region, as well as English language manuscript land petitions, citizenship records, and legal proceedings of Thomas Jefferson Chambers.</abstract>
<origination label="Creator">
<persname rules="aacr" source="local">
<part localtype="agent_person">Guajardo, Luis Alberto</part>
</persname>
</origination>
</did>
<acqinfo id="aspace_4e3195f43d0474a49214e6f3e109a51d">
<head>Immediate Source of Acquisition</head>
<p>Gift of Charles and Lindley Eberstadt, 1961.</p>
</acqinfo>
<userestrict id="aspace_95a6b208f54ee5b04c661838ff59c334">
<head>Conditions Governing Use</head>
<p>Luis Alberto Guajardo Collection of Músquiz, Mexico Records 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_9735afc2e023f52a4e845ec6dc551fd3">
<head>Preferred Citation</head>
<p>Luis Alberto Guajardo Collection of Músquiz, Mexico Records. Yale Collection of Western Americana, Beinecke Rare Book and Manuscript Library.</p>
</prefercite>
<accessrestrict id="aspace_81cfbf394ce1352d7919e65f9164ca87">
<head>Conditions Governing Access</head>
<p>The materials are open for research.</p>
</accessrestrict>
<processinfo id="aspace_997deb9ec70163bc1e50784fb6576203">
<head>Processing Information</head>
<p>Collections are processed to a variety of levels, depending on the work necessary to make them usable, their perceived research value, the availability of staff, competing priorities, and whether or not further accruals are expected. The library attempts to provide a basic level of preservation and access for all collections, and does more extensive processing of higher priority collections as time and resources permit.</p>
<p>This collection received a basic level of processing in 2014, including rehousing and minimal organization. Prior processing in the summer of 1993 found that the papers had been arranged in five chronological series. Many documents were dated in pencil by an earlier unknown processor. Without disturbing these series, the chronological order within each series was improved, and the material was placed in archival folders and boxes. No bound documents were disbound.</p>
<p>Information included in the Description of Papers note and Collection Contents section is drawn from information supplied with the collection and from an initial survey of the contents. Folder titles appearing in the contents list below are often based on those provided by the creator or previous custodian. Titles have not been verified against the contents of the folders in all cases. Otherwise, folder titles are supplied by staff during initial processing.</p>
<p>This finding aid may be updated periodically to account for new acquisitions to the collection and/or revisions in arrangement and description.</p>
</processinfo>
<relatedmaterial id="aspace_d70bb65d81448f481dba308ea4dcfa89">
<head>Associated Materials</head>
<p>Associated material: Luis Alberto Guajardo Papers on the History of Coahuila (WA MSS S-668). Beinecke Rare Book and Manuscript Library, Yale University.</p>
</relatedmaterial>
<scopecontent id="aspace_1f76bd4c1da7a691210ed6f05383d92e">
<head>Scope and Contents</head>
<p>The Luis Alberto Guajardo Collection of Músquiz, Mexico Records contains administrative records from the town of Músquiz, Coahuila, Mexico. The records were collected by Luis Alberto Guajardo, a general in the Mexican Army. Guajardo's military travels allowed him to visit local record offices in Coahuila to research the history of the region, collect documents, and make copies of original documents. This research led to the formulation of Guajardo's Apuntes Datos y Noticias Para la Historia de Coahuila, a history of the Coahuila region. Much of the material contained in this collection appears to have been used in the creation of the Apuntes Datos y Noticias.</p>
<p>The collection is arranged in five overlapping chronologies, apparently created by Guajardo. In some areas of this collection, his manuscript notes are present and indicate how he has grouped material.</p>
<p>The First Chronology is the largest and includes administrative records, particularly census records, land records, legal records, and records pertaining to the administration of Indian affairs.</p>
<p>The Second Chronology is very similar to the First Chronology and includes administrative records and circulars issued by the Coahuila government.</p>
<p>The Third Chronology includes religious, census, property, and legal records pertaining to Músquiz and the Coahuila region.</p>
<p>The Fourth Chronology contains administrative records for the Coahuila region, including census, land, and water records; census rolls, including rolls of Indian (particularly Seminole and Apache) residents; records pertaining to mining in the Santa Rosa region; an account of the founding of Piedras Negras; and records pertaining to the military budget.</p>
<p>The Fifth Chronology includes indices of correspondence and decrees in Coahuila, wills, and court proceedings. The land petitions, citizenship, and legal proceedings of Thomas Jefferson Chambers are especially well documented and include manuscripts in English. This chronology also includes material
on the founding and history of the Texas region.</p>
<p>Luis Alberto Guajardo's Folders (now empty) consists of folders Guajardo used. When the collection was processed in 1993 these folders were empty, but the folders have been kept with the collection because they include Guajardo's notes and may provide information regarding how he organized the collection.</p>
</scopecontent>
<bioghist id="aspace_f6d809df193997f6402470794aa46d73">
<head>Biographical / Historical</head>
<p>Luis Alberto Guajardo (1872-1925) was a general in the Mexican Army. He was born in Músquiz, Coahuila and participated in the Mexican Revolution. His military travels allowed him to visit local record offices in Coahuila and research the history of the region, as well as make copies of original documents. This research led to the formulation of Apuntes Datos y Noticias Para la Historia de Coahuila, a history of the Coahuila region.</p>
</bioghist>
<controlaccess>
<subject source="local">
<part localtype="topical">Indians of Mexico</part>
<part localtype="geographic">Mexico</part>
<part localtype="geographic">Coahuila and Texas</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85065520"
source="lcsh">
<part localtype="topical">Indians of North America</part>
<part localtype="geographic">Southwest, New</part>
</subject>
<subject source="local">
<part localtype="topical">Land grants</part>
<part localtype="geographic">Mexico</part>
<part localtype="geographic">Coahuila and Texas (Mexico)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh90001971"
source="lcsh">
<part localtype="topical">Land grants</part>
<part localtype="geographic">Texas</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2010101911"
source="lcsh">
<part localtype="topical">Mineral industries</part>
<part localtype="geographic">Mexico</part>
</subject>
<subject source="local">
<part localtype="topical">Cattle trade</part>
<part localtype="geographic">Mexico</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85005883"
source="lcsh">
<part localtype="topical">Apache Indians</part>
</subject>
<subject source="local">
<part localtype="topical">Cholera</part>
<part localtype="geographic">Mexico</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85028785"
source="lcsh">
<part localtype="topical">Comanche Indians</part>
</subject>
<subject source="local">
<part localtype="topical">Public health</part>
<part localtype="geographic">Mexico</part>
<part localtype="geographic">Coahuila and Texas (Mexico)</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh85119939"
source="lcsh">
<part localtype="topical">Seminole Indians</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh93007871"
source="lcsh">
<part localtype="topical">Women</part>
<part localtype="geographic">Mexico</part>
</subject>
<subject source="local">
<part localtype="topical">Women</part>
<part localtype="topical">Social conditions</part>
<part localtype="geographic">Mexico</part>
</subject>
<subject source="local">
<part localtype="topical">Women</part>
<part localtype="topical">Violence against</part>
<part localtype="geographic">Mexico</part>
</subject>
<geogname source="local">
<part localtype="geographic">Coahuila and Texas (Mexico)</part>
<part localtype="topical">Colonization</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Coahuila and Texas (Mexico)</part>
<part localtype="topical">Politics and government</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n81035576"
source="lcsh">
<part localtype="geographic">Coahuila (Mexico : State)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85084582"
source="lcsh">
<part localtype="geographic">Mexico</part>
<part localtype="topical">History</part>
<part localtype="temporal">1821-1861</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85084573"
source="lcsh">
<part localtype="geographic">Mexico</part>
<part localtype="topical">History</part>
<part localtype="temporal">To 1810</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n83312023"
source="lcsh">
<part localtype="geographic">Músquiz (Mexico)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/names/n84076406"
source="lcsh">
<part localtype="geographic">Provincias Internas (New Spain)</part>
</geogname>
<geogname identifier="http://id.loc.gov/authorities/subjects/sh85134262"
source="lcsh">
<part localtype="geographic">Texas</part>
<part localtype="topical">History</part>
<part localtype="temporal">To 1846</part>
</geogname>
<geogname source="local">
<part localtype="geographic">Texas</part>
<part localtype="topical">Emigration and immigration</part>
</geogname>
<subject source="local">
<part localtype="topical">Mining engineering</part>
<part localtype="geographic">Mexico</part>
</subject>
<subject identifier="http://id.loc.gov/authorities/subjects/sh2001009918"
source="lcsh">
<part localtype="topical">Mines and mineral resources</part>
<part localtype="geographic">Mexico</part>
</subject>
<persname source="local">
<part localtype="agent_person">Chambers, Thomas Jefferson, 1802-1865</part>
</persname>
<persname rules="aacr" source="local">
<part localtype="agent_person">Guajardo, Luis Alberto</part>
</persname>
</controlaccess>
<dsc>
<c altrender="/repositories/11/archival_objects/453003"
id="ref11"
level="series">
<did>
<unittitle>First Chronology</unittitle>
<unitid>Series I</unitid>
<physdescstructured coverage="whole" physdescstructuredtype="spaceoccupied">
<quantity>4.17</quantity>
<unittype>Linear Feet</unittype>
</physdescstructured>
<physdesc localtype="container_summary">10 boxes</physdesc>
</did>
<arrangement id="aspace_ac9fd5a3e56e07740d02488dbca413ec">
<head>Arrangement</head>
<p>Arranged in chronological order.</p>
</arrangement>
<scopecontent id="aspace_4788e056602995d9826194388c56b398">
<head>Scope and Contents</head>
<p>The material contained in this chronology primarily consists of administrative records, particularly census records and land records. Some of the documents are bound together and others show signs of having once been bound.</p>
<p>Material contained within the First Chronology includes land grant petitions, particularly in the Santa Rosa Maria del Sacramento region; census records indicating widows, slaves, and vassals; records documenting the administration of legal matters pertaining to violence against women; records describing efforts to manage public health issues, particularly cholera and syphilis; and records pertaining to government management of Indian groups in the 18th and 19th centuries, particularly Apache groups.</p>
</scopecontent>
<c altrender="/repositories/11/archival_objects/453004"
id="ref12"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1740">1740</fromdate>
<todate standarddate="1759">1759</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref12_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref12_c2" localtype="folder" parent="aspace_ref12_c1">1</container>
</did>
<scopecontent id="aspace_e82f5862926c83daa462329639e5bfec">
<head>Scope and Contents</head>
<p>Includes land grant petitions and administrative records issued by Pablo Mauricio de la Garza Falcon and Miguel de la Garza Falcon.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/453005"
id="ref13"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1763">1763</fromdate>
<todate standarddate="1765">1765</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref13_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref13_c2" localtype="folder" parent="aspace_ref13_c1">2</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453006"
id="ref14"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1766">1766</fromdate>
<todate standarddate="1769">1769</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref14_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref14_c2" localtype="folder" parent="aspace_ref14_c1">3</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453007"
id="ref15"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1770">1770</fromdate>
<todate standarddate="1775">1775</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref15_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref15_c2" localtype="folder" parent="aspace_ref15_c1">4</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453008"
id="ref16"
level="file">
<did>
<unittitle>Will of José Gregorio Sanchez (probably labeled by Guajardo)</unittitle>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1775">1775</fromdate>
<todate standarddate="1809">1809</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref16_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref16_c2" localtype="folder" parent="aspace_ref16_c1">5</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453009"
id="ref17"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1776">1776</fromdate>
<todate standarddate="1779">1779</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref17_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref17_c2" localtype="folder" parent="aspace_ref17_c1">6</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453010"
id="ref18"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1780">1780</fromdate>
<todate standarddate="1782">1782</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref18_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref18_c2" localtype="folder" parent="aspace_ref18_c1">7</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453011"
id="ref19"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1783">1783</fromdate>
<todate standarddate="1784">1784</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref19_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref19_c2" localtype="folder" parent="aspace_ref19_c1">8</container>
</did>
<scopecontent id="aspace_373a4048bd74cb03fc2b4ec1d7bd332f">
<head>Scope and Contents</head>
<p>Includes census records and records of widows, slaves, and vassals.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/453012"
id="ref20"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1785">1785</fromdate>
<todate standarddate="1785">1785</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref20_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref20_c2" localtype="folder" parent="aspace_ref20_c1">9</container>
</did>
<scopecontent id="aspace_c9b5603b024f4c23adc9fda71a1bd1bd">
<head>Scope and Contents</head>
<p>Includes documents pertaining to the administration of Indian relations.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/453013"
id="ref21"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1786">1786</fromdate>
<todate standarddate="1787">1787</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59481 /locations/4051"
containerid="39002091543711"
id="aspace_ref21_c1"
label="Mixed Materials"
localtype="box">1</container>
<container id="aspace_ref21_c2" localtype="folder" parent="aspace_ref21_c1">10</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453014"
id="ref22"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1788">1788</fromdate>
<todate standarddate="1789">1789</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref22_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref22_c2" localtype="folder" parent="aspace_ref22_c1">11</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453015"
id="ref23"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1790">1790</fromdate>
<todate standarddate="1792">1792</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref23_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref23_c2" localtype="folder" parent="aspace_ref23_c1">12</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453016"
id="ref24"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1793">1793</fromdate>
<todate standarddate="1797">1797</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref24_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref24_c2" localtype="folder" parent="aspace_ref24_c1">13</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453017"
id="ref25"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1798">1798</fromdate>
<todate standarddate="1800">1800</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref25_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref25_c2" localtype="folder" parent="aspace_ref25_c1">14</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453018"
id="ref26"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1802">1802</fromdate>
<todate standarddate="1802">1802</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref26_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref26_c2" localtype="folder" parent="aspace_ref26_c1">15</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453019"
id="ref27"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1803">1803</fromdate>
<todate standarddate="1803">1803</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref27_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref27_c2" localtype="folder" parent="aspace_ref27_c1">16</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453020"
id="ref28"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1804">1804</fromdate>
<todate standarddate="1805">1805</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref28_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref28_c2" localtype="folder" parent="aspace_ref28_c1">17</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453021"
id="ref29"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1806">1806</fromdate>
<todate standarddate="1806">1806</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref29_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref29_c2" localtype="folder" parent="aspace_ref29_c1">18</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453022"
id="ref30"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1807">1807</fromdate>
<todate standarddate="1807">1807</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref30_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref30_c2" localtype="folder" parent="aspace_ref30_c1">19</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453023"
id="ref31"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1808">1808</fromdate>
<todate standarddate="1808">1808</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref31_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref31_c2" localtype="folder" parent="aspace_ref31_c1">20</container>
</did>
<scopecontent id="aspace_13d50d6b73f890674790c151baf0edff">
<head>Scope and Contents</head>
<p>Includes census records.</p>
</scopecontent>
</c>
<c altrender="/repositories/11/archival_objects/453024"
id="ref32"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1809">1809</fromdate>
<todate standarddate="1809">1809</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59482 /locations/4051"
containerid="39002091543729"
id="aspace_ref32_c1"
label="Mixed Materials"
localtype="box">2</container>
<container id="aspace_ref32_c2" localtype="folder" parent="aspace_ref32_c1">21</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453025"
id="ref33"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1810">1810</fromdate>
<todate standarddate="1810">1810</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref33_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref33_c2" localtype="folder" parent="aspace_ref33_c1">22</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453026"
id="ref34"
level="file">
<did>
<unitdatestructured altrender="1811-1812 June"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1811">1811</fromdate>
<todate standarddate="1812">1812</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref34_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref34_c2" localtype="folder" parent="aspace_ref34_c1">23</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453027"
id="ref35"
level="file">
<did>
<unitdatestructured altrender="1812 July-December"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1812">1812</fromdate>
<todate standarddate="1812">1812</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref35_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref35_c2" localtype="folder" parent="aspace_ref35_c1">24</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453028"
id="ref36"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1813">1813</fromdate>
<todate standarddate="1813">1813</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref36_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref36_c2" localtype="folder" parent="aspace_ref36_c1">25</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453029"
id="ref37"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1814">1814</fromdate>
<todate standarddate="1814">1814</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref37_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref37_c2" localtype="folder" parent="aspace_ref37_c1">26</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453030"
id="ref38"
level="file">
<did>
<unitdatestructured altrender="1815 January-March"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1815">1815</fromdate>
<todate standarddate="1815">1815</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref38_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref38_c2" localtype="folder" parent="aspace_ref38_c1">27</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453031"
id="ref39"
level="file">
<did>
<unitdatestructured altrender="1815 April-June"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1815">1815</fromdate>
<todate standarddate="1815">1815</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref39_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref39_c2" localtype="folder" parent="aspace_ref39_c1">28</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453032"
id="ref40"
level="file">
<did>
<unitdatestructured altrender="1815 July-December"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1815">1815</fromdate>
<todate standarddate="1815">1815</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref40_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref40_c2" localtype="folder" parent="aspace_ref40_c1">29</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453033"
id="ref41"
level="file">
<did>
<unitdatestructured altrender="1816 January-May"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1816">1816</fromdate>
<todate standarddate="1816">1816</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref41_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref41_c2" localtype="folder" parent="aspace_ref41_c1">30</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453034"
id="ref42"
level="file">
<did>
<unitdatestructured altrender="1816 June-December"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1816">1816</fromdate>
<todate standarddate="1816">1816</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref42_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref42_c2" localtype="folder" parent="aspace_ref42_c1">31</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453035"
id="ref43"
level="file">
<did>
<unitdatestructured altrender="1817 January-September"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1817">1817</fromdate>
<todate standarddate="1817">1817</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref43_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref43_c2" localtype="folder" parent="aspace_ref43_c1">32</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453036"
id="ref44"
level="file">
<did>
<unitdatestructured altrender="1817 October-December"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1817">1817</fromdate>
<todate standarddate="1817">1817</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref44_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref44_c2" localtype="folder" parent="aspace_ref44_c1">33</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453037"
id="ref45"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1818">1818</fromdate>
<todate standarddate="1818">1818</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59483 /locations/4051"
containerid="39002091543737"
id="aspace_ref45_c1"
label="Mixed Materials"
localtype="box">3</container>
<container id="aspace_ref45_c2" localtype="folder" parent="aspace_ref45_c1">34</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453038"
id="ref46"
level="file">
<did>
<unitdatestructured label="creation" unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1819">1819</fromdate>
<todate standarddate="1819">1819</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59484 /locations/4051"
containerid="39002091543745"
id="aspace_ref46_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref46_c2" localtype="folder" parent="aspace_ref46_c1">35</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453039"
id="ref47"
level="file">
<did>
<unitdatestructured altrender="1820 January-June"
label="creation"
unitdatetype="inclusive">
<daterange>
<fromdate standarddate="1820">1820</fromdate>
<todate standarddate="1820">1820</todate>
</daterange>
</unitdatestructured>
<container altrender="/repositories/11/top_containers/59484 /locations/4051"
containerid="39002091543745"
id="aspace_ref47_c1"
label="Mixed Materials"
localtype="box">4</container>
<container id="aspace_ref47_c2" localtype="folder" parent="aspace_ref47_c1">36</container>
</did>
</c>
<c altrender="/repositories/11/archival_objects/453040"
id="ref48"
level="file">
<did>
<unitdatestructured altrender="1820 July-December"
label="creation"