-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA49886.xml
3592 lines (3592 loc) · 343 KB
/
A49886.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>Dr. Franciscus de le Boe Sylvius Of childrens diseases given in a familiar style for weaker capacities. With an apparatus or introduction explaining the authors principles: as also a treatise of the rickets. By R. G. physician.</title>
<author>Le Boë, Frans de, 1614-1672.</author>
</titleStmt>
<editionStmt>
<edition>
<date>1675</date>
</edition>
</editionStmt>
<extent>Approx. 174 KB of XML-encoded text transcribed from 90 1-bit group-IV TIFF page images.</extent>
<publicationStmt>
<publisher>Text Creation Partnership,</publisher>
<pubPlace>Ann Arbor, MI ; Oxford (UK) :</pubPlace>
<date when="2011-12">2011-12 (EEBO-TCP Phase 2).</date>
<idno type="DLPS">A49886</idno>
<idno type="STC">Wing L803B</idno>
<idno type="STC">ESTC R222031</idno>
<idno type="EEBO-CITATION">99833270</idno>
<idno type="PROQUEST">99833270</idno>
<idno type="VID">37745</idno>
<availability>
<p>To the extent possible under law, the Text Creation Partnership has waived all copyright and related or neighboring rights to this keyboarded and encoded edition of the work described above, according to the terms of the CC0 1.0 Public Domain Dedication (http://creativecommons.org/publicdomain/zero/1.0/). This waiver does not extend to any page images or other supplementary files associated with this work, which may be protected by copyright or other license restrictions. Please go to https://www.textcreationpartnership.org/ for more information about the project.</p>
</availability>
</publicationStmt>
<seriesStmt>
<title>Early English books online.</title>
</seriesStmt>
<notesStmt>
<note>(EEBO-TCP ; phase 2, no. A49886)</note>
<note>Transcribed from: (Early English Books Online ; image set 37745)</note>
<note>Images scanned from microfilm: (Early English books, 1641-1700 ; 2172:17)</note>
</notesStmt>
<sourceDesc>
<biblFull>
<titleStmt>
<title>Dr. Franciscus de le Boe Sylvius Of childrens diseases given in a familiar style for weaker capacities. With an apparatus or introduction explaining the authors principles: as also a treatise of the rickets. By R. G. physician.</title>
<author>Le Boë, Frans de, 1614-1672.</author>
<author>R. G. (Richard Gower). aui</author>
</titleStmt>
<extent>[22], 148, [2] p. </extent>
<publicationStmt>
<publisher>printed for George Downs at the Three Flower de Luces in Fleet-street, over against St. Dunstan's Church,</publisher>
<pubPlace>London :</pubPlace>
<date>1682.</date>
</publicationStmt>
<notesStmt>
<note>"The apparatus", a technical introduction on medicine, signed: Richard Gower, who was also translator and author of the marginal notes.</note>
<note>A translation; original title not traced.</note>
<note>With a final contents leaf.</note>
<note>Copy tightly bound with loss of text.</note>
<note>Reproduction of the original in the British Library.</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,368 texts created during Phase 1 of the project (2000-2009), initially available only to institutions that contributed to their creation, were released into the public domain on 1 January 2015. The approximately 40,000 texts produced during Phase 2 (2009- ), of which 34,963 had been released as of 2020, originally similarly restricted, were similarly freed from all restrictions on 1 August 2020. As of that date anyone is free to take and use these texts for any purpose (modify them, annotate them, distribute them, etc.). But we do respectfully request that due credit and attribution be 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>Children -- Diseases -- Early works to 1800.</term>
<term>Diseases -- Causes and theories of causation -- Early works to 1800.</term>
<term>Medicine -- Early works to 1800.</term>
</keywords>
</textClass>
</profileDesc>
<revisionDesc>
<change>
<date>2011-01</date>
<label>TCP</label>Assigned for keying and markup</change>
<change>
<date>2011-01</date>
<label>SPi Global</label>Keyed and coded from ProQuest page images</change>
<change>
<date>2011-02</date>
<label>Leah Yurasek</label>Sampled and proofread</change>
<change>
<date>2011-02</date>
<label>Leah Yurasek</label>Text and markup reviewed and edited</change>
<change>
<date>2011-06</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:37745:1" rendition="simple:additions"/>
<p>Dr. <hi>Franciſcus de le Boe Sylvius</hi> OF Childrens Diſeaſes: Given in a familiar ſtyle for weaker capacities. WITH AN APPARATUS OR Introduction explaining the Au<g ref="char:EOLhyphen"/>thors Principles: As alſo a TREATISE OF THE RICKETS.</p>
<p>By <hi>R. G.</hi> Phyſician.</p>
<q>
<gap reason="foreign">
<desc>〈 in non-Latin alphabet 〉</desc>
</gap>
<bibl>Hip.</bibl>
</q>
<q>Rectè curaturum, quem prima origo Cauſae non fefellerit. <bibl>Celſus de Med.</bibl>
</q>
<p>
<hi>London,</hi> Printed for <hi>George Downs</hi> at the <hi>Three Flower de Luces</hi> in <hi>Fleet-ſtreet,</hi> over againſt St. <hi>Dunſtan</hi>'s Church. 1682.</p>
<pb facs="tcp:37745:2" rendition="simple:additions"/>
<pb facs="tcp:37745:2" rendition="simple:additions"/>
<gap reason="duplicate" extent="1 page">
<desc>〈1 page duplicate〉</desc>
</gap>
</div>
<div type="dedication">
<pb facs="tcp:37745:3"/>
<pb facs="tcp:37745:3" rendition="simple:additions"/>
<head>THE Epiſtle Dedicatory.</head>
<floatingText type="letter" xml:lang="eng">
<body>
<head>
<hi>To the Right Worſhip<g ref="char:EOLhyphen"/>ful Sir</hi> Nathaniel Johnſon <hi>May<g ref="char:EOLhyphen"/>or, Sir</hi> Robert Shafto <hi>Recor<g ref="char:EOLhyphen"/>der, Sir</hi> Ralph Carr, <hi>Sir</hi> Ralph Jenniſon; Henry Brabant, Ti<g ref="char:EOLhyphen"/>mothy Daviſon, Robert Rod<g ref="char:EOLhyphen"/>dam, Matthew Jeffreyſon, George Norton, Timothy Robſon, Ni<g ref="char:EOLhyphen"/>cholas Fenwick, <hi>Eſquires, Al<g ref="char:EOLhyphen"/>dermen;</hi> Joſeph Bonner <hi>Eſ<g ref="char:EOLhyphen"/>quire, Sheriff.</hi>
</head>
<opener>
<salute>SIRS,</salute>
</opener>
<p>YOu need not impute it to any other reaſon, beſides your own ver<g ref="char:EOLhyphen"/>tues, that I have preſumed to ſhrowd theſe weak labours un<g ref="char:EOLhyphen"/>der
<pb facs="tcp:37745:4"/>the Wings of your Patro<g ref="char:EOLhyphen"/>nage: For though the ſmall<g ref="char:EOLhyphen"/>neſs of the work may ſeem to argue too much Ambition in the Author, yet the greatneſs of your favours, makes it a du<g ref="char:EOLhyphen"/>ty indiſpenſible to</p>
<closer>
<signed>Your obliged and hum<g ref="char:EOLhyphen"/>ble Servant, <hi>Richard Gower.</hi>
</signed>
<dateline>From the <hi>Spittle</hi> in <hi>Newcaſtle</hi> up<g ref="char:EOLhyphen"/>on <hi>Tine.</hi>
</dateline>
</closer>
</body>
</floatingText>
</div>
<div type="introduction">
<pb facs="tcp:37745:4"/>
<head>THE APPARATUS.</head>
<p n="1">
<hi>1.</hi> THAT this Book might be the more beneficial, I have (not as in tranſla<g ref="char:EOLhyphen"/>ting the Authors firſt Book) omit<g ref="char:EOLhyphen"/>ted many repetitions<note n="*" place="margin">In Chap. 5.34 Se<g ref="char:EOLhyphen"/>ctions are left out, in others ſe<g ref="char:EOLhyphen"/>veral.</note>, as alſo re<g ref="char:EOLhyphen"/>flections upon his Antagoniſts, avoid<g ref="char:EOLhyphen"/>ed many terms of Art, giving them in a plainer dreſs, not confining my ſelf to a verbal Tranſlation: yet without any material alteration or omiſſion.</p>
<p n="2">
<hi>2.</hi> And that his <hi>Firſt Book of Practice,</hi> together with <hi>this Trea<g ref="char:EOLhyphen"/>tiſe
<pb facs="tcp:37745:5"/>of Childrens Diſeaſes,</hi> may be plain to an ordinary capacity, have explained ſome of his Terms and ſet down his <hi>Principles,</hi> which being well weighed, will lead you to a true and right underſtanding of any of his writings.</p>
<p n="3">
<hi>3.</hi> Alſo, that I may not be ſhor<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> in this my bounty, if any difficulty be found either in the Theory o<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Practice, I am freely willing by Word or Writing to clear it unto any, although I have added Margi<g ref="char:EOLhyphen"/>nal notes.</p>
<p n="4">
<hi>4.</hi> Yet if any, as I know many, will ſnarl at me for this my candour, Envy moves them, I value it not: For ſeeing in our Countrey men ge<g ref="char:EOLhyphen"/>nerally are permitted a liberty to pra<g ref="char:EOLhyphen"/>ctiſe, and in the words of <hi>Hippo<g ref="char:EOLhyphen"/>crates,</hi> have <hi>no other puniſh<g ref="char:EOLhyphen"/>ment for their Errors than Diſ<g ref="char:EOLhyphen"/>grace:</hi>
<pb facs="tcp:37745:5"/>It will appear that I wiſh well unto the publick, when I would have them well inſtructed. Nay further, I doubt not but many will cenſure me, who yet will be glad of this help. And as I know it is the beſt<note n="*" place="margin">See the Authors Preface to his Firſt Book.</note> guide a Phyſician can have; ſo I am the more bold to venture my credit upon it.</p>
<p n="5">
<hi>5. Aromatical Plants</hi> are ſuch as have a fragrant ſmell, as Mint, Balm, <hi>&c.</hi>
</p>
<p n="6">
<hi>6. Fermentation</hi> is that change which meat undergoes in the Ventri<g ref="char:EOLhyphen"/>cle (or Stomach): called of old Di<g ref="char:EOLhyphen"/>geſtion or Concoction. Not unlike that of Wheat with Leaven, its ſlower having a proportion of Spi<g ref="char:EOLhyphen"/>rits, Salt and Sulphur, which be<g ref="char:EOLhyphen"/>ing moiſtened, every of thoſe Parti<g ref="char:EOLhyphen"/>cles are wrought upon by the Leaven, as the parts of our food are wrought
<pb facs="tcp:37745:6"/>upon by the Conflux of humours in the Stomach, thereby loſing their toughneſs; It being an approved Maxime in Chymiſtry, that <hi>Where Salts of different natures meet, they work upon one another:</hi> as you may ſee in §. <hi>10.</hi> below: Our meat thus fermented is called <hi>Chyle.</hi> We take it for granted, that the humour (or humours) which cauſe this fermentation in the Sto<g ref="char:EOLhyphen"/>mach comes not from the Spleen, ſee<g ref="char:EOLhyphen"/>ing no paſſage from the Spleen to the Stomach could ever be demonſtrated in Anatomy; as Dr. <hi>Willis</hi>
<note n="*" place="margin">De Fer<g ref="char:EOLhyphen"/>ment. Cap. <hi>5.</hi>
</note> con<g ref="char:EOLhyphen"/>feſſes, though to his diſadvantage; thence judging it probable, that the remainder of Chyle in the Stomach being ſowred by its abode there, fer<g ref="char:EOLhyphen"/>ments the meat next eaten; a very unlikely notion, and below a man of his fame; as though between every
<pb facs="tcp:37745:6"/>it could grow ſo ſowre as to ferment the next, as Leaven does the Dough: Surely he has not uſed the rule of proportion right, to take hours for days or weeks.</p>
<p n="7">
<hi>7.</hi> That meat rightly ferment, its parts muſt firſt be looſe, and rea<g ref="char:EOLhyphen"/>dy to be diſ-joyned from one another, thus chewing helpeth fermentation. Hard, tough and dried meat digeſt ſlowly: Bread and moiſt food ſoon: Beer, Broth and any liquid thing ſooner. Wine, Strong drink, <hi>&c.</hi> eſpecially warmed, ſooneſt; yea, they are too quick for Fermentation, nou<g ref="char:EOLhyphen"/>riſhing the body in an inſtant.</p>
<p n="8">
<hi>8.</hi> Secondly, It muſt neither be too raw, nor too ripe. If the firſt, its active parts are not freed eaſily from the thicker, and ſo move not, without which Fermentation cannot be: thus green fruits are not fit for eating, or
<pb facs="tcp:37745:7"/>to make drink of. If the latter, it inclines to putrefaction, the vola<g ref="char:EOLhyphen"/>tile parts leaving the reſt: thus over<g ref="char:EOLhyphen"/>ripe fruits are not fit to make liquors of, becauſe they ſoon putrifie or rot: and if eaten, breed Worms, as do the green.</p>
<p n="9">
<hi>9.</hi> Thirdly, It muſt conſiſt of parts different in nature, as it were making a confuſion in the whole: ſome parts oppoſing others, which cauſe motion, each different part contend<g ref="char:EOLhyphen"/>ing with other for dominion. Where<g ref="char:EOLhyphen"/>as if it conſiſt all of one Element, it is quiet and ſtill, and cannot op<g ref="char:EOLhyphen"/>poſe it ſelf. As all our meat has Spirit, Salt and Sulphur in it, though not ſo ſenſible to taſte, as de<g ref="char:EOLhyphen"/>monſtrable by Chymiſtry: So the humours of our body conſiſting of different principles (as you may ſee below) and being in conſtant motion
<pb facs="tcp:37745:7"/>to the Stomach, where it meets with our meat; cauſe a confuſed and un<g ref="char:EOLhyphen"/>expreſſible efferveſcency both with each other, and alſo with our food.</p>
<p n="10">
<hi>10.</hi> An <hi>Efferveſcency</hi> is an op<g ref="char:EOLhyphen"/>poſition (like unto boiling) of two contrary liquors, as may be ſeen by mixing <hi>Oil of Vitriol</hi> (a ſharp ſowre liquor) and <hi>Spirit of Sal Armoniac</hi> (a Lee Salt) together, which will alſo heat the Glaſs where<g ref="char:EOLhyphen"/>in they are. So <hi>the juice of the Sweet-bread</hi> of a Sowre, and <hi>Choler</hi> of a Lee-Salt; theſe two I ſay meeting in the Stomach fight thus together, and raiſe an effer<g ref="char:EOLhyphen"/>veſcency, by which (with freſh ſup<g ref="char:EOLhyphen"/>ply) continued, our meat is di<g ref="char:EOLhyphen"/>geſted.</p>
<p n="11">
<hi>11. Choler</hi> is bred of the Oily and Lee-Salt parts of the blood, and
<pb facs="tcp:37745:8"/>ſeparated from it in the Liver; from thence carried into a Bladder, or lit<g ref="char:EOLhyphen"/>tle bag joined to the Liver, and whoſe office is to contain it, ſending much of it through <hi>one paſſage to the ſmall Gut</hi> and Stomach; and a little of it through <hi>another paſſage to the Heart.</hi>
</p>
<p n="12">
<hi>12.</hi> The juice of the <hi>Sweet-Bread</hi> proceeds from the ſowre part of the Blood, and is ſeparated from it in the kernels of the Sweet-Bread, which like a cuſhion are placed under the Sto<g ref="char:EOLhyphen"/>mach: This juice is conveyed through many ſmall paſſages into a middle (the great) paſſage, along which it continually moves into the Gut. It and Choler having but one open into the Gut about three fingers breadth off the Stomach.</p>
<p n="13">
<hi>13. Spittle</hi> or <hi>Lympha</hi> (whence the <hi>Lymphatick paſſages)</hi> and
<pb facs="tcp:37745:8"/>
<hi>liquor Nervoſus</hi> therein is much of the nature of the juice of the Sweet-Bread, but not ſo ſowre, yet promotes fermentation in the Sto<g ref="char:EOLhyphen"/>mach, though it be rather inſipid in healthy people. It moves through a ſmall paſſage at each jaw into the mouth; of it is bred Phlegm in the Stomach and Guts, daubed and as it were plaiſtered about their in<g ref="char:EOLhyphen"/>ſides.</p>
<p n="14">
<hi>14.</hi> The <hi>Small</hi> and upper <hi>Guts</hi> are <hi>Duodenum,</hi> twelve fingers breadth long: <hi>Jejunum,</hi> that is, hungry, being moſtwhat empty: <hi>Ileon,</hi> whence Iliack Paſſion, com<g ref="char:EOLhyphen"/>monly called, twiſting of this Gut.</p>
<p n="15">
<hi>15.</hi> The <hi>Thick Guts</hi> are <hi>Cae<g ref="char:EOLhyphen"/>cum,</hi> above an inch long; <hi>Colon,</hi> a long Gut wherein is the Cho<g ref="char:EOLhyphen"/>lick; <hi>Rectum</hi> joins to the fun<g ref="char:EOLhyphen"/>dament; out of which the dregs
<pb facs="tcp:37745:9"/>of Chyle are ſent by Stool.</p>
<p n="16">
<hi>16.</hi> When meat is fermented in the Stomach, which is done by the conflux of Choler, Spittle, and the juice of the Sweet-bread thither, <hi>the lower Orifice</hi> (or end) of it opens of it ſelf to admit the Chyle into the Guts, which ſtill receiving more and more of thoſe Humours is bet<g ref="char:EOLhyphen"/>ter fermented, and by a <hi>Natural,</hi> called <hi>Periſtaltick Motion</hi> in the Stomach and Guts, whereby they carry downward any thing that is in them: While Chyle moves thus downward, the fineſt and beſt digeſt<g ref="char:EOLhyphen"/>ed parts ſtrain through <hi>the pores of the Guts</hi> which are <hi>unperceiva<g ref="char:EOLhyphen"/>ble</hi> (ſo that you may fill a dead bo<g ref="char:EOLhyphen"/>dies Guts with wind, and it cannot get vent): This Chyle got through the Guts moves along the <hi>Milky veins,</hi> which all meet in a Kernel
<pb facs="tcp:37745:9"/>(called <hi>Pancreas Aſellii</hi>) cloſe to the back-bone about the Loins, where it ſtill moves higher in a ſmall paſ<g ref="char:EOLhyphen"/>ſage called <hi>Ductus Thoracicus</hi> (or rather <hi>Spinalis</hi>) which always ha<g ref="char:EOLhyphen"/>ving in it a humour like that of the Sweet-bread mixes with it as it goes into the <hi>Jugular</hi> or <hi>Axillar left Vein,</hi> and ſo into the great <hi>Hollow Vein,</hi> where it mixes with the Blood, with which it goes into thoſe cavities of the Heart called, <hi>the Right Ear and Belly of the Heart, and the Vein of the Lungs;</hi> out of which being poured <hi>through the ſubſtance of the Lungs into the Vein of the Lungs,</hi>
<note place="margin">Vena & Arter. Pal<g ref="char:EOLhyphen"/>monal.</note> it goes on unto <hi>the left Ear of the Heart, and its left Ventricle.</hi>
</p>
<p n="17">
<hi>17.</hi> So that Chyle begins to be changed into Blood in the Jugular
<pb facs="tcp:37745:10"/>Vein, but is perfected in the leſ<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ventricle of the Heart; where i<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> opens its paſſage more and more till by that diſplaying, the provoke<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Heart contracts its Muſculous ſub<g ref="char:EOLhyphen"/>ſtance by the help of its Animal Spi<g ref="char:EOLhyphen"/>rits which forces the Blood forward mean while raiſing an Efferveſcen<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> between the Oily Volatile Salt i<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Choler, and the juice of the Sweet<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> bread; Whereby the various part of the whole are diſunited, and loo<g ref="char:EOLhyphen"/>ſed from their Fetters, and inſinuat themſelves into the <hi>Oily</hi> and <hi>Fa<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> parts,</hi> both of the <hi>Blood,</hi> and alſ<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> of <hi>Chyle,</hi> as the proper ſubject o<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> their Action, <hi>rarifying</hi> the ſame and <hi>changing</hi> the other parts mor<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> or leſs mixt with them, that our <hi>Life may be continu'd;</hi> and Blood mov'd any whither; re<g ref="char:EOLhyphen"/>pairing all parts of the Body, a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<pb facs="tcp:37745:10"/>they are perpetually more or leſs con<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>in'd. And leſt this Efferve<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ency ſhould over-heart the Blood, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e Lungs by Air ſuck'd in; mild<g ref="char:EOLhyphen"/>temper its heat and warmneſs.</p>
<p n="18">
<hi>18.</hi> Blood thus perfected in both <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ellies or Ventricles of the Heart, carried at laſt through the num<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rleſs Branches of the <hi>Aorta</hi> or <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>eat Artery to all parts of the Bo<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>, <hi>whereby they are nou<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ſht,</hi> and out of it, Liquors <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>rther <hi>uſeful</hi> or unuſeful for <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>eir diſpenſing in Mans Body, <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>e ſeparated in ſeveral places, <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d again <hi>ſent back</hi> to the <hi>Maſs <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> Blood,</hi> or <hi>are ſent out of the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ody,</hi> while the Blood is in its <hi>re<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>procal</hi> and <hi>Circular Motion,</hi>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>lled <hi>Circulation.</hi>
</p>
<p n="19">
<hi>19.</hi> The Great Artery ſends two <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>anches up to <hi>the Head,</hi> (the Pulſe
<pb facs="tcp:37745:11"/>of which may be felt on each ſide <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> Wind-pipe) another to <hi>each Arm<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
</hi> another along the <hi>Back-bone;</hi> a<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<hi>each Thigh;</hi> even into every <hi>T<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
</hi> and <hi>Finger,</hi> nay to every part the body; Still like a Tree, <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> further it goes, the more ſm<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> branches it ſends forth <hi>to nouri<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> every part of the Body.</hi>
</p>
<p n="20">
<hi>20.</hi> In the brain, the Ble<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> affords matter for the Animal Spir<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> which are ſever'd from it in <hi>Brain</hi> and <hi>Cerebellum</hi> (or b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>der-brain) which is ſent all over their continued Marrow as it were a pipe into the Nerves, whereby not only <hi>exerciſe the extern<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Senſes</hi> and animal <hi>Motion,</hi> but t<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<hi>humours are all temper'd,</hi> a<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<hi>Seed primarily generated</hi> by in the Teſticles.</p>
<p n="21">
<hi>21.</hi> Of the Blood is <hi>Spit<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
</hi>
<pb facs="tcp:37745:11"/>bred, in <hi>the kernels of the Jaws:</hi>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> the <hi>other kernels Lympha;</hi>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> the <hi>Sweet-bread, its juice:</hi>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> my Authors opinion) <hi>Choler,</hi> in <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<hi>Bag:</hi> In the <hi>Kidneys,</hi> its <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>heyiſh parts go into <hi>the Ureters,</hi>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d ſo into the <hi>Bladder.</hi>
</p>
<p n="22">
<hi>22.</hi> As the Blood is conveyed all <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>er the body in Arteries to nouriſh <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> and the nouriſhing blood is thence <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>lled <hi>arterial blood;</hi> ſo has God <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>onderfully contrived, that it ſhould ſent from every remote part in <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>all veins, which grow ſtill big<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>r and fewer till they come to the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>art, where with freſh Chyle and <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hat humours it there meets with, a <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>nſtant <hi>Efferveſcency</hi> is main<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ined.</p>
<p n="23">
<hi>23.</hi> If this Efferveſcency be <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ulty, which it always is, when <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>y of the aforeſaid humours are
<pb facs="tcp:37745:12"/>out of temper; it alſo makes t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> body ſo. As for Example, if t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Oily Salt in Choler abound, it cauſ<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> a Fever; different according to t<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> depravation of the juice of the Swee<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> bread, which by a various efferv<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ſcency produces different effects: that juice be very ſowre or ſharp, cauſes pains in any part, afflict<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> by it. If much and tough Phleg<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> be in the Stomach it dulls the app<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>tite, if in the Guts, it will fen<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> them againſt pain, and make Chy<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> Phlegmatick, and the blood alſo If little be there, the Guts will <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> the eaſier griped. The juice of th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Sweet-bread being very ſharp, w<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> cauſe great Appetite, better dig<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ſtion than nouriſhment (whic<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> more depends on the good tem<g ref="char:EOLhyphen"/>per of Choler) it will gripe th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> bowels, and if its ſowre va<g ref="char:EOLhyphen"/>pours
<pb facs="tcp:37745:12"/>get to the heart, it will much <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ate the vital Efferveſcency there, <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d cauſe Swouning-fits, <hi>&c.</hi> Get<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ng to the Brain they will breed the <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>lling-Sickneſs, by pricking the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>erves.</p>
<p n="24">
<hi>24.</hi> As theſe Humours are joint<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> or ſeverally more affected, and <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>uble one part of the body more an another; ſo, various diſtempers <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ſe, too tedious to ſet down here at <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ge; and which you may ſee illu<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ated in the following diſcourſe, <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>d alſo in the Authors firſt book. I ſhall conclude with telling you, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>t I have expoſed my <hi>Oily Vo<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ile Salt</hi> to ſale only at my bro<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>rs, Mr. <hi>Robert Gower,</hi> Apo<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>cary, at the <hi>Black-ſpread-Ea<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>e</hi> in <hi>Fleet-ſtreet,</hi> and at my <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>okſellers ſhop, and in no other <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ce in <hi>London:</hi> with printed
<pb facs="tcp:37745:13"/>directions for its uſe. And fo<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſatisfaction could be willing to ſhe<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> any, that I do actually incorpora<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> the Oil and Salt together, and <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> not barely Aromatize the Salt, <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> many pretenders do; which is <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> groſs abuſe to our Authors <hi>Oil Volatile Salt.</hi>
</p>
</div>
</front>
<body>
<div type="text">
<pb n="1" facs="tcp:37745:13"/>
<head>OF Childrens Diſeaſes.</head>
<div n="1" type="chapter">
<head>
<hi>CHAP. I.</hi> Of the JAUNDICE.</head>
<p n="1">1. WE purpoſe to treat in order of Diſeaſes that do frequently happen to Infants, and eſpecially in theſe colder Countries; with Gods help, beginning with the <hi>Jaundice,</hi> which often appears in Infants ſoon after their birth, and continues for ſome days, and again by little and little departs.</p>
<pb n="2" facs="tcp:37745:14"/>
<p n="2">2. That <hi>Infants may have the Jaun<g ref="char:EOLhyphen"/>dice in their Mothers Womb,</hi> is even manifeſt by this, that ſometimes they are born with it, and ſo <hi>may have in themſelves its cauſe before their birth,</hi> and be born with it.</p>
<p n="3">
<note place="margin">That an Obſtructi<g ref="char:EOLhyphen"/>on of Cho<g ref="char:EOLhyphen"/>ler, cannot cauſe the <hi>Jaundice.</hi>
</note>3. But whether an <hi>Obſtruction of the paſſage of Choler into the ſmall gut</hi> ought to be the cauſe of the <hi>Jaundice,</hi> let them ſee, who own no other: To me it ſeems not proba<g ref="char:EOLhyphen"/>ble, becauſe an obſtruction muſt a<g ref="char:EOLhyphen"/>riſe from a tough Humour carried to any Veſſel with the Liquor that ordinarily runs through it, and greatly aboundeth in the body, be<g ref="char:EOLhyphen"/>ing looſened and diſſolved in it, and driven thither; and then growing together there, and ſo making an obſtruction.</p>
<p n="4">
<note place="margin">1. In In<g ref="char:EOLhyphen"/>fants un<g ref="char:EOLhyphen"/>born.</note>4. Therefore let us ſee, if ſuch Cauſes mutually following each o<g ref="char:EOLhyphen"/>ther, may likely take place in that Paſſage in unborn Infants, ſo as to produce the <hi>Jaundice.</hi>
</p>
<p n="5">5. Firſt, None can well deny that a <hi>Tough Humour</hi> may be in Infants
<pb n="3" facs="tcp:37745:14"/>not as yet born, that conſiders, there are many Mothers which do not only abound with tough Phlegm, and have ſuch like Blood; but do daily uſe, and that to exceſs, ſuch like Food, which breeds viſcous and thick Phlegm. From whence what can be expected, but that Infants born of them, ſhould abound with a Phlegmatic and tough Blood, and all their Humours be very tough and Phlegmatic? ſo that in this condition there wants not matter to breed an obſtruction in ſuch In<g ref="char:EOLhyphen"/>ſants.</p>
<p n="6">6. But that ſecondly, this Phleg<g ref="char:EOLhyphen"/>matic and tough Humour may make an obſtruction in the Paſſage of Cho<g ref="char:EOLhyphen"/>ler into the ſmall gut, it is required, that the ſame be carried thither, ei<g ref="char:EOLhyphen"/>ther joyned and mixed with Choler, or elſe confuſed with it.</p>
<p n="7">7. Where all the blood is more Phlegmatic and tough than is uſual: no wonder, if alſo the other humour and ſo Choler, become more Phl<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<g ref="char:EOLhyphen"/>matic and tough; and the tough <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<pb n="2" facs="tcp:37745:15"/>
<gap reason="duplicate" extent="1 page">
<desc>〈1 page duplicate〉</desc>
</gap>
<pb n="3" facs="tcp:37745:15"/>
<gap reason="duplicate" extent="1 page">
<desc>〈1 page duplicate〉</desc>
</gap>
<pb n="4" facs="tcp:37745:16"/>mour mixed with Choler be brough<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> to the fore-named Paſſage.</p>
<p n="8">8. I am fully perſwaded from diſſection of many dead Bodies that Phlegm is bred both of Spittle and perhaps of Snot falling down t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> the Jaws; and being ſwallowed, goe into the Stomach, and ſmall gut and ſticks unto its ſides, and by de<g ref="char:EOLhyphen"/>grees encreaſes there.</p>
<p n="9">9. From what is aforeſaid it ſeem evident that the ſame Phlegm <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> bred in the Glandules of the Head but ho<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>rded up in the ſmall Gut.</p>
<p n="10">10. Now that this tough an<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> clammy Phlegm may be looſened or diſſolved, and being only conf<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ſed with the Blood, and other hu<g ref="char:EOLhyphen"/>mours, may be carried any way and ſo likewiſe to the Paſſage <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> Choler into the ſmall Gut, require a Cauſe e<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ectual enough, and vi<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>lent; namely <hi>Motion of Body</hi> as we vehement as enduring for ſome time or a <hi>notable heat of the Air,</hi> like tha<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<hi>of the Sun or of Fire,</hi> to looſe<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<gap reason="illegible" resp="#PDCC" extent="3 letters">
<desc>•••</desc>
</gap>legm, and make it fluid; or elſ<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<pb n="5" facs="tcp:37745:16"/>a <hi>plenteous Liquor</hi> being brought to the ſmall Gut, and <hi>diſſolving the</hi> named <hi>Phlegm,</hi> and carrying it fur<g ref="char:EOLhyphen"/>ther.</p>
<p n="11">11. No <hi>vehement motion of Body,</hi> unleſs the Mothers, can happen to <hi>Infants not yet born,</hi> which whether it can diſſolve, and make fluid, and ſend all over the body not only the humours of her own body (of which I do not doubt) but alſo of the Infant in her Womb, I confeſs, I neither dare deny, nor yet affirm.</p>
<p n="12">12. I cannot be brought to believe that the ſame may be by an <hi>out<g ref="char:EOLhyphen"/>ward heat of the Sun, of Fire, or of a Bath</hi> not only in the Mother, but afterward alſo in the child; yet I think, an Abortion may ſooner be expected, than ſuch a looſening of the Humours in the child, and hence a neceſſary curding, and laſtly the <hi>Jaundice:</hi> but of that curding a<g ref="char:EOLhyphen"/>non.</p>
<p n="13">13. Much leſs will it be granted that <hi>any Liquor</hi> can be carried <hi>in plenty</hi> to the ſmall Gut, and there<g ref="char:EOLhyphen"/>in
<pb n="6" facs="tcp:37745:17"/>diſſolve tough Phlegm: becauſe, although the Mother may drink plenteouſly, yet no prudent man will ſo much as Dream of it con<g ref="char:EOLhyphen"/>cerning an Infant, at leaſt in my opinion.</p>
<p n="14">14. For it ſeems Fabulous that a <hi>Child</hi> in the Womb <hi>ſhould ſwill it ſelf with the water</hi> wherein it ſwims.</p>
<p n="15">15. Moreover it is a fiction to ſuppoſe that <hi>ſo much wheyiſh matter may go through the Paſſage of the Sweet-Bread</hi> (for I know no other way) <hi>to the ſmall Gut of an Infant,</hi> that the Phlegm ſhould be diſſolved by it, and carried to the Blood, and anon to the<note n="*" place="margin">Which is the bag wherein Choler is contain<g ref="char:EOLhyphen"/>ed.</note> ſeat of Choler, and the place of its ſeparation.</p>
<p n="16">16. Yet becauſe the plenty of a tough and Phlegmatic Humour, ei<g ref="char:EOLhyphen"/>ther in the whole Body, or at leaſt in the ſmall Gut, and the carriage of it into the Paſſage of Choler into that Gut is not ſufficient, to make an Obſtruction there; unleſs, as hath been ſaid, the ſame Humour ſtick,
<pb n="7" facs="tcp:37745:17"/>and grow together, or curd in the ſame Paſſage: Let us ſee, if it be probable, that the noted Humour can grow together and be curded in Infants, ere they be born.</p>
<p n="17">17. <hi>Its growing together</hi> is uſually of its own accord, from a cauſe in<g ref="char:EOLhyphen"/>trinſecal to the Humour, namely, when the external cauſe of its diſ<g ref="char:EOLhyphen"/>ſolving is removed; ſo Broths that have the conſiſtency of a Gelly, as often as they are diſſolved and made liquid, do of their own accord re<g ref="char:EOLhyphen"/>turn to their former conſiſtence, and grow together again, being remo<g ref="char:EOLhyphen"/>ved from the fire, whoſe heat did make them diſſolve.</p>
<p n="18">18. Yet <hi>the Humour doth not curd of it ſelf,</hi> but by an external cauſe which ſo changes it when it is fluid, that having got a ſolid conſiſtence, it ceaſeth to be fluid: So any water is wont to curd in Winter into Ice, and loſe its former fluidneſs.</p>
<p n="19">19. In mans body a tough Hu<g ref="char:EOLhyphen"/>mour being diſſolved by the outward heat of the Sun, or of Fire, or by mo<g ref="char:EOLhyphen"/>tion
<pb n="8" facs="tcp:37745:18"/>of the body, and moved all o<g ref="char:EOLhyphen"/>ver the body, when the outward cauſe of heat, or motion of body ceaſeth; it is obſerved afterward by little and little <hi>to grow together of it ſelf,</hi> and breed an Obſtruction in narrow Veſſels by reaſon of its tough<g ref="char:EOLhyphen"/>neſs ſticking any where.</p>
<p n="20">20. So the ſame tough Humour being diſſolved by much drink ta<g ref="char:EOLhyphen"/>ken in, and carried all the body over, is wont <hi>to be curded by outward cold</hi> careleſly received, and <hi>ſeparating Phlegm</hi> eſpecially <hi>tough,</hi> by <hi>wateriſh drink</hi> confuſed with it, and <hi>thickning it more,</hi> and by this means eaſi<g ref="char:EOLhyphen"/>ly ſtopping it, eſpecially in ſtrait paſſages, and begetting an Obſtru<g ref="char:EOLhyphen"/>ction</p>
<p n="21">21. Yet becauſe it can ſcarce be granted that tough Phlegm ſhould be diſſolved <hi>in Infants unborn,</hi> and carried all over the body; much leſs can it be granted that it ſhould <hi>of it ſelf</hi> grow together: As which doth preſuppoſe that violent diſſolving.</p>
<pb n="9" facs="tcp:37745:18"/>
<p n="22">22. Neither can we grant that the ſame Phlegm looſened or diſſolved in Infants as yet unborn, can be <hi>Curded,</hi> as preſuppoſing that <hi>out<g ref="char:EOLhyphen"/>ward cold doth pierce through the pores of the skin</hi> to parts near enough to it, not ſo eaſily to parts a great way in the body, and fenced againſt the outward Air with ſeveral co<g ref="char:EOLhyphen"/>verings: As doth befall Infants in their Mothers Womb,<note place="margin">Note.</note> for beſides all the parts of the Mother which contain the Womb, the ſubſtance of the Womb while it carrieth the Child is thicker than uſual, and ſwelled with warm blood; and al<g ref="char:EOLhyphen"/>ſo the After-Birth with the water it contains, does defend the Child a<g ref="char:EOLhyphen"/>gainſt the harms of outward cold.</p>
<p n="23">23. Cold drink, which is often the cauſe of Curding diſſolved Phlegm, cannot be ſuſpected in Infants unborn, ſeeing that the Mother alone great bellied can be ſuppoſed to take in cold drink: But I cannot think that any man uſing rea<g ref="char:EOLhyphen"/>ſon can be ſo mad, as to affirm, that
<pb n="10" facs="tcp:37745:19"/>ſuch liquor drunk by the Mothe<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> can go to the Infant, or like out<g ref="char:EOLhyphen"/>ward cold can cauſe Phlegm di<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ſolved in it to Curd in the Paſſag<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> of Choler to the ſmall Gut.</p>
<p n="24">24. For although I could yield<g ref="char:punc">▪</g> that cold liquor drunk in plenty an<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> carried to the Stomach, or alſo t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> the ſmall Gut, might from thenc<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> pierce like cold Air to the paſſag<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> of Choler into the Gut, and agai<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Curd the Phlegm that was befor<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> diſſolved: yet can I not grant, n<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> nor apprehend, that it can do th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſame in Infants unborn, ſeeing tha<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> it hath no way to go to the paſſag<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> of Choler in them (at leaſt in m<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> opinion.)</p>
<p n="25">25. Now if ſuch an obſtructio<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> of the Paſſage of Choler into th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſmall Gut, cannot breed the <hi>Jau<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>dice,</hi> nor be ſuppoſed to be in In<g ref="char:EOLhyphen"/>fants unborn, then we muſt aſſig<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> another Cauſe of that Diſeaſe, at lea<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> in them.</p>
<p n="26">
<note place="margin">2. Nor in Infants newly born.</note>26. Let us now ſee if ſuch an Ob<g ref="char:EOLhyphen"/>ſtruction can be in Infants newl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> born.</p>
<pb n="11" facs="tcp:37745:19"/>
<p n="27">27. That we may do it in ſhort, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>bſerve firſt that heat encreaſed by <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>otion of Body is not to be expect<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>d from them, whereby tough Phlegm can be diſſolved, if any a<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ound in the ſmall Gut, and be <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>arried to every part of the body: <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>et might it be looſened <hi>by outward <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>eat of the Sun,</hi> or of <hi>Fire,</hi> as alſo <hi>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>y Anguiſh</hi> troubling Infants even till <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hey ſweat; unleſs any had rather <hi>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>hat the Humors then carried</hi> to <hi>the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>mall Gut,</hi> and eſpecially <hi>the juice of <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>he ſweet bread</hi> being ſharper, be<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>auſe of its faulty Efferveſcency, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>nd <hi>vapours</hi> raiſed breeding the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>oted Anguſh, <hi>ſhould</hi> likewiſe <hi>loo<g ref="char:EOLhyphen"/>ſen</hi> or <hi>diſſolve</hi> tough Phlegm, and <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>end it to every part of the body; which ſeems not unlikely.</p>
<p n="28">28. Yet when Phlegm is driven <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>nto every part of the body by an <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>utward Heat, or by the above no<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ed internal Cauſe, by reaſon the Pores are all over open; if then the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ody be not well fenced againſt the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>oldneſs of outward Air, or be re<g ref="char:EOLhyphen"/>moved
<pb n="10" facs="tcp:37745:20"/>
<gap reason="duplicate" extent="1 page">
<desc>〈1 page duplicate〉</desc>
</gap>
<pb n="11" facs="tcp:37745:20"/>
<gap reason="duplicate" extent="1 page">
<desc>〈1 page duplicate〉</desc>
</gap>
<pb n="12" facs="tcp:37745:21"/>into cold Air, its tender bo<g ref="char:EOLhyphen"/>dy may very likely get harm, al<g ref="char:EOLhyphen"/>though he ſeldom be expoſed t<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſuch cold, even when the <hi>Jaundic<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
</hi> doth appear.</p>
<p n="29">29. Seeing therefore ſuch a cold which ſeldom happens, would ra<g ref="char:EOLhyphen"/>ther breed other Sickneſs, an<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> that the <hi>Jaundice</hi> daily appears with<g ref="char:EOLhyphen"/>out ſuch a cold, it ſeems not pro<g ref="char:EOLhyphen"/>bable to me, that an <hi>Obſtruction</hi> ca<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> cauſe the <hi>Jaundice</hi> in Infants newl<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> born; ſo that we muſt ſeek for ano<g ref="char:EOLhyphen"/>ther cauſe.</p>
<p n="30">
<note place="margin">Of the true Cauſe of the <hi>Jaundice.</hi>
</note>30. And if any curious of trut<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſhould enquire, <hi>What can be aſſign<g ref="char:EOLhyphen"/>ed the Cauſe of the Jaundice?</hi> To th<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> clearing of it, we muſt make a deep<g ref="char:EOLhyphen"/>er ſearch, and ſo conclude, wha<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> we have to ſay.</p>
<p n="31">31. We begin this ſearch from that <hi>Yellow Colour</hi> which appears i<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> the <hi>Jaundice,</hi> not only in the <hi>Ski<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
</hi> but in the very Fleſh; ſo that thi<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> diſeaſe doth not only affect the out<g ref="char:EOLhyphen"/>ſide of the body, but its Habit alſo
<pb n="13" facs="tcp:37745:21"/>and moſt inward parts, and doth moſt manifeſt it ſelf in Urine.</p>
<p n="32">32. Now that this <hi>Colour</hi> proceeds <hi>from Choler</hi> too plenteouſly confu<g ref="char:EOLhyphen"/>ſed with blood, is proved both by the natural Colour of Choler, and by the pale colour of their ſtools.</p>
<p n="33">33. For there is nothing in mans body, which could die it Yellow but Choler; <hi>We do</hi> not then without cauſe <hi>derive that Colour of the</hi> Jaun<g ref="char:EOLhyphen"/>dice <hi>from Choler.</hi>
</p>
<p n="34">34. Yet becauſe the Stools of people in health are always more or leſs died, but not ſo in the <hi>Jaun<g ref="char:EOLhyphen"/>dice;</hi> it is but reaſonable to think that Choler moves not at all, or very little into the ſmall Gut, or at leaſt is ſo changed, that it can<g ref="char:EOLhyphen"/>not die their Stools of the natural Colour.</p>
<p n="35">35. Let this be ſuppoſed as by Anatomy it is proved, that Choler hath a paſſage from its bag to the heart through the Liver, which way (ſome of it goes alwaies in people
<pb n="14" facs="tcp:37745:22"/>in health, and) it may all go, when any have the <hi>Jaundice.</hi>
</p>
<p n="36">36. <hi>Choler</hi> thus <hi>changed</hi> in <hi>the Jaundice, ſeems not to be encreaſed</hi> in <hi>ſharpneſs;</hi> becauſe neither pain, nor pricking is felt in any part of the<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> body, unleſs when it begins to be<g ref="char:EOLhyphen"/>cured: and therefore is faulty ſome other way.</p>
<p n="37">37. Which fault that it may be known, we muſt obſerve, that <hi>Cho<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ler</hi> naturally <hi>is not only ſlightly con<g ref="char:EOLhyphen"/>fuſed, but moſt intirely mixed with the Humours it meets with</hi> both in the<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſmall Gut, and in the Blood or right Ventricle of the heart, and that ſo <hi>as it is impoſſible to be ſeparated again<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> from them;</hi> which is <hi>performed by a<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Efferveſcency</hi> with a ſowre humour<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> in both thoſe places.</p>
<p n="38">38. Yet becauſe that mixture o<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Choler with the other humours, ſeems to be wanting in the <hi>Jaundice,</hi> that Efferveſcency alſo is a want<g ref="char:EOLhyphen"/>ing, or at leaſt in ſome meaſure hindred.</p>
<pb n="15" facs="tcp:37745:22"/>
<p n="39">39. Now if the Efferveſcency of Choler with the other Humours be <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ltered and notably leſſend in the <hi>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>aundice,</hi> we muſt ſee, what ma<g ref="char:EOLhyphen"/>keth <hi>Choler to perfect that Efferveſcen<g ref="char:EOLhyphen"/>cy, and what can leſſen it.</hi>
</p>
<p n="40">40. And it is known unto all, that an <hi>Efferveſcency</hi> is cauſed by the meeting of a <hi>Sowre, and of a lee <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>alt humour,</hi> or in as much as they partake of theſe two contraries.</p>
<p n="41">41. And if any ſhall examine Choler, and confuſe it with Sowre liquors, and Salts, he may diſcern, that <hi>Choler helps on this Efferveſcen<g ref="char:EOLhyphen"/>cy by vertue of its lee Salt, but very much temper'd,</hi> to make the Effer<g ref="char:EOLhyphen"/>veſcency mild and friendly to Nature, and not vehement in the <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ody.</p>
<p n="42">42. Wherefore let us ſee how his lee Salt in Choler may be affect<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> ſo as to become unfit for that efferveſcency.</p>
<p n="43">43. For we find, that <hi>the more are and ſharp the lee Salt</hi> is, it is <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>e fitter for an Efferveſcency; and
<pb n="16" facs="tcp:37745:23"/>the more it is any way made dull, <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> becomes the more unfit for an Effer<g ref="char:EOLhyphen"/>veſcency.</p>
<p n="44">44. Now many things <hi>make t<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> ſharpneſs of a lee Salt dull,</hi> as firſt any thing that is <hi>oily and fat;</hi> Secon<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ly any thing that is <hi>volatile</hi> a<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<hi>Spirituous;</hi> Thirdly, and <hi>eart<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>thing.</hi>
</p>
<p n="45">45. And on the contrary <hi>F<gap reason="illegible" resp="#PDCC" extent="3 letters">
<desc>•••</desc>
</gap> whets and increaſeth its ſharpneſs;</hi> an<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſo the keeping a lee Salt long in the Fire, makes it ſharper, and mo<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<g ref="char:EOLhyphen"/>fit for a ſtrong Efferveſcency.</p>
<p n="46">46. <hi>Water promotes the Efferve<g ref="char:EOLhyphen"/>ſcency</hi> of a lee Salt, if a ſmall qua<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>tity be joyned to it; but if <hi>much<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
</hi> added, it <hi>drowns</hi> it.</p>
<p n="47">47. Now to apply this to our p<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<g ref="char:EOLhyphen"/>poſe, who ſo conſiders <hi>Choler</hi> m<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<g ref="char:EOLhyphen"/>find it hath much <hi>Oile and fat</hi>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<g ref="char:EOLhyphen"/>turally; by reaſon of which, (<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> making its ſaltneſs dull,) we ca<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> not obſerve a fierce Efferveſcen<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> in one in health.</p>
<p n="48">48. Again whoſoever ſhall <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> thoſe Nerves which reach to t<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>
<pb n="17" facs="tcp:37745:23"/>liver, and obſerve how readily Cho<g ref="char:EOLhyphen"/>ler mixeth with any thing, which could not be unleſs a volatile ſpirit were mixed with it; muſt own that <hi>Choler</hi> conſiſts much <hi>of a vola<g ref="char:EOLhyphen"/>tile Spirt.</hi> For by reaſon of its Oili<g ref="char:EOLhyphen"/>neſs it could not mix with any thing, unleſs it had alſo a volatile Spirit: By which alſo the Salt in Choler is more temper'd, and thence there is a more milde Efferveſcency in one in health.</p>
<p n="49">49. There is alſo ſome though not much <hi>Earth</hi> in Choler, elſe would it be leſs moveable; where<g ref="char:EOLhyphen"/>as as it is very moveable, and joyns it ſelf to every thing, yea it makes other things moveable, as Colours to paint withall.</p>
<p n="50">50. Which <hi>Earth in it,</hi> though but <hi>in a ſmall quantity, breaks</hi> the <hi>violent Efferveſcency of Choler in an healthy ſtate.</hi>
</p>
<p n="51">51. We cannot ſuppoſe that <hi>ſuch a Fire, as can burn, and ſharpen the lee Salt of Choler, is</hi> in mans body, no not in a preternatural ſtate: ſeeing
<pb n="18" facs="tcp:37745:24"/>that if any rightly examine the matter, he ſhall find that <hi>Choler is the chief Cauſe of any flames, or great heat in</hi> mans body, whether in a natural, or non-natural, or preter<g ref="char:EOLhyphen"/>natural ſtate.</p>
<p n="52">52. Not but that there is an <hi>ex<g ref="char:EOLhyphen"/>ternal Heat,</hi> which may be cauſed by the <hi>Fire</hi> or <hi>Sun;</hi> by which it is ſufficiently known that all the hu<g ref="char:EOLhyphen"/>mours, and ſo Choler alſo becomes more ſharp.</p>
<p n="53">53. Wherefore when <hi>Choler is more ſharp than ordinary in its proper ſharpneſs,</hi> it muſt proceed <hi>from and outward heat,</hi> either of the Sun or of Fire.</p>
<p n="54">54. I ſaid in its proper ſharpneſs, diſtinguiſh it from <hi>an accidental ſharp<g ref="char:EOLhyphen"/>neſs,</hi> which <hi>comes after a preternatural efferveſcency from a very ſharp Sowre Humor.</hi> For when a very ſharp Sowre Humor meets with Choler, and cauſeth an efferveſcency with it, it cauſeth a ſeparation, and gets to it the ſharpneſs of the parts (which make Choler more milde) from its
<pb n="19" facs="tcp:37745:24"/>Salt parts, which wanting thoſe that make it mild, become ſharper than before, and by that means en<g ref="char:EOLhyphen"/>creaſe a more ſharp and more hurt<g ref="char:EOLhyphen"/>ful efferveſcency.</p>
<p n="55">55. Seing then that <hi>no internal cauſe can increaſe the ſharpneſs of Cho<g ref="char:EOLhyphen"/>ler, but a Sowre juice,</hi> which makes <hi>Choler</hi> by its mixing with it <hi>ſometimes Cankered,</hi> ſometimes <hi>Black;</hi> it is evident what can ſet <hi>Choler in a flame.</hi>
</p>
<p n="56">56. Which being premiſed, let us conſider; <hi>what can render Choler (eſpecially in the Jaundice) more un<g ref="char:EOLhyphen"/>apt to mix it ſelf with the other Hu<g ref="char:EOLhyphen"/>mours:</hi> Which that we may do, obſerve, that oft <hi>on a ſudden</hi> it hap<g ref="char:EOLhyphen"/>pens <hi>from a bite of a Viper;</hi> which kind of Poyſon, becauſe it doth its work <hi>quickly,</hi> muſt be <hi>very move<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ble,</hi> and <hi>ſubtile;</hi> and ſo <hi>is of a vo<g ref="char:EOLhyphen"/>latile, nature,</hi> and conſiſts of a vola<g ref="char:EOLhyphen"/>tile ſpirit.</p>
<p n="57">57. And <hi>that much of a volatile ſpi<g ref="char:EOLhyphen"/>rit can breed the Jaundice, mixt with Choler,</hi> is clear in as much as <hi>ſtrong <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>odied wine, and eſpecially Brandy
<pb n="20" facs="tcp:37745:25"/>doth often beget the Jaundice in ſuch as drink it,</hi> and do much neglect ſolid meats: For Brandy being plentiful<g ref="char:EOLhyphen"/>ly drunk doth not only encreaſe a volatile or animal ſpirit in the body, but by little and little makes all <hi>the Humours;</hi> and ſo <hi>Cho<g ref="char:EOLhyphen"/>ler more volatile,</hi> and <hi>ſpirituous,</hi> and <hi>moveable:</hi> till at laſt by long abuſe the Conſtitution and<note n="*" place="margin">Or thickneſs.</note> Conſiſtence of the Blood and Humors become faulty, and the Blood becomes like whey, and loſes its clammy na<g ref="char:EOLhyphen"/>ture.</p>
<p n="58">58. So that I am fully perſwaded that <hi>Choler in breeding the Jaundice becomes too ſpirituous, and unfit to cauſ<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> a ſufficient Efferveſcency</hi> by the pier<g ref="char:EOLhyphen"/>cing poyſon of a Viper in a little time or by too ſpirituous drink long uſed more ſlowly.</p>
<p n="59">59. Now if any ſhould ſay,<note place="margin">Object.</note> fee<g ref="char:EOLhyphen"/>ing Choler may be ſo changed, <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<hi>to cauſe the Jaundice without a ſtop page of it into the ſmall Gut: it <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> then ceaſe to move thither,</hi> where <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> ſhall have at leaſt a weak Efferwo<g ref="char:EOLhyphen"/>ſcency
<pb n="21" facs="tcp:37745:25"/>with the juice of the Sweet<g ref="char:EOLhyphen"/>bread, why then ſhould not the ſtools be died by the ſame, as at other times?</p>
<p n="60">60. Whom that I may ſatisfie;<note place="margin">Anſ. 1.</note> I anſwer, Firſt, that the <hi>ſtools are not always alike white in the Jaundice;</hi> whence I judge, that Choler is ſome<g ref="char:EOLhyphen"/>times more, ſometimes leſs mixed with the ſtools in <hi>Jaundice,</hi> and ſo more or leſs dies them.</p>
<p n="61">61. Secondly, <hi>Choler is not alwaies alike affected in the Jaundice,</hi>
<note place="margin">Anſ. 2.</note> whence it is leſs or more mixed with the ſtools, and accordingly dies them.</p>
<p>Thirdly, That <hi>their ſtools be duely died by Choler</hi>
<note place="margin">Anſ. 3.</note>
<hi>its ſufficient Efferve<g ref="char:EOLhyphen"/>ſcency with the Juice of the Sweet-Bread muſt proceed, by which its parts are ſeparated from one another, and thoſe which die are joyned to the ſtools.</hi>
</p>
<p n="62">62. Fourthly, <hi>If while the Jaun<g ref="char:EOLhyphen"/>dice continues,</hi>
<note place="margin">Anſ. 4.</note>
<hi>Choler be more ſpiri<g ref="char:EOLhyphen"/>tuous, and volatile, and ſo more fluid and moveable,</hi> it may <hi>the more eaſi<g ref="char:EOLhyphen"/>ly pierce through the ſmalleſt veſſels
<pb n="22" facs="tcp:37745:26"/>where it paſſeth through the Liver;</hi> eſpecially <hi>if it be drawn ſtraight, or at any time its paſſage into the ſmall Gut be ſtopped;</hi> wherefore <hi>moving forcibly to the Liver, it may perſiſt in the ſame, not uſing its proper way to the Gut.</hi>
</p>
<p n="63">63. For it may ſo happen that <hi>if the Paſſage of Choler into the ſmall Gut be not wholly ſtopped, it may be ſtraightned by the Phlegm (which is in the Guts) being dawbed about it:</hi> Or <hi>the ſame</hi>
<note n="*" place="margin">Like thoſe who keep their Urine ſo long, till they can<g ref="char:EOLhyphen"/>not make water.</note>
<hi>Paſſage may contract it ſelf narrower by being over full with Choler;</hi> by reaſon of which <hi>i<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> may be denied paſſage to the Gut,</hi> and therefore <hi>muſt move upward to the Liver, and through the liver to the Blood, and going with it to the right Ventricle of the Heart makes a ſmall Efferveſcency with the deſcending and Lymphatic Blood,</hi> after which <hi>it is more properly confuſed, than mix<g ref="char:EOLhyphen"/>ed therewith;</hi> and <hi>as the Blood goes all over the body, it ſeparates from it and dies the body, making every part unfit for natural nouriſhment;</hi> whence <hi>a Dropſie often follows the
<pb n="23" facs="tcp:37745:26"/>Jaundice,</hi> unleſs it be cured ſpee<g ref="char:EOLhyphen"/>dily.</p>
<p n="64">64. Although I do not think that a ſtoppage of Cholers paſſage into the ſmall Gut is of neceſſity requi<g ref="char:EOLhyphen"/>red to breed the <hi>Jaundice,</hi> yet may it ſometimes occaſion the <hi>Jaundice;</hi> for by the ſtopping Choler in its natural motion to the Gut, Choler grows <hi>more ſpirituous,</hi> by the greater acceſs of ſpirituous parts thither, and by further heightening the parts of which Choler is made.</p>
<p n="65">65. Which is evident from this, that many before the <hi>Jaundice</hi> ap<g ref="char:EOLhyphen"/>pears, feel great Anguiſh in the right ſide of the Belly where this aforeſaid Paſſage is, <hi>a great Sorrow, or abuſe of Phlegmatic meats</hi> having preceeded.</p>
<p n="66">66. Wherefore to ſum up our anſwer in ſhort, we judge, Firſt,<note place="margin">The for<g ref="char:EOLhyphen"/>mer an<g ref="char:EOLhyphen"/>ſwer ſum<g ref="char:EOLhyphen"/>med up,</note> That the ſtools do not alwaies want the die of Choler, though they be paler. Secondly, they are leaſt died, when Choler is worſt affected. Thirdly, They are leſs died, when Choler makes but a little Efferve<g ref="char:EOLhyphen"/>ſcency.
<pb n="24" facs="tcp:37745:27"/>Fourthly, They are leſs died, when Choler moves little to the Guts, and almoſt all of it goes to the Liver and the Blood, whether it be by reaſon that the Paſſage into the Gut contracts it ſelf narrower; or becauſe that Paſſage is ſtopped and filled up by Phlegm.</p>
<p n="67">67. From what hath been ſaid, <hi>we have proved that the</hi> Jaundice <hi>may be bred (without a ſtoppage of the Paſſage of Choler into the ſmall Gut,</hi>
<note place="margin">The over ſpirituouſ<g ref="char:EOLhyphen"/>neſs of Choler cauſes the <hi>Jaundice.</hi>
</note>
<hi>and</hi>) <hi>by Cholers being too Spiri<g ref="char:EOLhyphen"/>tuous, and therefore unfit to make an Efferveſcency, being not imbodied but confuſed with the Blood.</hi>
</p>
<p n="68">68. <hi>The cure</hi> therefore <hi>of the Jaun<g ref="char:EOLhyphen"/>dice muſt conſiſt in correcting Choler over volatile and ſpirituous,</hi>
<note place="margin">Its cure.</note> which is done <hi>by Oily and Fat things,</hi> and by <hi>ſuch as procure ſleep,</hi> and ſometimes ſuch as <hi>ſtupify.</hi>
</p>
<p n="69">69. <hi>By Oily and Fat things, as Hemp Seed</hi> boiled in milk, and taken a few times; as alſo both <hi>Venice</hi> and <hi>common Sope</hi> diſſolved in warm milk, and taken a few times,
<pb n="25" facs="tcp:37745:27"/>
<hi>both which will happily cure the Jaun<g ref="char:EOLhyphen"/>lice.</hi>
</p>
<p n="70">70. <hi>Sope cures the</hi> Jaundice, Firſt, <hi>By its fixed lee Salt,</hi> which being <hi>Joyned to Choler, corrects and leſſens its volatility, taking into it ſelf part of the volatile Spirit abounding in Choler.</hi>
</p>
<p n="71">71. Secondly, <hi>By its thick,</hi> not <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>olatile and Aromatic <hi>Fatneſs and Oile,</hi> in as much as <hi>it makes dull the ſharpneſs of the volatile and ſpirituous Salt which is in Choler.</hi>
</p>
<p n="72">72. The ſame may be ſaid of <hi>Hemp Seed,</hi> which being <hi>Oily and Fat,</hi> produceth the ſame effect.</p>
<p n="73">73. We alſo commend <hi>Saffron</hi> in Curing the <hi>Jaundice;</hi> and ſeeing the <hi>Fat Saffron</hi> is beſt,<note place="margin">Note.</note> we cannot ſup<g ref="char:EOLhyphen"/>poſe that overfatneſs of Choler as well as its over-ſpirituouſneſs can preed the <hi>Jaundice.</hi>
</p>
<p n="74">74. For <hi>Saffron is eaſily joined to a volatile Spirit,</hi> by reaſon of which we readily make its Tincture and Ex<g ref="char:EOLhyphen"/>tract.</p>
<p n="75">75. By the ſame <hi>Saffron,</hi> and its Extract, the Animal Spirits uſe to
<pb n="26" facs="tcp:37745:28"/>be <hi>ſetled</hi> and <hi>become drowſie,</hi> a ſwee<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> ſleep following.</p>
<p n="76">76. <hi>Opium</hi> that powerful allayer of the Animal ſpirits, <hi>is Oily and Fat making the Animal Spirits drowſie,</hi> and retarding their motion.</p>
<p n="77">77. Thus <hi>volatile Spirits may b<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> chained and bound by Fat and Oily things<g ref="char:punc">▪</g>
</hi> yea and be compoſed to reſt: whence it is evident, that if theſe Spirits be joyned to Choler in too great plen<g ref="char:EOLhyphen"/>ty, or therewith exalted, that is fortified in its operating, they may breed the <hi>Jaundice</hi> by making Chole<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> too volatile, and moveable; <hi>which volatility and moveableneſs is cured by medicines that are Oily, and cauſe Reſt.</hi> Which is alſo apparent from Chymical <hi>fixed Sulphurs</hi> which fix the volatile ſpirits.</p>
<p n="78">78. If <hi>the Jaundice</hi> be cauſed <hi>by the bite of a Viper,</hi> or any other Crea<g ref="char:EOLhyphen"/>ture, we muſt, (beſides the afore<g ref="char:EOLhyphen"/>ſaid <hi>correcting of Choler) both amend, and again expel that Poiſon.</hi>
</p>
<p n="79">79. To which purpoſe ſundry <hi>Opiats</hi> are uſed, as, <hi>Treacle, Mithri<g ref="char:EOLhyphen"/>date,
<pb n="27" facs="tcp:37745:28"/>Diaſcordium,</hi> &c. Which by the Opium and other things wherewith they abound, do not only amend the ſpirituous volatility of Vipers Poyſon; but moreover by their many ſweat<g ref="char:EOLhyphen"/>ing ingredients expel the ſame through the Pores of the Skin; and correct the fault in Choler alſo.</p>
<p n="80">80. Where note, that <hi>Treacle</hi> ha<g ref="char:EOLhyphen"/>ving Troches of Vipers in it, doth the ſooner mix with Vipers Poyſon, and expel it forth, ſeeing they are of a vo<g ref="char:EOLhyphen"/>latile nature, and provoke Sweat.</p>
<p n="81">81. Hence, Chymiſts do com<g ref="char:EOLhyphen"/>mend, and not without cauſe, the <hi>Salt of Vipers,</hi> which is volatile.</p>
<p n="82">82. They alſo commend, <hi>diapho<g ref="char:EOLhyphen"/>retic Antimony,</hi> and <hi>any Min<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ral Be<g ref="char:EOLhyphen"/>zoard,</hi> by which Choler over-ſpiri<g ref="char:EOLhyphen"/>tuous is fixed; and any Poiſon fit to be ſweated out, is expelled.</p>
<p n="83">83. But if Choler be hindred in its motion to the ſmall Gut, <hi>by a ſtoppage made by tough Phlegm in the Paſſage of Choler,</hi> and ſo it become more ſpirituous, and breed the <hi>Jaundice;</hi> the ſame <hi>Phlegm muſt be cut and pur<g ref="char:EOLhyphen"/>ged
<pb n="28" facs="tcp:37745:29"/>out</hi> both by <hi>Aromatical</hi> Medicine<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> and <hi>ſuch as abound with a volati<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap> Salt,</hi> as alſo by <hi>ſuch as purge Phlegm</hi> after which, the afore named Me<g ref="char:EOLhyphen"/>dicines may be uſed, ſometime moving a gentle ſweat by Be<g ref="char:EOLhyphen"/>zoard.</p>
<p n="84">84. To apply theſe more cloſe<g ref="char:EOLhyphen"/>ly to <hi>Infants</hi> newly born, we judge that <hi>the Jaundice ariſes in Infan<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> not yet born, or newly born from Ch<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>
<g ref="char:EOLhyphen"/>ler too Spirituous,</hi> though never <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> little offending; wherefore alſ<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> it is ſoon cured in the moſt <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> them.</p>
<p n="85">85. For <hi>one Grain of Saffron</hi> a<g ref="char:EOLhyphen"/>lone given them in their Mothers o<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> their Nurſes, or Cows <hi>Milk,</hi> onc<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> or twice a day, often cures them <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> the <hi>Jaundice.</hi>
</p>
<p n="86">86. To the ſame purpoſe a grai<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> of Mineral Bezoard may be given by the taking either of which, <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> a ſweat do not alwaies break forth yet is there a breathing forth by inſenſible tranſpiration.</p>
<pb n="29" facs="tcp:37745:29"/>
<p n="87">87. If the child be coſtive, it <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ay be looſened by <hi>Rhubarb,</hi> and ſpecially by the known <hi>Syrrup of <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>uccory</hi> with <hi>Rhubarb,</hi> inſtead of which <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap>
<hi>Simple Syrrup</hi> of <hi>Rhubarb</hi> in this <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>aſe may be uſed.</p>
<p n="88">88. We therefore uſe <hi>Rhuba<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>,</hi>
<gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> draw Choler down to the Guts, <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>nd carry it out; becauſe if any of <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> be carried thither, the reſt ceaſes <gap reason="illegible" resp="#PDCC" extent="1 word">
<desc>〈◊〉</desc>
</gap> be too ſpirituous.</p>
<p n="89">89. Moreover Choler is ſent to <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>he Guts eaſily, copiouſly, and <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>owerfuly by Medicines that purge Choler, but not without them: unleſs ſometimes againſt nature it move thither furiouſly, in the diſ<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>aſe Cholera<note n="*" place="margin">When one purges and Vo<g ref="char:EOLhyphen"/>mits Cho<g ref="char:EOLhyphen"/>ler.</note>, which is often deadly.</p>
<p n="90">90. Which diſeaſe differs much from the <hi>Jaundice,</hi> not to name other d<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>fferences, ſeeing in the <hi>Jaun<g ref="char:EOLhyphen"/>dice</hi> Choler moves to the Liver; <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ut in Cholera it moves to the Gut, and is ſent forth upward or downward.</p>
<pb n="30" facs="tcp:37745:30"/>
<p n="91">91. Several other Medicines are commended in curing the <hi>Jaundice</hi> as <hi>Radiſh, Salendine; Madder</hi> which the Dyers uſe, Shavings of Harts horn, Ivory, Sage, Wilde Rocket Cumine, Gooſe dung, filings o<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> Steel, Squills, Sulphur, <hi>&c.</hi> The moſt of which may be applied to ou<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap> purpoſe, and do good according to our opinion; which yet are not ſo ſafe for Infants as people of age.</p>
<p>
<hi>And ſo much for the Jaundice in Infants.</hi>
</p>
</div>
<div n="2" type="chapter">
<pb n="31" facs="tcp:37745:30"/>
<head>
<hi>CHAP. II.</hi> Of Gripes in the Belly.</head>
<p n="1">THeſe <hi>Gripes</hi> do frequent<g ref="char:EOLhyphen"/>ly trouble Infants newly born, ſo that few eſcape them.</p>
<p n="2">2. Which Gripes in the Belly may <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>roceed from a double <hi>Cauſe,</hi> either <gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>om <hi>Wind,</hi> or from <hi>Sowre</hi> and <hi>ſharp Humours.</hi>
</p>
<p n="3">3. That <hi>Wind ſwelling the Guts</hi> may breed Gripes in the belly, is <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ear; becauſe, Firſt, when <hi>Wind gets <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ent,</hi> the gripes are abated: Second<g ref="char:EOLhyphen"/>ly the Pain goes away, only when <hi>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>e ſwelling of the Belly falls:</hi> Thirdly <hi>
<gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>he Guts</hi> are ſwelled <hi>with wind after <gap reason="illegible" resp="#PDCC" extent="1 letter">
<desc>•</desc>
</gap>ath:</hi> Fourthly, <hi>Medicines which diſ<g ref="char:EOLhyphen"/>
<gap reason="illegible" resp="#PDCC" extent="2 letters">
<desc>••</desc>
</gap>ſs Wind,</hi> cure the Gripes.</p>
<p n="4">4. It is alſo evident that Gripes
<pb n="32" facs="tcp:37745:31"/>may be cauſed by <hi>ſowre and ſhar<gap reason="illegible" resp="#PDCC" extent="1 letter">