-
Notifications
You must be signed in to change notification settings - Fork 0
/
A04555.xml
5349 lines (5349 loc) · 687 KB
/
A04555.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
<TEI xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>The most famous history of the seauen champions of Christendome Saint George of England, Saint Dennis of Fraunce, Saint Iames of Spaine, Saint Anthonie of Italie, Saint Andrew of Scotland, Saint Pattricke of Ireland, and Saint Dauid of Wales. Shewing their honorable battailes by sea and land: their tilts, iousts, and turnaments for ladies: their combats vvith giants, monsters, and dragons: their aduentures in forraine nations; their inchauntments in the holie land: their knighthoods, prowesse, and chiualrie, in Europe, Affrica, and Asia, with their victories against the enemies of Christ.</title>
<title>Most famous history of the seven champions of Christendome. Part 1</title>
<author>Johnson, Richard, 1573-1659?</author>
</titleStmt>
<editionStmt>
<edition>
<date>1596</date>
</edition>
</editionStmt>
<extent>Approx. 414 KB of XML-encoded text transcribed from 108 1-bit group-IV TIFF page images.</extent>
<publicationStmt>
<publisher>Text Creation Partnership,</publisher>
<pubPlace>Ann Arbor, MI ; Oxford (UK) :</pubPlace>
<date when="2004-11">2004-11 (EEBO-TCP Phase 1).</date>
<idno type="DLPS">A04555</idno>
<idno type="STC">STC 14677</idno>
<idno type="STC">ESTC S109165</idno>
<idno type="EEBO-CITATION">99844815</idno>
<idno type="PROQUEST">99844815</idno>
<idno type="VID">9661</idno>
<availability>
<p>This keyboarded and encoded edition of the
work described above is co-owned by the institutions
providing financial support to the Early English Books
Online Text Creation Partnership. This Phase I text is
available for reuse, according to the terms of <ref target="https://creativecommons.org/publicdomain/zero/1.0/">Creative
Commons 0 1.0 Universal</ref>. The text can be copied,
modified, distributed and performed, even for
commercial purposes, all without asking permission.</p>
</availability>
</publicationStmt>
<seriesStmt>
<title>Early English books online.</title>
</seriesStmt>
<notesStmt>
<note>(EEBO-TCP ; phase 1, no. A04555)</note>
<note>Transcribed from: (Early English Books Online ; image set 9661)</note>
<note>Images scanned from microfilm: (Early English books, 1475-1640 ; 346:12)</note>
</notesStmt>
<sourceDesc>
<biblFull>
<titleStmt>
<title>The most famous history of the seauen champions of Christendome Saint George of England, Saint Dennis of Fraunce, Saint Iames of Spaine, Saint Anthonie of Italie, Saint Andrew of Scotland, Saint Pattricke of Ireland, and Saint Dauid of Wales. Shewing their honorable battailes by sea and land: their tilts, iousts, and turnaments for ladies: their combats vvith giants, monsters, and dragons: their aduentures in forraine nations; their inchauntments in the holie land: their knighthoods, prowesse, and chiualrie, in Europe, Affrica, and Asia, with their victories against the enemies of Christ.</title>
<title>Most famous history of the seven champions of Christendome. Part 1</title>
<author>Johnson, Richard, 1573-1659?</author>
</titleStmt>
<extent>[6], 204+ p. </extent>
<publicationStmt>
<publisher>Printed [by J. Danter] for Cuthbert Burbie, and are to be sold at his shop, at the Royall Exchange,</publisher>
<pubPlace>At London :</pubPlace>
<date>1596.</date>
</publicationStmt>
<notesStmt>
<note>Part 1 only.</note>
<note>Printer's name from STC.</note>
<note>The only known copy is lacking all after quire 2D.</note>
<note>Reproduction of the original in the Henry E. Huntington Library and Art Gallery.</note>
</notesStmt>
</biblFull>
</sourceDesc>
</fileDesc>
<encodingDesc>
<projectDesc>
<p>Created by converting TCP files to TEI P5 using tcp2tei.xsl,
TEI @ Oxford.
</p>
</projectDesc>
<editorialDecl>
<p>EEBO-TCP is a partnership between the Universities of Michigan and Oxford and the publisher ProQuest to create accurately transcribed and encoded texts based on the image sets published by ProQuest via their Early English Books Online (EEBO) database (http://eebo.chadwyck.com). The general aim of EEBO-TCP is to encode one copy (usually the first edition) of every monographic English-language title published between 1473 and 1700 available in EEBO.</p>
<p>EEBO-TCP aimed to produce large quantities of textual data within the usual project restraints of time and funding, and therefore chose to create diplomatic transcriptions (as opposed to critical editions) with light-touch, mainly structural encoding based on the Text Encoding Initiative (http://www.tei-c.org).</p>
<p>The EEBO-TCP project was divided into two phases. The 25,363 texts created during Phase 1 of the project have been released into the public domain as of 1 January 2015. Anyone can now take and use these texts for their own purposes, but we respectfully request that due credit and attribution is given to their original source.</p>
<p>Users should be aware of the process of creating the TCP texts, and therefore of any assumptions that can be made about the data.</p>
<p>Text selection was based on the New Cambridge Bibliography of English Literature (NCBEL). If an author (or for an anonymous work, the title) appears in NCBEL, then their works are eligible for inclusion. Selection was intended to range over a wide variety of subject areas, to reflect the true nature of the print record of the period. In general, first editions of a works in English were prioritized, although there are a number of works in other languages, notably Latin and Welsh, included and sometimes a second or later edition of a work was chosen if there was a compelling reason to do so.</p>
<p>Image sets were sent to external keying companies for transcription and basic encoding. Quality assurance was then carried out by editorial teams in Oxford and Michigan. 5% (or 5 pages, whichever is the greater) of each text was proofread for accuracy and those which did not meet QA standards were returned to the keyers to be redone. After proofreading, the encoding was enhanced and/or corrected and characters marked as illegible were corrected where possible up to a limit of 100 instances per text. Any remaining illegibles were encoded as <gap>s. Understanding these processes should make clear that, while the overall quality of TCP data is very good, some errors will remain and some readable characters will be marked as illegible. Users should bear in mind that in all likelihood such instances will never have been looked at by a TCP editor.</p>
<p>The texts were encoded and linked to page images in accordance with level 4 of the TEI in Libraries guidelines.</p>
<p>Copies of the texts have been issued variously as SGML (TCP schema; ASCII text with mnemonic sdata character entities); displayable XML (TCP schema; characters represented either as UTF-8 Unicode or text strings within braces); or lossless XML (TEI P5, characters represented either as UTF-8 Unicode or TEI g elements).</p>
<p>Keying and markup guidelines are available at the <ref target="http://www.textcreationpartnership.org/docs/.">Text Creation Partnership web site</ref>.</p>
</editorialDecl>
<listPrefixDef>
<prefixDef ident="tcp"
matchPattern="([0-9\-]+):([0-9IVX]+)"
replacementPattern="http://eebo.chadwyck.com/downloadtiff?vid=$1&page=$2"/>
<prefixDef ident="char"
matchPattern="(.+)"
replacementPattern="https://raw.githubusercontent.com/textcreationpartnership/Texts/master/tcpchars.xml#$1"/>
</listPrefixDef>
</encodingDesc>
<profileDesc>
<langUsage>
<language ident="eng">eng</language>
</langUsage>
<textClass>
<keywords scheme="http://authorities.loc.gov/">
<term>Christian saints -- Early works to 1800.</term>
</keywords>
</textClass>
</profileDesc>
<revisionDesc>
<change>
<date>2004-06</date>
<label>TCP</label>Assigned for keying and markup</change>
<change>
<date>2004-08</date>
<label>SPi Global</label>Keyed and coded from ProQuest page images</change>
<change>
<date>2004-09</date>
<label>Judith Siefring</label>Sampled and proofread</change>
<change>
<date>2004-09</date>
<label>Judith Siefring</label>Text and markup reviewed and edited</change>
<change>
<date>2004-10</date>
<label>pfs</label>Batch review (QC) and XML conversion</change>
</revisionDesc>
</teiHeader>
<text xml:lang="eng">
<front>
<div type="title_page">
<pb facs="tcp:9661:1"/>
<pb facs="tcp:9661:1" rendition="simple:additions"/>
<p>THE MOST famous History of the Seauen Champions of Christendome: Saint <hi>George</hi> of England, Saint <hi>Dennis</hi> of Fraunce, Saint <hi>Iames</hi> of Spaine, Saint <hi>Anthonie</hi> of Italie, Saint <hi>Andrew</hi> of Scotland, Saint <hi>Pattricke</hi> of Ireland, and Saint <hi>Dauid</hi> of Wales. Shewing their Honorable battailes by Sea and Land: their Tilts, Iousts, and Tur<g ref="char:EOLhyphen"/>naments for Ladies: their Combats vvith Giants, Monsters, and Dragons: their aduentures in forraine Nations: their Inchauntments in the holie Land: their Knighthoods, Prowesse, and Chiualrie, in Europe, Affrica, and Asia, with their victories against the ene<g ref="char:EOLhyphen"/>mies of Christ.</p>
<p>AT LONDON Printed for Cuthbert Burbie, and are to be sold at his shop, at the Royall Exchange. 1596.</p>
</div>
<div type="dedication">
<pb facs="tcp:9661:2" rendition="simple:additions"/>
<pb facs="tcp:9661:2"/>
<head>To the Right Hono<g ref="char:EOLhyphen"/>rable Lord Thomas Howard, &c. R. I. vvisheth health, ho<g ref="char:EOLhyphen"/>nor and happinesse.</head>
<p>
<seg rend="decorInit">H</seg>Auing heard (Right Honourable) by a general report of the lauda<g ref="char:EOLhyphen"/>ble & vertuous qualities, vvhere<g ref="char:EOLhyphen"/>vvith your Honours minde is beautefied, and your fauourable acceptance of good vvill from the meanest, I haue attempted (though fearing to fall like <hi>Phai<g ref="char:EOLhyphen"/>ton</hi>) to present into your Lordships handes this homely gift: vvhich is a Historie of the seauen Champions of Christendome, vvhole names to this day is held in great estimation through Eu<g ref="char:EOLhyphen"/>rope: vvhere in steede of musicke, I bring you mislike: for a learned booke, an ildle discourse: thereby to beguile your ingenious Iudgements exercised in the best rudiments. Yet presuming vpon this, that as the Noblest mindes are euer the most curteous, so your Honour vvill vouch<g ref="char:EOLhyphen"/>safe to cast a smiling glaunce at this simple toy:
<pb facs="tcp:9661:3"/>
if not for the vvorkemanship, yet for the good vvill of the giuer: vvherevvith if I be fauoured (as I hope vvell) my labour hath his revvard, and my desire his content: in vvhich assured hope resting, I commit your Honour to the Almigh<g ref="char:EOLhyphen"/>tie.</p>
<closer>
<signed>Your Honours in all humilitie most affectionate. R. I.</signed>
</closer>
</div>
<div type="to_the_reader">
<pb facs="tcp:9661:3"/>
<head>To all curteous Readers, Richard Iohnson vvisheth increase of vertuous knovvledge.</head>
<p>
<seg rend="decorInit">G</seg>Entle Readers in kindnes accept of my labours, and be not like the chattering Cranes nor Momus mates, that carps at euerything: vvhat the simple say I care not: vvhat the spightfull speake I passe not: only the censure of the conceited I stand vnto, that is the marke I aime at: vvhose good likeinges if I ob<g ref="char:EOLhyphen"/>taine, I haue vvonne my race: if not, I faint in the first attempt, and so loose the quiet of my hap<g ref="char:EOLhyphen"/>pie goale.</p>
<closer>
<signed>Yours in kindnes to command. R. I.</signed>
</closer>
</div>
<div type="poem">
<pb facs="tcp:9661:4"/>
<head>The Authors Muse vpon the Historie.</head>
<lg>
<l>THe famous factes O Mars deriu'd from thee<g ref="char:punc">▪</g>
</l>
<l>By wearie pen, and paynefull Authors toyle:</l>
<l>Enroulde we finde, such feates of Chiualrie,</l>
<l>As hath beene seldome seene in any soyle.</l>
</lg>
<lg>
<l>Thy ensignes here we finde in field displaide,</l>
<l>The Trophies of thy victories erected:</l>
<l>Such deedes of Armes, as none could haue assaide,</l>
<l>But Knights, whose courage feare hath not detected<g ref="char:punc">▪</g>
</l>
</lg>
<lg>
<l>Such Ladies sau'd, such monsters made to fall,</l>
<l>Such Gyants slaine, such hellish Furies queld:</l>
<l>That Humane forces few or none at all,</l>
<l>In such exploits, their liues could safely shield.</l>
</lg>
<lg>
<l>But vertue stirring vp their Noble mindes,</l>
<l>By valiant Conquests to inlarge their Fames:</l>
<l>Hath causde them seeke, aduentures forth to finde,</l>
<l>Which registreth their neuer dying names.</l>
<l>Then Fortune, Time, and Fame agree in this,</l>
<l>That Honours gaine the greatest glorie is.</l>
</lg>
<p>Gentle Reader, beare with the faults ouerpast in cor<g ref="char:EOLhyphen"/>rection, and they shall be amended God willing, in the next Impression.</p>
</div>
</front>
<body>
<div n="1" type="chapter">
<pb n="1" facs="tcp:9661:4"/>
<head>The Honorable Hi<g ref="char:EOLhyphen"/>storie of the Seauen Champions of Christendome.</head>
<head>CHAP. I. </head>
<argument>
<p>Of the wonderfull and straunge birth of Saint George of England, how he was cut out of his Mothers wombe, and after stole from his Nurses by Kalyb the Lady of the woods: Her loue to him, and her giftes, and how hee in<g ref="char:EOLhyphen"/>closed her in a rocke of stone, and redeemed sixe Christi<g ref="char:EOLhyphen"/>an Knights out of prison.</p>
</argument>
<p>
<seg rend="decorInit">A</seg>Fter the angr<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e Gréekes has <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> the chiefest Cittie in <hi>Phrigi<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>,</hi> and turn<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> King <hi>Priams</hi> glorious buildinges to a <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> and desolate wildernes, Duke <hi>Aenzas</hi> exempted from his natiue habi<g ref="char:EOLhyphen"/>tation, with manie of his distressed countrimen (<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> Pilgrims) wandered the world to <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> some happie r<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>gion, where they might erect the Image of their late subue<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ted <hi>Troy,</hi> but before that labour could <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> accomplished, <hi>Aenaeas</hi> ended his dayes in the con<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>i<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>s of <hi>Italie,</hi> and left his sonne <hi>Askanius</hi> to gouerne in his <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>, <hi>Askanius</hi> dying <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<hi>Siluius</hi> to rule, <hi>Siluius</hi> deceasing, le<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>t <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>he noble and <gap reason="illegible" resp="#PDCC" extent="3 letters">
<desc>•••</desc>
</gap>ent<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rous <hi>Brutus,</hi> which <hi>Brute</hi> (being the
<pb n="2" facs="tcp:9661:5"/>
<gap reason="illegible" resp="#APEX" extent="1 page">
<desc>〈1 page〉</desc>
</gap>
<pb n="3" facs="tcp:9661:5"/>
<gap reason="illegible" resp="#APEX" extent="1 page">
<desc>〈1 page〉</desc>
</gap>
<pb n="4" facs="tcp:9661:6"/>
and hollow trées, wherein they were entertained with such a dismall croking of night Rauens, hissing of Serpents, b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>l<g ref="char:EOLhyphen"/>lowing of Bulles, and roaring of monsters, that it rather seemed a wildernesse of furies, than any worldly habitati<g ref="char:EOLhyphen"/>on: by which they knew it to be the inch<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ted vale of <hi>Ka<g ref="char:EOLhyphen"/>lyb</hi> the Lady of the woodes: So pacing <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> the middle of the thicket, they came to a Ca<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e whose gate and entrey was of Iron, whereon hung a mightie brasen borne for them to winde that would speake with the Sorceresse, first offering their Lambe with great humlitie before the po<g ref="char:EOLhyphen"/>st<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rne of the Caue, then exempting all feare they winded the brasen horne, the sounde whereof séemed to shake the foundation of the earth, after which they heard a loude and hollow voice that vttered these wordes following.</p>
<lg>
<l>Sir Knight from whence thou camst retorne,</l>
<l>Thou hast a Sonne most strangely borne:</l>
<l>A Dragon fell shall split in twaine,</l>
<l>Thy Ladies wombe with extreame paine:</l>
<l>A Champion bold from thence shall spring,</l>
<l>And practise many a wondrous thing:</l>
<l>Returne therefore make no delay,</l>
<l>For it is true what I doo say.</l>
</lg>
<p>THis da<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ke Ri<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>le or rather misticall Oracle being thrice repeated in this order, so much amazed them that they stood in doubt whether it were b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>st to returne, or to winde the br<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>en borne the second time: but being per<g ref="char:EOLhyphen"/>swaded by the other Knight not to mo<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ue the impatience of <hi>Kalyb,</hi> hee rested satisfied with that answere.</p>
<p>Thus le<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> he the i<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>chaunted Caue to the gouernement of <hi>Kalyb,</hi> and with all sp<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>de dispatched his iourney to his <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> hab<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>tation, but in the mean<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> time his Lady b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ing o<g ref="char:EOLhyphen"/>uerch<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rged with extr<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>me paine and bitter anguish of her laborsome wombe, <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> forced either to the spoyle of her Infant, or decay of her owne life: But regarding more
<pb n="5" facs="tcp:9661:6"/>
the benefit of her countrie, than <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>er own safetie, and for the preseruation of her childe, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hee most willingly committed her tender wombe to be opened, that her Infant might bée taken forth aliue.</p>
<p>Thus with the consent of many learned Chirurgions, this most Noble and Magnanimious Ladie was cast into a dead sl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>epe, her wombe cut vp with sharpe razers, and the Infant taken from the bed of his creation: Upon his brest nature had picturde the liuely forme of a Dragon, vpon his right hand a bloody Crosse, and on his left leg a golden gar<g ref="char:EOLhyphen"/>ter, they named him <hi>George,</hi> and prouided him thrée nur<g ref="char:EOLhyphen"/>ses, one to giue him sucke, another to kéepe him a sleep, and the third to prouide him foode, not manie dayes after his na<g ref="char:EOLhyphen"/>tiuitie, the fell Inchantresse <hi>Kalyb</hi> béeing the vtter enemy to true Nobilitie, by charmes and witchcrafts st<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>le the In<g ref="char:EOLhyphen"/>fant from his car<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>les Nurses: At which time (though all too late) her Noble Lord and Husband returned in g<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d hope to he<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>re a ioyfull deliuerie of his Lady, and a comfort of a So<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ne: but his wished ioy, was turned into a lasting sor<g ref="char:EOLhyphen"/>row, for hee founde not onely his Lady dismembred a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> her wombe, but his yong Sonne wanting, without <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> of his abode; which wofull spectakle berea<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> of his wi<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>, that for a time hee stood s<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ncele<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> like weeping <hi>N<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>obe,</hi> but a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> l<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>st brake into these bitter e<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>clamations.</p>
<p>O heau<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>n<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>! why couer you not earth with euerlasting night? or why doe these accursed eye<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hold the sunne? O that the wo<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>s of <hi>Oedipus</hi> might end my da<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>es, or like an exile ioy in banishment, where I may warble forth my sor<g ref="char:EOLhyphen"/>rowes to the whispering woods, tha<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> senceles tr<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>s may re<g ref="char:EOLhyphen"/>cord my losse, & vn<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ame<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> beasts grieue at my want. What monster hath ber<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>aud<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> me of my Childe? or what Tyrant hath béene glutted with his Tragedie? <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> that the winde would be a messenger and bring me happie newes of his a<g ref="char:EOLhyphen"/>bode, if hee bee drenched in the déepest Seas, <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ether will I diue to fetch him <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> hee bee hidden in the <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> earth, th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ther will I digge to se<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> my sonn<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:punc">▪</g> or if he like a
<pb n="6" facs="tcp:9661:7"/>
scathered foule lye houering in the ayre, yet thether will I flie, and imbrace him that neuer <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> eyes behold<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>: But why doe I thunder foorth my excla<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ations thus in <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>, when neyther heauen, nor earth, nor seas, nor <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> heauen, in earth, nor seas will leud mee comfort for <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> couerie?</p>
<p>Thus complayned he many mon<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hs for the los<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> of his sonne, and sent messengers into euery C<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rcuite of the Land, but no man pro<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>e so fortunate as to returne him happie tydings: He then b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>eing frustrate of all good hopes, stored himselfe with Iewels, and so intended to trauaile the wide world, eyther to speed in his iournie, or to leaue his bones in some forraine region: T<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ns leauing his natiue Coun<g ref="char:EOLhyphen"/>trie, wandred from place to place, till the hair<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>s of his head were growne as white as siluer, and his beard like to the thistle downe, but at l<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>st he ended his trauaile in <hi>Bohemia,</hi> where what for age and excessiue griefe, laide him selfe downe vnder a ruinate Monasterie wall & dyed, the Com<g ref="char:EOLhyphen"/>mons of that countrie hauing knowledge of his name (by a Iewel he wore in his bosome) ingraued it in Marble stone right ouer his sepulchre, where we leaue him sleeping in peace, and returne to his sonne remayning with <hi>Kalyb</hi> the Lady of the woods in the inchaunted Caue.</p>
<p>Now twice seauen yeares were fully finished since <hi>Ka<g ref="char:EOLhyphen"/>lyb</hi> first had in kéeping the Noble Knight <hi>Saint George</hi> of England, whose minde many times thirsted after honora<g ref="char:EOLhyphen"/>ble aduentures, and often attempted to set him selfe at li<g ref="char:EOLhyphen"/>bertie, but the f<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ll inchantresse tendring him as the apple of her eye, appointed twelue sturdy Satiers to attend his per<g ref="char:EOLhyphen"/>son, so that neyther force nor pollicie could further hys in<g ref="char:EOLhyphen"/>tent: shee kept him not to triumph in his Tragedie, nor to spend his d<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>yes in slauerie, but féeding his fancie with all the delightes and pleasures that Arte or Nature could <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>: For in him she fixed her chiefest felicitie, and luste<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> after his be<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>tie: But he séeking to aduance his name by Martiall Discipline and Knightly attempts, vtterly refu<g ref="char:EOLhyphen"/>sed
<pb n="7" facs="tcp:9661:7"/>
her preffered curtesies, and highly disdainde to affect so wicked a creature: who seeing her loue bestowed in vaine, vpon a time beeing in the secretst corner of her Caue, began <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> him in this manner.</p>
<p>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hou knowest (Sir Knight) how worthily I haue de<g ref="char:EOLhyphen"/>serued thy Loue, and how for thy sake I haue kept my Uir<g ref="char:EOLhyphen"/>ginity vnstainde<g ref="char:punc">▪</g> yet thou more cruell than the Tigers bréed in <hi>Libia,</hi> reiect<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>th me. Deare Knight fulfill my desi<g ref="char:EOLhyphen"/>ers, and at thy pleasure my charmes shall practise woon<g ref="char:EOLhyphen"/>drous thinges, as to mooue the heauens to rayne a shower of stones vpon thy enemies, to conuert the Sunne to f<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>re, the Moone to blood, or make a desolation of the whole world.</p>
<p>The Noble Knight <hi>Saint George</hi> considered in his mind that Loue would make the wisest blind: Therefore by her faire promises he hoped to obtaine his liberty, the which moou<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e him to make her this answers.</p>
<p>Most wise and learned <hi>Kalyb,</hi> the woonder of the world, I condiscend to all thy desiers vpon this condition, that I may be sole Proiector and Gouernour of this Inchaunted Caue, and that thou discribe to me my birth, my name, and Parentage, wherto she willingly consented, and began her discourse in this manner. Thou art by byrth said shee, son to the Lord <hi>Albert</hi> high Steward of <hi>England,</hi> and to this day haue I kept <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> within these solitary woods: So taking him by the hand she led him <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap>
<g ref="char:punc">▪</g> wherin remayned as prisoners, fire of the <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> k<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ghts in the world: These are sayd she six of the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>orthiest <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> of Christendome, the first is <hi>Sain<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Dennis</hi> of <hi>France,</hi> the second <hi>Saint Iames</hi> of <hi>Spaine,</hi> the third <hi>Saint A<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ho<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ie</hi> of <hi>Italie,</hi> the fourth <hi>Saint Andrew</hi>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<hi>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>cotland</hi>
<g ref="char:punc">▪</g>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<hi>Pattricke</hi> of <hi>Ireland,</hi> the sixt <hi>Saint Dauid</hi> of <hi>Wales</hi>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> of thou art borne to bee the <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>, and thy <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<hi>Sa<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>t George</hi> of <hi>England,</hi> for so thou shalt bee <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> to come<g ref="char:punc">▪</g> Then leading hym a <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> further she brou<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>t him into a large faire <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> whe<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> s<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ood seauen of the <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<pb n="8" facs="tcp:9661:8"/>
Stéedes that <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>uer the world behold, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ixe of these (sayd shée) belong to the sixe Champions, and the seauenth will<g ref="char:punc">▪</g> be<g ref="char:EOLhyphen"/>stowe on thée, whose name is Ba<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ard: likewise shee lead him to another roome, where hung the richest Armour that <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>uer eye beheld, so choosing out the strongest Cor<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>let <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> Armorie, shee with her owne handes buckled it on hys brest, laced on hys Hel<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ne, and attyred him with rich Capa<g ref="char:EOLhyphen"/>rison, then fetching forth a mighty <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>chion, shée put it like<g ref="char:EOLhyphen"/>wise in hys hand, (now sayd shée) art thou Armed in richer furniture than was <hi>Ninus</hi> the first Monarke of the worlde: thy stéed is of such force and inuincible power, that whilst thou art mounted on hys backe, there can be no Knight in all the world so hardy as to conquere thée: Thy Armour of the purest <hi>Lidian</hi> stéele, that neyther weapon can pearce, nor Battail axe bruse, thy sword which is called <hi>Ascalon</hi> is framed of such excellent mettle by the curious workman<g ref="char:EOLhyphen"/>ship of the <hi>Ciclops,</hi> that it will seperate and cut the hardest <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>lint, and how in sunder the strongest stéele, for in the pum<g ref="char:EOLhyphen"/>mell lies such pretious vertue, that neyther treason, witch<g ref="char:EOLhyphen"/>crafts, nor any violence can bee proffered thée, so long as thou wearest it.</p>
<p>Thus the lustfull <hi>Kalyb</hi> béeing so blinded in her owne conceit, that she not only bestowed the riches of her Caue vpon him, but gaue him power and authoritie through a siluer wand which shee put in his hand to worke her owne destin<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>tion for comming by a huge great rocke of stone, this valiant minded Knight stroke his charming r<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>d there<g ref="char:EOLhyphen"/>on, whereat it opened, and sh<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>wed apparantly before his eyes a number of sucking Babes which the Inchauntress<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> had mirthered by her witchcrafts and sorceries: O said she this is <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> place of horror, where nought is heard but scrikes and <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> grones of dead mens soules, but if thy eares can ind<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>re<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> heare them, and thy eyes behold them, I wil lead the <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> So the Lady of the woodes boldly stopping in be<g ref="char:EOLhyphen"/>fo<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e<g ref="char:punc">▪</g>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> mistrusting the pr<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>tended pol<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>icie of <hi>S. George,</hi>
<gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> in her owne practises, for no sooner entred the
<pb n="9" facs="tcp:9661:8"/>
the rocke, but he stroke his siluer wand thereupon, and im<g ref="char:EOLhyphen"/>mediatly it closed, where shee bellowed foorth exclamati<g ref="char:EOLhyphen"/>ons to the senceles stones without al hope of deliuery.</p>
<p>Thus this Noble Knight deceaued the wicked Inchan<g ref="char:EOLhyphen"/>t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>esse <hi>Kalyb,</hi> and set the other sixe Champions likewise at libertie, who rendred him all Knightly curtesies, & gaue him thankes for their safe deliuerie, so storing themselues with all thinges according to their desiers, tooke their iour<g ref="char:EOLhyphen"/>nies from the Inchanted groue, whose procéeding fortunes and heroicall aduentures shall bee shewed in this Chapter following.</p>
</div>
<div n="2" type="chapter">
<head>CHAP. II.</head>
<argument>
<p> Kalybs Lamentation in the Rocke of stone, her Will & Testament, and how shee was torne in peeces by Spirits: with other thinges that hapned in the Caue.</p>
</argument>
<p>
<seg rend="decorInit">B</seg>UT after the departure of the seauen worthy Champions, <hi>Kalyb</hi> seeing her selfe fast closed in the rocke of stone, by the pollicie of the English Knight, grew into such extreame passion of minde, that she cursed the houre of her creation, and bitterly b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>nned all motions of coniuration, the earth she wearied with her cries, whereby the verie stones séemd to relent, and as it were, wept cristall teares, & sweat with verie anguish of her griefe: the blasted Oakes that grewe about the Inchaunted rocke, likewise seemde to rue at her exclamations, the blustering windes were silent, the mur<g ref="char:EOLhyphen"/>muring
<pb n="10" facs="tcp:9661:9"/>
of Birds still, and a soli<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>rie dumbnes tooke posses<g ref="char:EOLhyphen"/>sion of euery <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap> within the <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> of the woods, to heare h<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>r wofull Lamentation, which she vtte<g ref="char:EOLhyphen"/>red in this man<gap reason="illegible" resp="#PDCC" extent="3 letters">
<desc>•••</desc>
</gap>.</p>
<p>O miserable <hi>Kalyb</hi>! accu<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>sed be thy desteny, for <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> thou art incl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>sed within a desolate & darkesome den, where neyther sunne can lend thée comfort with his bright beams, nor aire extend his breathing coolenes to thy wofull soule,: for in the déepe foundations of the earth, thou art for euer<g ref="char:EOLhyphen"/>more inclosed: I that haue beene the woonder of my time for Magicke, I that by Arte haue made my iournie to the déepest dungeons of hell, where multitudes of vglie blacke and fearefull spirits hath trembled at my charmes: I that haue bound the furies vp in beds of steele, and caused them to attend my pleasure like swarmes of hornets, that ouer<g ref="char:EOLhyphen"/>spreads the mountaines in <hi>Egipt,</hi> or the flies vpon the par<g ref="char:EOLhyphen"/>ched hilles, where the tawnie tanned Mores doo inhabite<g ref="char:punc">▪</g> am now constrained to languish in eternall darkenes: woe to my soule: woe to my charmes, and woe to all my Ma<g ref="char:EOLhyphen"/>gicke spels: for they haue bound me in this hollowe rocke: pale bee the brightnes of the cleare sunne, and couer earth with euerlasting darkenesse, skyes turne to pitch, the ele<g ref="char:EOLhyphen"/>ments to flaming fire, ror<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> hell, quake earth, swell seas, blast earth, rockes rend in twaine, all creatures mourne at my confusion, and sighe at <hi>Kalybs</hi> wofull and pittifull ex<g ref="char:EOLhyphen"/>clamations.</p>
<p>Thus wearied she the time away, one while accusing Fortune of t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rrany, another while bl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ming the falsehood & trechery of the English Knight, sometimes fearing her cur<g ref="char:EOLhyphen"/>led locks of bris<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>led haire, that like a wreath of s<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>kes hung dangling downe her deformed necke, then beating her breasts, another while rending her ornaments, whereby shée séemd more liker <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> fury than an earthly creature, so im<g ref="char:EOLhyphen"/>pacient was this wicked inchantres <hi>Kalyb</hi> being <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>u<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>trate of all hope of recou<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ry, began a fresh to thund<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> forth these tearmes of coniuration: C<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>me, c<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>me you Princes of the
<pb n="11" facs="tcp:9661:9"/>
elements, c<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>me, come and teare this rocke in peeces, and let me be inclosed vp in the eternal languishment: appea<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e you shadowes of blacke missie nigh<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>: <hi>Mag<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ll, C<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>math, Helueza, Zontomo</hi>: Come when I call, <hi>venite <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>estinate inquam</hi>: At which wordes the earth began t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> quake, and the verie elements to tremble: for all the spirits both of aire, of earth, of water, and of fire were obedient to her charmes, and by multitudes cam fl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>cking at her call: some fro<g ref="char:cmbAbbrStroke">̄</g> the fire in the likenes of burning Dragons, breathing f<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>om their tearefull nostrels, sulphu<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e and flaming Brim<g ref="char:EOLhyphen"/>stone, some from the water in shape of Fishes, with other d<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>formed creatures, that hath their abiding in the Seas, some from the aire the purest of the ellements, in the like<g ref="char:EOLhyphen"/>nes of Angels and other bright shadowes, and other some from the grose earth most vglie, bl<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ke and dreadfull to behold: So when the legions of spirits had incompast the wicked Inchantresse, hell began to rore such an infer<g ref="char:EOLhyphen"/>nall and harsh mellodie, that the Inchanted rocke burst in twaine, and then <hi>Kalybs</hi> ch<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rmes tooke no effect, for her Magick no longer indured, than the tearme of an hundred yeares, the which as then were fullie finished and brought to end: for the Obligation which shee subscribed with her dearest blood, and sealed with her own hands, was brought as a witnes against her, by which she knew and fullie per<g ref="char:EOLhyphen"/>swaded herselfe that her life was fully come to end: there<g ref="char:EOLhyphen"/>fore in this fearefull manner she began to make her Will & latest Testament.</p>
<p>First welcome (said shée) my sad Executors, welcome my graue and euerlasting toombe, for you haue di<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>d<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> it in the fierie lakes of <hi>Phlegethon</hi> my winding shéet wherein to shrowde both my body and condemn<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>d soule, is a Cal<g ref="char:EOLhyphen"/>derne of boyling l<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d and brimstone, and th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> wor<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>es that should consume my Car<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>sse, are the fiery forkes which tosse burning fire<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ands from place to place, from furnace to furnace, and from calderne to calder<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<g ref="char:punc">▪</g> therefore attend to <hi>Kalybs</hi> wofull testament<g ref="char:punc">▪</g> a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>d ingra<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e the Legacies she
<pb n="12" facs="tcp:9661:10"/>
giues in brasse rolles vpon the burning bankes of <hi>Ache<g ref="char:EOLhyphen"/>ron.</hi> First these eyes that now too late wéepe helples teares I giue vnto the watrie spirits, for they haue rakt the trea<g ref="char:EOLhyphen"/>sures hidden in déepest Seas to satisfie their most insatiate lookes: next I bequeath th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>se hands which did subscribe the bloody Obligation of my perpetuall banishment from ioy, vnto those spirits that houer in the Aire: my tongue that did con<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>pire against the Maiestie of Heauen, I giue to those spirits which haue their b<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ing in the fire: my earthly hart I bequeath to those gr<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ce <hi>Daemons</hi> that dwell in the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>un<g ref="char:EOLhyphen"/>geons of the earth: and the rest of m<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> condemned body, to the torments due to my deseruings: which straunge and fearefull Testament, being no sooner ended, but all the spi<g ref="char:EOLhyphen"/>rits generally at one instance ceazed vpon the Inchantresse and dismembred her bodie to a thousand peeces, and deui<g ref="char:EOLhyphen"/>ded her limbes to the corners of the earth, one member to the Aire, another to the water, another to the fire, and ano<g ref="char:EOLhyphen"/>ther to the earth, which was carried away in a moment by the spirits, that departed with such a horror, that all things within the hearing thereof sodainely died, both Beastes<g ref="char:punc">▪</g> Byrds, and all creeping wormes which remayned within the compasse of those inchanted woodes, for the trées which before was wont to flourish with greene leaues, withered away and died, the blades of grasse perished for want of naturall moysture, which the watrie cloude denied to nou<g ref="char:EOLhyphen"/>rish in s<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> wicked a place.</p>
<p>Thus by the iudgments of the heauens, sensles things p<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rished for the wickednes of <hi>Kalyb,</hi> whom wée leaue to hir endles torments both of body and soule, and returne to the seauen worth<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Champions of Christendome, whose lau<g ref="char:EOLhyphen"/>dable aduentures fame hath in<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>old in the bookes of memo<g ref="char:EOLhyphen"/>rie.</p>
</div>
<div n="3" type="chapter">
<pb n="13" facs="tcp:9661:10"/>
<head>CHAP. III. </head>
<argument>
<p>How Saint George slewe the burning Dragon in Egipt, and redeemed Sabra the Kinges Daughter from death: How hee was betraied by Almidor the blacke King of Moroco, and sent to the Soldan of Persia, where hee slew two Lyons and remained seauen yeares in prison.</p>
</argument>
<p>
<seg rend="decorInit">A</seg>Fter the seauen Champions departed fro<g ref="char:cmbAbbrStroke">̄</g> the Inchaunted Caue of <hi>Kalib,</hi> they made their abode in the C<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>tie of <hi>Co<g ref="char:EOLhyphen"/>uentrie,</hi> for the space of nine monthes, in which time they erected vp a sumptu<g ref="char:EOLhyphen"/>ous & costly monument ouer the herse of <hi>Saint Georges</hi> Mother, and so in that time of the yeare, when the spring had ouerspred the earth, with the mantles of <hi>Flora,</hi> they Armed themselues like wandring Knights, and tooke their iournie to seeke for for<g ref="char:EOLhyphen"/>raine aduentures, accounting no dishonour so great, as to spend their dayes in idlenes atchiuing no memorable acci<g ref="char:EOLhyphen"/>dent: So trauailing for the space of thirtie dayes without any aduenture worthie the noting, at length came to a large broad Plaine, wheron stood a brasen piller, whereat seauen seuerall waies deuided, which caused the seauen Knights to forsake each others companie, and to take eue<g ref="char:EOLhyphen"/>ry one a contrary way, where we leaue sixe of the Cham<g ref="char:EOLhyphen"/>pions to their contented trauailes, and wholly discourse vpon the fortunate successe of our worthy English knight, who after some few months trauaile, happily ariued with<g ref="char:EOLhyphen"/>in
<pb n="14" facs="tcp:9661:11"/>
the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>eretories of <hi>Egipt,</hi> which countrie as then was greatly annoyed with a dangerous D<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>gon but before hee had iournied fullie the distance of a <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>, the silent night approched, and solitary stil<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>es tooke poss<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ssion of all liuing thinges, at last he espied <gap reason="illegible" resp="#PDCC" extent="1 span">
<desc>〈…〉</desc>
</gap>, wherein he purposed to rest his ho<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>se, and to take so<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e repast after his wearie iournie, til the <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> had renewed his mornings light that he might f<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>l to <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rauaile ag<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ine: but entring the Cottage, hee found <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> Hermit ouerworne with yeares, and almost consumed with griefe: to whome hee beg<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>n in this manner to conferre.</p>
<p>Father (said hee) for so you seeme by your grauety, may a trauailer for this night craue entertainment within your Cottage, not onely for himselfe but his horse, or is there some Cittie neare at hande, whetherto I may take my iournie without daunger: The oldman starting at the so<g ref="char:EOLhyphen"/>daine approch of <hi>Saint George,</hi> replyed vnto him in this order.</p>
<p>Sir Knight (quoth hee) of thy countrie I néede not de<g ref="char:EOLhyphen"/>maund, for I know it by thy Burgonet, (for indeed thereon was grauen the Armes of England,) but I sorrow for thy <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ard fortune that it is thy destenie to ariue in this our coun<g ref="char:EOLhyphen"/>trie of <hi>Egipt</hi>: Wherein is not left sufficient aliue to burie the dead, such is the distresse of this land, through a dange<g ref="char:EOLhyphen"/>rous and tirrible Dragon now ranging vp and downe the countrie: which if hee bee not euery day appeased with a pure and true virgin, which he deuoureth downe his vene<g ref="char:EOLhyphen"/>mous bowels, but that day so neglected will he breath such a stench from his nostrels, whereof will grow a most grie<g ref="char:EOLhyphen"/>uous plague and mortallity of all thinges, which vse hath beene obserued for these foure and twentie yeares, but now there is not left one true virgin but the Kings only daugh<g ref="char:EOLhyphen"/>ter throughout <hi>Egipt,</hi> which D<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>msell to morrow must bée offered vp in Sacrifice to the Dragon: Therefore the King hath m<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>de Proclam<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>tion, that if any Knight dare proue so aduenterous as to combat with the Dragon, and
<pb n="15" facs="tcp:9661:11"/>
preserue his daughters life<g ref="char:punc">▪</g> shall in reward haue her to his wife, and the Crowne of <hi>Egipt</hi> after his dis<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ase.</p>
<p>This large proffer so incouraged the English Knight that hée vowde eyther to redeeme the Kinges Daugh<g ref="char:EOLhyphen"/>ter, or els to loose his life in that honourable enterprise: So taking his repose and nightly rest in the olde mans Hermi<g ref="char:EOLhyphen"/>tage, till the chearefull Cocke béeing the true messenger of day, gaue him warning of the Sunnes vp-rise, which causd him to bu<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>kle on his Armour, and to furnish his Stéed with strong habilliments of war, the which being done he tooke his iournie guided onely by the olde Hermit to the valley where the kinges Daughter should bee offered vp in Sacri<g ref="char:EOLhyphen"/>fice: But when he approched the sight of the valley, he es<g ref="char:EOLhyphen"/>pied a far off a most fair and beautifull Damsell, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ttired in pure <hi>Arabian</hi> silke going to sacrifice, guarded to the place of death onlie by s<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ge & modest Matrons, which wofull sight so encouraged the English Knight to such a forwardnesse, that he thoght euery <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> a day til he had redéemed the Damsell from the Dragons tyrran<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e: So approching th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Lady, gaue her comfort of deliuerie, and returnde her back to her Fathers Pallace againe.</p>
<p>After this the Noble Knight like a bold aduenterous Champion entred the valley, where the Dragon had his residence, who no sooner had a fight of him, but hee gaue such a tir<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>able y<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ll as though it had thundered in the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>lle<g ref="char:EOLhyphen"/>ments, the bignes of the Dragon was fearef<gap reason="illegible" resp="#PDCC" extent="3 letters">
<desc>•••</desc>
</gap> to behold, for betwixt his shoulders and his tayle were fiftie foote in distance, his scales glistered brighter than siluer, but farre more harder than brasse, his belly of the coloure of gold, but more bigger than a Tun. T<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>us weltred he from his hideo<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>s denne, and fi<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rcely assailed the stu<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>die Champion with his burning winges, that at the first encounter, hée had alm<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>st fell<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>d him to the ground, but the Knight nimbly recouering him selfe, gaue the Dragon such a thrust with his <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>, t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>at it shiuerd in a thousand péeces, whereat the furious Dragon so <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>iercely smote him with his venemous
<pb n="16" facs="tcp:9661:12"/>
tayle, that downe fell man and horse, in which fall two of <hi>Saint Georges</hi> ribs were sore brused, but yet stepping back<g ref="char:EOLhyphen"/>ward, it was his chaunce to leape vnder an Orringe trée, which trée had such pretious vertue, that no venemous worme durst come within the compasse of the braunches, nor within seauen foote thereof, where this valiant Knight rested himselfe vntill he had recouered his former strength: who no sooner féeling his spirits reuiued, but with an eger courage smote the burning Dragon vnder his yellow bur<g ref="char:EOLhyphen"/>nisht bellie with his trustie sworde <hi>Askalon,</hi> whereout came such abundance of venome, that it sprinkled vpon the Champions Armour, whereby immediatly through the impoysoned strength of the venome his Armour burst in twaine, and the good Knight fell into a gréeuous and dead sound, that for a time he lay breathles: but yet hauing that good memorie remayning, that he tumbled vnder the bran<g ref="char:EOLhyphen"/>ches of the Orringe trée; in which place the Dragon could proffer him no further violence. The fruit of the trée was of such an excellent vertue, that whosoeuer tasted thereof should presently bee cured of all manner of diseases and in<g ref="char:EOLhyphen"/>firmities whatsoeuer: So it was the Noble Champions good and happie fortune, a little to recouer through the ver<g ref="char:EOLhyphen"/>tue of the trée, and to espie an Orringe which a little before had dropped downe wherwith he so refreshed himselfe, that hee was in short time as sound as when hee first began the incounter: Then knéeled hee downe and made his diuine supplication to heauen, that God would send him (for his deare sonnes sake) such strength and agillity of body as to slay the furious and tirrable monster, which béeing done, with a bold and couragious heart, hee smote the Dragon vnder the wing, where it was tender without scale, wher<g ref="char:EOLhyphen"/>by his good sworde <hi>Askalon</hi> with an easie passage went to the verie hilts through both the Dragons heart, liuer, bone and blood, whereout issued such aboundance of purple gore, that it turned the grasse which grewe in the valley into a crimson colour, & the ground which before partched through
<pb n="17" facs="tcp:9661:12"/>
the burning stinch of the Dragon, was now drenched with ouermuch moysture which voyded from his venemous bowels, where at last through want of blood, and long con<g ref="char:EOLhyphen"/>tinuance in fight, the Dragon yéelded his vitall spirits to the mercy of the conquering Champion. The which béeing happely performed, the Noble Knight <hi>Saint George</hi> of <hi>England,</hi> first yéelding due honour to Almighty God for the victorie, then with his good sword <hi>Askalon</hi> he cut off the Dragons head and pitcht it vpon the trunchion of a speare, which at the beginning of the battaile hee shiuered against the Dragons scalie backe: During this long and dange<g ref="char:EOLhyphen"/>rous Combat, his trustie Stéede lay altogether in a sounde without any moouing, which caused the English Champi<g ref="char:EOLhyphen"/>on with all spéed to crush the ioyce of an Orringe into hys cold mouth: the vertue whereof, presently expelled the ve<g ref="char:EOLhyphen"/>nemous poysons, and recouered his former strength a<g ref="char:EOLhyphen"/>gaine.</p>
<p>There was as then remayning in the Egiptian Court, one <hi>Almidor</hi> the blacke King of <hi>Moroco,</hi> who long had prosecuted (in the way of marriage) the Loue of <hi>Sabra</hi> the Kinges daughter, but by no pollicie, meanes, nor manhood, could hée accomplish what his har<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> desired: But now find<g ref="char:EOLhyphen"/>ing opportunitie to expresse his trecherous minde, intended to robbe and spoyle <hi>Saint George</hi> of his victorie, whereby he thought to attaine the gratious fauour, and singuler g<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d liking of his Lady and Mistresse, who lothed his companie like the detested Crokadiles, but euen as the Wolfe though all in vaine barkes at the Moone: So this fantasticall and cowardly <hi>Almidor,</hi> through many rich gifts and faire pro<g ref="char:EOLhyphen"/>mises, hired twelue Egiptian Knights to beset the valley where <hi>Saint George</hi> slue the burning Dragon, & by force bereaue him of his conquest: But when this magnani<g ref="char:EOLhyphen"/>mious Champion of <hi>England</hi> came ryding in triumph from the valley, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>spected to haue beene entertained like a Con<g ref="char:EOLhyphen"/>querour with Drums and Trumpets, or to haue heard the belles of <hi>Egipt</hi> rung a ioyfull sound of victorie, or to haue
<pb n="18" facs="tcp:9661:13"/>
haue séene the str<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>etes beautified with bonefires: but con<g ref="char:EOLhyphen"/>trary to his imagination was he met with Troupes of Ar<g ref="char:EOLhyphen"/>med Knights, not to conduct him peacefullie to the <hi>Egipti<g ref="char:EOLhyphen"/>an</hi> Court, but by falshood and trechery to dispoyle him of his life and honour: For ne sooner had he ridden past the entry of the valley, but he espi<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>d how the <hi>Egiptian</hi> Knights bran<g ref="char:EOLhyphen"/>di<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hed their weapons, and deuided themselues to inte<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>c<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>pt him in his iournie to the Court: By which he knew them to be no faithfull friendes, but vowed enemies: So tying his Horse to a Hatkorne trée, he intended to try his fortune on foote for feare of disaduantage, they béeing twelue to one, but in the skirmish <hi>Saint George</hi> so valiantly behaued himselfe with his trustie sword <hi>Askalon,</hi> that at one stroke he slue thrée of the <hi>Egiptian</hi> Knights, and before the golden Diamond of heauen had wandred the zo<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>iack th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> compasse of an houre: but some he dismembred of thei<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> heads: some had their limbes lopt off: some their bodies cut in twaine, & some their intrayles trayling downe, so that not one was left aliue to carrie news to <hi>Almidor</hi> the black King, which stood (during all the time of skirmish) a far off vpon a moun<g ref="char:EOLhyphen"/>taine toppe, to behold the successe of his hired Champions: But when he saw the <hi>Egiptians</hi> bloodie Tragedies, & howe the happie fortune of the English Knight had wonne the honour of the day: hée accursed his destenie, and accused the Quéene of chaunce with crueltie, for disapointing hys pretended enterprise, but hauing a heart fr<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ught with all wicked motions<g ref="char:punc">▪</g> s<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>cretlie vowed in his soule, to practise by some other trechery <hi>S. Georges</hi> vtter confusion: So <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>un<g ref="char:EOLhyphen"/>ning before to the Court of King <hi>Ptolomie,</hi> not reueali<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>g what had hapned to the twelue <hi>Egiptian</hi> Knights, but <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ry<g ref="char:EOLhyphen"/>ing in euery place as he went, <hi>Victoria, Victoria,</hi> the ene<g ref="char:EOLhyphen"/>mie of <hi>Egipt</hi> is slaine. Then <hi>Ptolomie</hi> commaunded euer<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e stréet of the Citty to be hung with rich Ar<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>as & imbrothere<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Tapestry, and likewise prouided a sumptu<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>us Charriot of gold, the wheeles and other timb<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> worke of the purest <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>bonie, the couering thereof was made of purple silke, crosse
<pb n="19" facs="tcp:9661:13"/>
b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rde with sta<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>es of gold: Likewise a hundred of the Noblest Péeres of <hi>Egipt,</hi> attired in Crimson Ueluet and white, mounted on milke white Coursers with rich Capa<g ref="char:EOLhyphen"/>rison attended the co<g ref="char:cmbAbbrStroke">̄</g>ming of <hi>S. George:</hi> Thus all things apopinted for his Honourable intertainement, which they performed in such solemne order, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hat I lacke memorie to discribe it: For when he first entered the gates of the Cit<g ref="char:EOLhyphen"/>tie, he heard such a mellodious h<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rmonie of heauenly soun<g ref="char:EOLhyphen"/>ding Musicke, that it séemed in his conceite to surpasse the sweetnes of the Cherubins, or the holy company of Angels: Then they most Royally presented him with a sump<g ref="char:EOLhyphen"/>tuous and co<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ly Pale of gold, and after inuested him in that Iuorie Charriot, wherin he was conducted to the Pal<g ref="char:EOLhyphen"/>lace of King <hi>Ptolomie,</hi> where this Nobl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>nd Princeli<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> minded Champion, surrendred vp his conquest and victorie to the séemelie handes of the beautious <hi>Sabra</hi>: where shée with like curtesie and more humillity requited his bountie: For at the f<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>st sight of the English Knight, she was so ra<g ref="char:EOLhyphen"/>uished with his Princely countenance, that for a time shée was not able to speake: Yet at last taking him by the hand she led him to a rich pauillion, where she vnarmed him, and with most precious sal<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>s imbalmed his woundes, & with her <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>eares washed away the blood, which being done she fur<g ref="char:EOLhyphen"/>nished a table with all manner of dillicates for his repast, where her Father was present, who demaunded his Coun<g ref="char:EOLhyphen"/>try<g ref="char:punc">▪</g> P<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rentage & name: after the banq<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>et was ended, he in<g ref="char:EOLhyphen"/>sta<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d him with the hon<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ur of Knighthood, and put vpon his féete a paire of golden spurres: But <hi>Sabra</hi> who féeding vp<g ref="char:EOLhyphen"/>pon the banquet of his loue, conducted him to hys nightes repose, where she sate vpon hys bed and wa<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> bl<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> forth most heauenly melody vppon her Lute, till his sences were ouer<g ref="char:EOLhyphen"/>come with <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> asweet and silent sléepe, where she left hym for that night after <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> dangerous battaile: But no sooner did <hi>Auroraes</hi>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>adi<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>nt blush, distaine the beauty of the East, and the sun shew his morning countenance, but <hi>Sabra</hi> repayred to the English Champions lodging, and at his fi<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>st vpri<g ref="char:EOLhyphen"/>sing
<pb n="20" facs="tcp:9661:14"/>
presented him with <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Diamond of most rare and excel<g ref="char:EOLhyphen"/>lent vertue, the which he wore vpon his finger: The next that entered his lodging, was the Trecherous <hi>Almidor</hi> the blacke King of <hi>Moroco,</hi> hauing in his hand a boule of Greeki<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>h Wine<g ref="char:punc">▪</g> which hee offe<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ed to the Noble Champion <hi>Saint George</hi> of <hi>England</hi>
<g ref="char:punc">▪</g> but at the receaite thereof, the Diamond the Lady gaue him which he wore vpon his fin<g ref="char:EOLhyphen"/>ger waxed pale, and from his nose felt thrée droppes of blood, whereat he started: which sodaine accident caused the kings daughter to suspect some secret poyson compounded in the Wine, and thereupon so vehemently s<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>riked, that a sodaine vprore presently ouerspread the whole Court, whereby it came to the Kinges intelligence of the proffered Trecherie of <hi>Almidor</hi> against the English Champion: But so beare was the loue of the Egiptian King, to the blacke King of <hi>Moroco,</hi> that no beliefe of Trecherie could enter into hys minde.</p>
<p>Thus <hi>Almidor</hi> the second time was preuented of hys pr<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ctise, whereat in minde he grew more inraged than the chafed Bore: yet thinking the third should pay for all· So <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> spying a time wherein to worke his wicked purpose, which he brought to passe in this manner.</p>
<p>Many a day r<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>mained <hi>Saint George</hi> in the Egiptian Court, sometimes reu<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>lling am<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ngst Gentlemen, dancing and sporting with Ladies, other s<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>m<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> in Tilts and Turni<g ref="char:EOLhyphen"/>m<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>nts, with other Honourable exercises: Likewise long and extreame was the loue that beautious <hi>Sabra</hi> bore to the English Champion, of the which this Trecherous <hi>A<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>mi<g ref="char:EOLhyphen"/>dor</hi> had intelligence by many secret practises, and manie times his eares were witnes of their discourses: So vpon an Euening, when the gorgious Sunne lay l<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>uell with the ground, it was his fortune to walke vnder a Garden wall, to take the coolenes of the Euenings aire, where vnseene of the two Louers, hee heard their amorous discourses a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> they sate dallyin<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> in the bower of Roses, Courting <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>nother in this manner.</p>
<p>
<pb n="21" facs="tcp:9661:14"/>My soules delight, my hearts choose comfort<g ref="char:punc">▪</g> swéet<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<hi>George</hi> of <hi>England,</hi> saide the loue-séeke <hi>Sabra!</hi> Why art thou more obdurate than the Flint: which the teares of my true heart can neuer mollifie? How many thousand sighes haue I breathde for thy sweete sake, which I haue sent to thée as true messe<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>gers of loue, yet neue<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> wouldst thou re<g ref="char:EOLhyphen"/>quite mée with a smiling countenance. Refuse not her deare Lord of England, that for thy loue will forsake hir Parents, Countrie and Inheritance, which is the Crowne of <hi>Egipt,</hi> and like a Pilgrime f<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>llowe thee throughout the wide world. O therefore knit that gordion knot of wed<g ref="char:EOLhyphen"/>locke, that none but death can afterwards vnty, that I may say the Sunne shall loose his brightnesse, the Moone her sple<g ref="char:cmbAbbrStroke">̄</g>
<g ref="char:EOLhyphen"/>dant be<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>mes, the Sea her <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ides, and all thing<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>s vnder the cope of heauen grow contrarie to kinde, before <hi>Sabra</hi> the Heire of <hi>Egipt</hi> prooue vnconstant to her deare <hi>S. George</hi> of <hi>England.</hi>
</p>
<p>Th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>se wordes so fiered the Champions heart, that hée was almost intangled in the snares of loue, which before time onlie aff<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>cted Martiall discipline: But yet to trie pa<g ref="char:EOLhyphen"/>tience, a littl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> more, made her this a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>swere. Ladie of <hi>Egipt,</hi> cans<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> thou not bee content that I haue ventured my <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> to set thée free from death, but that I should linke my f<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ture fortunes in a womans l<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ppe, and so burie all my Ho<g ref="char:EOLhyphen"/>nours in Obliuion? No, no <hi>Sabra George</hi> of <hi>England</hi> is a Knight borne in a Countrie where tru<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> C<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>iualrie is n<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>u<g ref="char:EOLhyphen"/>risht, and hath sworne to search the world so far as euer the Lam<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e of Heauen doth lend his light, before he tie himselfe to the troublesome state of marriage<g ref="char:punc">▪</g> therefore attempt me no more, that am a stranger and a wanderer from place to place, but s<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>k to aime at higher States, as the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ing of <hi>Mo<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>roco,</hi> who will attempt to climbe the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>uens <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> gayn<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> loue and good liking: at which spéeches shee sodainely <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> in this manner.</p>
<p>The King of <hi>Moroco</hi> is as bloody minded as a Serpent, but thou more gentle th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>n a Lamb, his tongue as ominous
<pb n="22" facs="tcp:9661:15"/>
as the scriking night Owle<g ref="char:punc">▪</g> but thine more swéeter than the morninges Larke, his kind imbracinges like the sting<g ref="char:EOLhyphen"/>ing Snakes, but thine more pleasant than the creeping vine: <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>at if thou béest a Knight of a strange countrie? thy bo<g ref="char:EOLhyphen"/>dy is more precious to myne eyes than Kingdomes in my heart. There stay (replyed the English Champion,) I am a Christian, thou a Pagan: I honour God in heauen, thou earthly shadowes below: therefore if thou wilt obtaine my loue and liking, thou must forsake thy <hi>Mahomet</hi> and bée christned in our Christian faith. With al my soule (answe<g ref="char:EOLhyphen"/>red the <hi>Egiptian</hi> Lady) will I forsake my country Gods, & for thy loue become a Christian, and therewithall she burst a ring in twaine, the one halfe she gaue to him in pledge of Loue, & kept the other halfe her selfe: and so for that time departed the Garden.</p>
<p>But during all the time of their discourses, the Treche<g ref="char:EOLhyphen"/>rous minded <hi>Almidor</hi> stood listning to their spéeches, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> fret<g ref="char:EOLhyphen"/>ted inwardly to the verie gall to heate the Mistresse of hys hart, reiect hys former curtesies: Therfore intending now or neuer to infringe their plighted band, went in all hast to the <hi>Egiptian</hi> King, and in this maner made his suplication.</p>
<p>Know great M<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>narke of the East, that I haue a secret to vnfold, which toucheth nerely the sauegard of your coun<g ref="char:EOLhyphen"/>trey: It was my chance this Euening at shutting vp of <hi>Titons</hi> golden gates, to take the comfort of the Western<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> breathing aire vnder your priuate Garden walkes, where I heard (though all vnséene) a déepe pretended Treason be<g ref="char:EOLhyphen"/>twixt your Daughter and the English Knight, where shée hath vowde to forsake her God and beléeue as the Christi<g ref="char:EOLhyphen"/>ans doo, and likewise shée intendes to flye from her natiue Countrie, and to goe with this wandring trauailer, which hath béene so highly honoured in your Court.</p>
<p>Now by <hi>Mahomet, Apollo,</hi> and <hi>Termagaunt,</hi> thrée Gods we <hi>Egiptians</hi> commonly ador<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> (sayde the King) this damned Christian shal not gaine the conquest of my daugh<g ref="char:EOLhyphen"/>ters loue, for hée shall loose hys head, though not by vio<g ref="char:EOLhyphen"/>lence
<pb n="23" facs="tcp:9661:15"/>
in our <hi>Egiptian</hi> Court: Therefore <hi>Almidor</hi> bee se<g ref="char:EOLhyphen"/>cret in my intent, for I will send him to my cosen the <hi>Persi<g ref="char:EOLhyphen"/>an</hi> Soldan, from whence he neuer shall returne to <hi>Egipt</hi> a<g ref="char:EOLhyphen"/>gaine, except hys Ghost bring newes of bad successe vnto my Daughter, and thereuppon they presentlye contriued this Letter.</p>
<floatingText type="letter">
<body>
<head>The Letter to the Soldan of Persia.</head>