-
Notifications
You must be signed in to change notification settings - Fork 0
/
TagZoo.xml
executable file
·1052 lines (1052 loc) · 36.7 KB
/
TagZoo.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-stylesheet type="text/xsl" href="balisage-proceedings-html.xsl"?>
<!--<!DOCTYPE article SYSTEM "../../DTD/balisage-1-2.dtd">-->
<?xml-stylesheet type="text/css" href="balisage-author.css" title="Authoring" alternate="no"?>
<article xmlns="http://docbook.org/ns/docbook" version="5.0-subset Balisage-1.2"
xml:id="HR-23632987-8973">
<title>Raleigh's Discoveries in the New World</title>
<subtitle>The lure of vegetable culture</subtitle>
<info>
<abstract>
<para>In 1584, Queen Elizabeth I charged Sir Walter Raleigh to discover and colonize lands in
the New World on behalf of England. This article discusses the efforts and expeditions
organized under Raleigh's patronage to found a colony in the current-day North Carolina.
Going beyond the chronological history of the doomed Roanoke colony, the author provides
insights into relations between the colonists and their native counterparts, discusses the
botanical riches of the region, and argues that Raleigh's efforts did not end in failure, as
commonly might be thought.</para>
</abstract>
<author>
<personname>
<firstname>Tonia</firstname>
<othername>Renae</othername>
<surname>Gaillard</surname>
</personname>
<personblurb>
<para>A native of Eleajora, Dr. Gaillard completed her post-graduate studies in Colonial
American History in 2033. Following these studies, she became an Associate Professor at
DeBare State University before joining Quetrane University’s faculty. She has chaired the
university’s Department of History since 2048.</para>
<para>Dr. Gaillard’s extensive writings include <quote>The Politics Underlying the Salem
Witch Trials</quote>, <quote>Williamsburg’s Role in the Revolution</quote>,<emphasis
role="ital">Benjamin Franklin: Scientist, Inventor, and Politician</emphasis>, and
<emphasis role="ital">Native American Culture and the "True Faith."</emphasis> She is
currently working on a biography of Simon Kenton, whose role in pioneering Kentucky has
been overshadowed by fellow backwoodsman Daniel Boone.</para>
</personblurb>
<affiliation>
<jobtitle>Department Chair</jobtitle>
<orgname>Quetrane University</orgname>
</affiliation>
<email>tgaillard@quetrane.hist.edu</email>
</author>
<keywordset role="author">
<keyword>New World discoveries</keyword>
<keyword>American colonial history</keyword>
<keyword>English 16th century history</keyword>
</keywordset>
</info>
<section>
<title>Introduction</title>
<para>On March 25, 1584, Queen Elizabeth I of England charged Sir Walter Raleigh to<blockquote>
<para>discover, search, find out, and view such remote, heathen and barbarous lands,
countries, and territories, not actually possessed of any Christian Prince, nor inhabited
by Christian People</para>
<attribution><xref linkend="thorpe97"/></attribution>
</blockquote> That same year Raleigh sent two captains, Philip Amades and Arthur Barlowe, from
England to Hispaniola and the Canary Islands; from there, the captains were instructed to
scout the lands northeast of those already claimed by Spain, to wit, Florida. This land — now
encompassing the Carolinas and Virginia — was claimed on behalf of England and named
<quote>Virginia,</quote> in honor of the <quote>Virgin Queen.</quote></para>
<para>Information processing, especially text markup, was primitive in the colony. For example,
most text stores were in XML! Documents may have looked like this:
<programlisting><teiHeader>
<fileDesc>
<titleStmt>
<title>Farming in the New World</title>
...
</titleStmt>
</fileDesc>
</teiHeader></programlisting>
Notice the paired Tags: <code><title></code> and <code></title></code> and the
primitive use of indenting. Unusual features of the colonists data processing practices included:<variablelist>
<varlistentry>
<term>Tags</term>
<listitem>
<para>Meaningful descriptions of the information enclosed by the markers</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Balance</term>
<listitem>
<para>All markup is both opened and closed (or explicitly empty)</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<section>
<title>Securing a Permanent Colony in the Claimed Lands</title>
<para>With land claimed in the New World, an expedition was mounted to establish a settlement.
The first expedition failed. Led by Sir Richard Grenville in April 1585, it encompassed 600
men of which 105 remained in the colony while Grenville returned to England for additional
provisions. (<emphasis role="ital">See</emphasis>
<xref linkend="mul83"/>.) However, when almost a year passed without Grenville’s return, the
remainder of the expeditionary force took advantage of Sir Francis Drake’s arrival to seek
return passage to England. <footnote xml:id="mul74">
<para>It has been argued that the first expedition was not a failure. Richard Grenville did
return to the colony with additional provisions not long after Drake’s departure, and he
ordered 15 men, supposedly supplied for two years, to remain in the colony while he
returned for new settlers. However, it is unknown whether these men were present to greet
the subsequent expedition.</para>
</footnote>
</para>
<para>The second expedition, organized by John White in 1587, fared better. It sailed with seven
ships filled with Devon families intent upon establishing a colony in that part of Virginia
called Roanoke, a word deriving from the speech of native peoples. [<xref linkend="mul88"/>]
Two years after founding the <quote>Cittie of Raleigh,</quote> houses had been built for
almost all families residing in the colony, and the colony had celebrated the birth of its
first children born in the New World. The first child, grandchild of John White and child of
Ananias and Eleanor Dare, was been named Virginia in honor of the sovereign.</para>
<section>
<title>Native Plants and Wildlife</title>
<para>The European settlers found the New World abundant with commodities <quote>known to
yield victual and sustenance of man’s life</quote>. The first expeditionary force noted
that a great variety of berries grew wildly, including raspberries, blueberries, and
strawberries. Along with maize, native grain, which could be made into bread, grew in the
area. Two other plants — more properly called roots — which could be saved for winter
consumption were <quote>cassida</quote> and <quote>chyna.</quote> The settlers discovered
that while some roots could be eaten much in appearance as they were dug, others had to be
boiled before use as a foodstuff. As more fully described below, other plants included
beans, and several crops previously unknown to the Europeans: <itemizedlist>
<listitem>
<para><quote>macocqwer</quote> (gourds),</para>
</listitem>
<listitem>
<para><quote>melden</quote> (an herb),</para>
</listitem>
<listitem>
<para><quote>planta solis</quote> (sunflower — used in a type of bread, as well as for
broth),</para>
</listitem>
<listitem>
<para>peas (powdered in a mortar), and</para>
</listitem>
<listitem>
<para>potatoes.</para>
</listitem>
</itemizedlist>
</para>
<section>
<title>Gourds</title>
<para>The native people grew a variety of large broad-leafed, ground-covering vines which
produced what they called <quote>macocqwer</quote> or gourds. (<emphasis role="ital"
>See</emphasis>
<xref linkend="gourds"/>.) Varying in color among shades of green, yellow, and orange,
these gourds served a number of functions, not chief of which was as a food source. There
were two distinct types, soft-shelled and hard-shelled. Of particular interest to the
settlers were pumpkins; grown throughout the summer, this gourd remained in the fields
until late autumn’s frost. Following harvest, the gourd could be stored throughout the
winter and its flesh made into stews.</para>
<figure xml:id="gourds">
<title>Gourds</title>
<mediaobject>
<imageobject>
<imagedata format="jpg" fileref="19450212-2.jpg" width="50%"/>
</imageobject>
</mediaobject>
<caption>
<para>While gourds, pumpkins and squashes were new to the English, they were soon
discovered to be very useful for warding off starvation.</para>
</caption>
</figure>
<para>However, far more important was the hard-skinned gourd. The value of this gourd lay
not in its potential as a food source, but rather as a container and serving vessel. Once
dried, these gourds were cut and hollowed for use as storage containers, as well as for
bowls, ladles, cups, and other types of serving utensils. Indeed, since gourds grew in a
variety of shapes and sizes, particular gourds could be selected for their resemblance to
the items sought. For the adventurous, the durable objects could be carved and decorated
with plant dyes.</para>
</section>
<section>
<title>Tomatoes</title>
<para>Also new to the colonists was the tomato. (<emphasis role="ital">See</emphasis>
<xref linkend="Tomatoes"/>.) Tomatoes were described as thin-skinned succulent fruits with
pulpy interiors. Almost <quote>Bristol red</quote> in color, the fruit was somewhat round
in form and the size of a chicken’s egg — not anything approaching the size of modern,
cultivated varieties. Of particular importance was the plant’s fecundity. The flowering,
bush-like plant bore fruit over a period of months. Thus, a plant could produce as many as
15 tomatoes at a given time.</para>
<figure xml:id="Tomatoes">
<title>Tomatoes</title>
<mediaobject>
<imageobject>
<imagedata format="jpg" fileref="19450212-1.jpg" width="50%"/>
</imageobject>
</mediaobject>
<caption>
<para>Tomatoes were among the new fruits discovered in the New World.</para>
</caption>
</figure>
</section>
<section>
<title>Potatoes</title>
<para>Another root that proved beneficial was the potato. Similarly, to the
<quote>cassida</quote> mentioned earlier, potatoes were considered roots rather than
plants, as the edible portion of the plant lay underground. Given the curious nature of
this legume, several examples were brought back from the New World. In fact, Raleigh
attempted to cultivate the potato at his estate, Youghall, in Ireland.</para>
</section>
<section>
<title>Fruits and Nuts</title>
<para>The colony abounded with a wealth of fruits and nuts, some not previously known to the
Europeans. In addition to mulberries, strawberries, and blueberries already mentioned, one
of the more curious fruits found was called <quote>medlar</quote> by the natives. Medlar
was a fruit not unlike cherries in size and color, but with a much sweeter taste. An
equally unusual fruit was <quote>metaqvesvnnaqvk</quote>; notwithstanding its red fruit,
that plant’s more important feature lay in the cochinile insects which fed upon its
prickly thick leaves <footnote xml:id="mul90">
<para>In the 16th century, such insects were prized in the making of a vibrant red
dye.</para>
</footnote>.</para>
<para>Equally abundant in variety and size were nuts. In addition to chestnuts and walnuts,
the natives <quote>harvested</quote> no less than five types of <quote>acorns</quote>.
These somewhat small nuts were either dried in a manner similar to that used in England
for malt, or were boiled for broth.</para>
<table>
<caption>
<para>North American Native Plants</para>
</caption>
<col align="right" valign="top"/>
<col valign="top"/>
<col align="center" valign="top"/>
<thead>
<tr valign="top">
<th>Use</th>
<th>Plant Part</th>
<th>Examples</th>
</tr>
</thead>
<tbody>
<tr valign="top">
<td rowspan="8"><emphasis role="bold">Vegetables</emphasis></td>
</tr>
<tr valign="top">
<td rowspan="2">Seeds</td>
<td>Corn</td>
</tr>
<tr valign="top">
<td>Beans</td>
</tr>
<tr valign="top">
<td rowspan="3">Fruits</td>
<td>Squash</td>
</tr>
<tr valign="top">
<td>Peppers</td>
</tr>
<tr valign="top">
<td>Tomatoes</td>
</tr>
<tr valign="top">
<td rowspan="2">Roots</td>
<td>Potatoes</td>
</tr>
<tr valign="top">
<td>Sweet Potatoes</td>
</tr>
<tr valign="top">
<td rowspan="4"><emphasis role="bold">Teas</emphasis></td>
</tr>
<tr valign="top">
<td rowspan="2">Leaves</td>
<td>Mountain Mint (Namewuskons)</td>
</tr>
<tr valign="top">
<td>Dawn Mint (Wabinowusk)</td>
</tr>
<tr valign="top">
<td>Berries</td>
<td>Wintergreen</td>
</tr>
</tbody>
</table>
</section>
</section>
</section>
<appendix xml:id="mul83">
<title>The First Expeditionary Force’s Colony, 1585-1586 <footnote xml:id="mul5">
<para>This Appendix contains an actual list of the individuals who sailed to the Roanoke
Colony in 1585. (<emphasis role="ital">See</emphasis>
<citation>Durant, David N., <quote>Raleigh’s Lost Colony</quote>, Appendix I, Atheneum,
NY: 1981.</citation>)</para>
</footnote>
</title>
<itemizedlist>
<listitem>
<para>Master Philip Amades, Admirall of the countrie</para>
</listitem>
<listitem>
<para>Master Hariot</para>
</listitem>
<listitem>
<para>Master Acton</para>
</listitem>
<listitem>
<para>Master Edward Stafford</para>
</listitem>
<listitem>
<para>Thomas Luddington</para>
</listitem>
<listitem>
<para>Master Marvyn</para>
</listitem>
<listitem>
<para>Master Gardyner</para>
</listitem>
<listitem>
<para>Captaine Vaughan</para>
</listitem>
<listitem>
<para>Master Kendall</para>
</listitem>
<listitem>
<para>Master Prideox</para>
</listitem>
<listitem>
<para>Robert Holecroft</para>
</listitem>
<listitem>
<para>Rise Courtney</para>
</listitem>
<listitem>
<para>Master Hugh Rogers</para>
</listitem>
<listitem>
<para>Thomas Foxe</para>
</listitem>
<listitem>
<para>Edward Nugent</para>
</listitem>
<listitem>
<para>Darby Glande</para>
</listitem>
<listitem>
<para>Edward Kelle</para>
</listitem>
<listitem>
<para>John Gostigo</para>
</listitem>
<listitem>
<para>Erasmus Clefs</para>
</listitem>
<listitem>
<para>Edward Ketcheman</para>
</listitem>
<listitem>
<para>John Linsey</para>
</listitem>
<listitem>
<para>Thomas Rottenbury</para>
</listitem>
<listitem>
<para>Roger Deane</para>
</listitem>
<listitem>
<para>John Harris</para>
</listitem>
<listitem>
<para>Frauncis Norris</para>
</listitem>
<listitem>
<para>Matthewe Lyne</para>
</listitem>
<listitem>
<para>Edward Kettell</para>
</listitem>
<listitem>
<para>Thomas Wisse</para>
</listitem>
<listitem>
<para>Master Thomas Harvie</para>
</listitem>
<listitem>
<para>Master Snelling</para>
</listitem>
<listitem>
<para>Master Anthony Russe</para>
</listitem>
<listitem>
<para>Master Allyne</para>
</listitem>
<listitem>
<para>Master Michel Polyson</para>
</listitem>
<listitem>
<para>John Cage</para>
</listitem>
<listitem>
<para>Thomas Parre</para>
</listitem>
<listitem>
<para>William Randes</para>
</listitem>
<listitem>
<para>Geffrey Churchman</para>
</listitem>
<listitem>
<para>William Farthowe</para>
</listitem>
<listitem>
<para>John Taylor</para>
</listitem>
<listitem>
<para>Philppe Robyns</para>
</listitem>
<listitem>
<para>Thomas Phillipes</para>
</listitem>
<listitem>
<para>Valentine Beale</para>
</listitem>
<listitem>
<para>James Skinner</para>
</listitem>
<listitem>
<para>George Eseven</para>
</listitem>
<listitem>
<para>John Chaundeler</para>
</listitem>
<listitem>
<para>Philip Blunt</para>
</listitem>
<listitem>
<para>Richard Poore</para>
</listitem>
<listitem>
<para>Robert Yong</para>
</listitem>
<listitem>
<para>Marmaduke Constable</para>
</listitem>
<listitem>
<para>Thomas Hesket</para>
</listitem>
<listitem>
<para>William Wasse</para>
</listitem>
<listitem>
<para>John Fever</para>
</listitem>
<listitem>
<para>Daniel</para>
</listitem>
<listitem>
<para>Thomas Taylor</para>
</listitem>
<listitem>
<para>Richard Humfrey</para>
</listitem>
<listitem>
<para>John Wright</para>
</listitem>
<listitem>
<para>Gabriell North</para>
</listitem>
<listitem>
<para>Robert Biscombe</para>
</listitem>
<listitem>
<para>William Backhouse</para>
</listitem>
<listitem>
<para>William White</para>
</listitem>
<listitem>
<para>Henry Potkin</para>
</listitem>
<listitem>
<para>Dennis Barnes</para>
</listitem>
<listitem>
<para>Joseph Borges</para>
</listitem>
<listitem>
<para>Doughan Gannes</para>
</listitem>
<listitem>
<para>William Tenche</para>
</listitem>
<listitem>
<para>Randall Latham</para>
</listitem>
<listitem>
<para>Thomas Hulme</para>
</listitem>
<listitem>
<para>Walter Myll</para>
</listitem>
<listitem>
<para>Richard Gilbert</para>
</listitem>
<listitem>
<para>Steven Pomarie</para>
</listitem>
<listitem>
<para>John Brocke</para>
</listitem>
<listitem>
<para>Bennet Harrye</para>
</listitem>
<listitem>
<para>James Stevenson</para>
</listitem>
<listitem>
<para>Charles Stevenson</para>
</listitem>
<listitem>
<para>Christopher Lowde</para>
</listitem>
<listitem>
<para>Jeremie Man</para>
</listitem>
<listitem>
<para>James Mason</para>
</listitem>
<listitem>
<para>David Salter</para>
</listitem>
<listitem>
<para>Richard Ireland</para>
</listitem>
<listitem>
<para>Thomas Bookener</para>
</listitem>
<listitem>
<para>William Philippes</para>
</listitem>
<listitem>
<para>Randall Mayne</para>
</listitem>
<listitem>
<para>Bennet Chappell</para>
</listitem>
<listitem>
<para>Richard Sare</para>
</listitem>
<listitem>
<para>James Lasie</para>
</listitem>
<listitem>
<para>Smolkin</para>
</listitem>
<listitem>
<para>Thomas Smart</para>
</listitem>
<listitem>
<para>Robert</para>
</listitem>
<listitem>
<para>John Evans</para>
</listitem>
<listitem>
<para>Roger Large</para>
</listitem>
<listitem>
<para>Humfrey Garden</para>
</listitem>
<listitem>
<para>Frauncis Whitton</para>
</listitem>
<listitem>
<para>Rowland Griffyn</para>
</listitem>
<listitem>
<para>William Millard</para>
</listitem>
<listitem>
<para>John Twyt</para>
</listitem>
<listitem>
<para>Edwarde Seklemore</para>
</listitem>
<listitem>
<para>John Anwike</para>
</listitem>
<listitem>
<para>Christopher Marshall</para>
</listitem>
<listitem>
<para>David Williams</para>
</listitem>
<listitem>
<para>Nicholas Swabber</para>
</listitem>
<listitem>
<para>Edward Chipping</para>
</listitem>
<listitem>
<para>Sylvester Beching</para>
</listitem>
<listitem>
<para>Vincent Cheyne</para>
</listitem>
<listitem>
<para>Haunce Walters</para>
</listitem>
<listitem>
<para>Edward Barecombe</para>
</listitem>
<listitem>
<para>Thomas Skevelabs</para>
</listitem>
<listitem>
<para>William Walters</para>
</listitem>
</itemizedlist>
</appendix>
<appendix xml:id="mul88">
<title>The Roanoke Colony, 1587 <footnote xml:id="mul4">
<para>This Appendix contains an actual list of the individuals who sailed to the Roanoke
Colony in 1587, as well as the names of children born at the colony. (<emphasis
role="ital">See</emphasis>
<citation>Durant, David N., <quote>Raleigh’s Lost Colony</quote>, Appendix I, Atheneum,
NY: 1981.</citation>)</para>
</footnote>
</title>
<itemizedlist>
<listitem>
<para>Men</para>
<itemizedlist>
<listitem>
<para>John White [Governor]</para>
</listitem>
<listitem>
<para>Roger Bailie [Assistant]</para>
</listitem>
<listitem>
<para>Ananias Dare [Assistant]</para>
</listitem>
<listitem>
<para>Christopher Cooper [Assistant]</para>
</listitem>
<listitem>
<para>Thomas Stevens [Assistant]</para>
</listitem>
<listitem>
<para>John Sampson [Assistant]</para>
</listitem>
<listitem>
<para>Dyonis Harvie [Assistant]</para>
</listitem>
<listitem>
<para>Roger Prat [Assistant]</para>
</listitem>
<listitem>
<para>George Howe [Assistant]</para>
</listitem>
<listitem>
<para>Simon Fernando [Assistant]</para>
</listitem>
<listitem>
<para>William Willes</para>
</listitem>
<listitem>
<para>John Brooke</para>
</listitem>
<listitem>
<para>Cutbert White</para>
</listitem>
<listitem>
<para>John Bright</para>
</listitem>
<listitem>
<para>Clement Tayler</para>
</listitem>
<listitem>
<para>William Sole</para>
</listitem>
<listitem>
<para>John Cotsmur</para>
</listitem>
<listitem>
<para>Humfrey Newton</para>
</listitem>
<listitem>
<para>Thomas Colman</para>
</listitem>
<listitem>
<para>Thomas Gramme</para>
</listitem>
<listitem>
<para>Nicholas Johnson</para>
</listitem>
<listitem>
<para>Thomas Warner</para>
</listitem>
<listitem>
<para>Anthony Cage</para>
</listitem>
<listitem>
<para>John Jones</para>
</listitem>
<listitem>
<para>John Tydway</para>
</listitem>
<listitem>
<para>Ambrose Viccars</para>
</listitem>
<listitem>
<para>Edmond English</para>
</listitem>
<listitem>
<para>Thomas Topan</para>
</listitem>
<listitem>
<para>Henry Berrye</para>
</listitem>
<listitem>
<para>Richard Berrye</para>
</listitem>
<listitem>
<para>John Spendlove</para>
</listitem>
<listitem>
<para>John Hemmington</para>
</listitem>
<listitem>
<para>Thomas Butler</para>
</listitem>
<listitem>
<para>Edward Powell</para>
</listitem>
<listitem>
<para>John Burden</para>
</listitem>
<listitem>
<para>James Hynde</para>
</listitem>
<listitem>
<para>Thomas Ellis</para>
</listitem>
<listitem>
<para>William Browne</para>
</listitem>
<listitem>
<para>Michael Myllet</para>
</listitem>
<listitem>
<para>Thomas Smith</para>
</listitem>
<listitem>
<para>Richard Kemme</para>
</listitem>
<listitem>
<para>Thomas Harris</para>
</listitem>
<listitem>
<para>Richard Taverner</para>
</listitem>
<listitem>
<para>John Earnest</para>
</listitem>
<listitem>
<para>Henry Johnson</para>
</listitem>
<listitem>
<para>John Starte</para>
</listitem>
<listitem>
<para>Richard Darige</para>
</listitem>
<listitem>
<para>William Lucas</para>
</listitem>
<listitem>
<para>Arnold Archard</para>
</listitem>
<listitem>
<para>John Wright</para>
</listitem>
<listitem>
<para>William Dutton</para>
</listitem>
<listitem>
<para>Morris Allen</para>
</listitem>
<listitem>
<para>William Waters</para>
</listitem>
<listitem>
<para>Richard Arthur</para>
</listitem>
<listitem>
<para>John Chapman</para>
</listitem>
<listitem>
<para>William Clement</para>
</listitem>
<listitem>
<para>Robert Little</para>
</listitem>
<listitem>
<para>Hugh Tayler</para>
</listitem>
<listitem>
<para>Richard Wildye</para>
</listitem>
<listitem>
<para>Lewes Wotton</para>
</listitem>
<listitem>
<para>Michael Bishop</para>
</listitem>
<listitem>
<para>Henry Browne</para>
</listitem>
<listitem>
<para>Marke Bennet</para>
</listitem>
<listitem>
<para>John Gibbes</para>
</listitem>
<listitem>
<para>John Stilman</para>
</listitem>
<listitem>
<para>Robert Wilkinson</para>
</listitem>
<listitem>
<para>Peter Little</para>
</listitem>
<listitem>
<para>John Wyles</para>
</listitem>
<listitem>
<para>Brian Wyles</para>
</listitem>
<listitem>
<para>George Martyn</para>
</listitem>
<listitem>
<para>Hugh Pattenson</para>
</listitem>
<listitem>
<para>Martyn Sutton</para>
</listitem>
<listitem>
<para>John Farre</para>
</listitem>
<listitem>
<para>John Bridger</para>
</listitem>
<listitem>
<para>Griffen Jones</para>
</listitem>
<listitem>
<para>Richard Shaberdge</para>
</listitem>
<listitem>
<para>James Lasie</para>
</listitem>
<listitem>
<para>John Cheven</para>
</listitem>
<listitem>
<para>Thomas Hewet</para>
</listitem>
<listitem>
<para>William Berde</para>
</listitem>
<listitem>
<para>Henry Rufoote</para>
</listitem>
<listitem>
<para>Richard Tomkins</para>
</listitem>
<listitem>
<para>Henry Dorrell</para>
</listitem>
<listitem>
<para>Charles Florrie</para>
</listitem>
<listitem>
<para>Henry Mylton</para>
</listitem>
<listitem>
<para>Henry Payne</para>
</listitem>
<listitem>
<para>Thomas Harris</para>
</listitem>
<listitem>
<para>William Nicholes</para>
</listitem>
<listitem>
<para>Thomas Phevens</para>
</listitem>
<listitem>
<para>John Borden</para>
</listitem>
<listitem>
<para>Thomas Scot</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>Women</para>
<itemizedlist>
<listitem>
<para>Elyoner Dare</para>
</listitem>
<listitem>
<para>Margery Harvie</para>
</listitem>
<listitem>
<para>Agnes Wood</para>
</listitem>
<listitem>
<para>Wenefrid Powell</para>
</listitem>
<listitem>
<para>Joyce Archard</para>
</listitem>
<listitem>
<para>Jane Jones</para>
</listitem>
<listitem>
<para>Elizabeth Glane</para>
</listitem>
<listitem>
<para>Jane Pierce</para>
</listitem>
<listitem>
<para>Audry Tappan</para>
</listitem>
<listitem>
<para>Alis Chapman</para>
</listitem>
<listitem>
<para>Emme Merrimoth</para>
</listitem>
<listitem>
<para>Colman</para>
</listitem>
<listitem>
<para>Margaret Lawrence</para>
</listitem>
<listitem>
<para>Joan Warren</para>
</listitem>
<listitem>
<para>Jane Mannering</para>
</listitem>
<listitem>
<para>Rose Payne</para>
</listitem>
<listitem>
<para>Elizabeth Viccars</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>Children</para>
<itemizedlist>
<listitem>
<para>John Sampson</para>
</listitem>
<listitem>
<para>Robert Ellis</para>
</listitem>
<listitem>
<para>Ambrose Viccars</para>
</listitem>
<listitem>
<para>Thomas Archard</para>
</listitem>
<listitem>
<para>Thomas Humfrey</para>
</listitem>
<listitem>
<para>Tomas Smart</para>
</listitem>
<listitem>
<para>George Howe</para>
</listitem>
<listitem>
<para>John Prat</para>
</listitem>
<listitem>
<para>William Wythers</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>Children Born at the Colony</para>
<itemizedlist>
<listitem>
<para>Virginia Dare</para>
</listitem>
<listitem>
<para>Harvye</para>
</listitem>
</itemizedlist>
</listitem>
<listitem>
<para>Native Peoples (who having been in England returned to the colony)</para>
<itemizedlist>
<listitem>
<para>Manteo</para>