calliope-ts 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -20
- package/dist/caesura.d.ts +33 -0
- package/dist/caesura.d.ts.map +1 -0
- package/dist/caesura.js +202 -0
- package/dist/calliope/boundaries.d.ts +19 -0
- package/dist/calliope/boundaries.d.ts.map +1 -0
- package/dist/calliope/boundaries.js +182 -0
- package/dist/calliope/bracketing.d.ts +11 -0
- package/dist/calliope/bracketing.d.ts.map +1 -0
- package/dist/calliope/bracketing.js +416 -0
- package/dist/calliope/deps.d.ts +4 -0
- package/dist/calliope/deps.d.ts.map +1 -0
- package/dist/calliope/deps.js +181 -0
- package/dist/calliope/engine.d.ts +3 -0
- package/dist/calliope/engine.d.ts.map +1 -0
- package/dist/calliope/engine.js +71 -0
- package/dist/calliope/feats.d.ts +9 -0
- package/dist/calliope/feats.d.ts.map +1 -0
- package/dist/calliope/feats.js +45 -0
- package/dist/calliope/names.d.ts +7 -0
- package/dist/calliope/names.d.ts.map +1 -0
- package/dist/calliope/names.js +42 -0
- package/dist/calliope/postag.d.ts +8 -0
- package/dist/calliope/postag.d.ts.map +1 -0
- package/dist/calliope/postag.js +250 -0
- package/dist/calliope/prosodic.d.ts +3 -0
- package/dist/calliope/prosodic.d.ts.map +1 -0
- package/dist/calliope/prosodic.js +275 -0
- package/dist/calliope/relstress.d.ts +4 -0
- package/dist/calliope/relstress.d.ts.map +1 -0
- package/dist/calliope/relstress.js +688 -0
- package/dist/calliope/stressrules.d.ts +28 -0
- package/dist/calliope/stressrules.d.ts.map +1 -0
- package/dist/calliope/stressrules.js +147 -0
- package/dist/calliope/syntax.d.ts +38 -0
- package/dist/calliope/syntax.d.ts.map +1 -0
- package/dist/calliope/syntax.js +234 -0
- package/dist/calliope/udpos.d.ts +13 -0
- package/dist/calliope/udpos.d.ts.map +1 -0
- package/dist/calliope/udpos.js +156 -0
- package/dist/clio/caesura.d.ts +27 -0
- package/dist/clio/caesura.d.ts.map +1 -0
- package/dist/clio/caesura.js +148 -0
- package/dist/clio/depfix.d.ts +13 -0
- package/dist/clio/depfix.d.ts.map +1 -0
- package/dist/clio/depfix.js +84 -0
- package/dist/clio/display.d.ts +32 -0
- package/dist/clio/display.d.ts.map +1 -0
- package/dist/clio/display.js +976 -0
- package/dist/clio/engine.d.ts +3 -0
- package/dist/clio/engine.d.ts.map +1 -0
- package/dist/clio/engine.js +28 -0
- package/dist/clio/parser.d.ts +10 -0
- package/dist/clio/parser.d.ts.map +1 -0
- package/dist/clio/parser.js +696 -0
- package/dist/clio/phonological.d.ts +41 -0
- package/dist/clio/phonological.d.ts.map +1 -0
- package/dist/clio/phonological.js +788 -0
- package/dist/clio/phrasestress.d.ts +6 -0
- package/dist/clio/phrasestress.d.ts.map +1 -0
- package/dist/clio/phrasestress.js +106 -0
- package/dist/clio/pipeline.d.ts +11 -0
- package/dist/clio/pipeline.d.ts.map +1 -0
- package/dist/clio/pipeline.js +147 -0
- package/dist/clio/rhyme.d.ts +65 -0
- package/dist/clio/rhyme.d.ts.map +1 -0
- package/dist/clio/rhyme.js +761 -0
- package/dist/clio/scandroid.d.ts +17 -0
- package/dist/clio/scandroid.d.ts.map +1 -0
- package/dist/clio/scandroid.js +435 -0
- package/dist/clio/scansion.d.ts +46 -0
- package/dist/clio/scansion.d.ts.map +1 -0
- package/dist/clio/scansion.js +1086 -0
- package/dist/clio/semantics.d.ts +44 -0
- package/dist/clio/semantics.d.ts.map +1 -0
- package/dist/clio/semantics.js +139 -0
- package/dist/clio/stress.d.ts +83 -0
- package/dist/clio/stress.d.ts.map +1 -0
- package/dist/clio/stress.js +1737 -0
- package/dist/clio/tagfix.d.ts +6 -0
- package/dist/clio/tagfix.d.ts.map +1 -0
- package/dist/clio/tagfix.js +101 -0
- package/dist/display.d.ts +0 -6
- package/dist/display.d.ts.map +1 -1
- package/dist/display.js +322 -141
- package/dist/engine.d.ts +9 -0
- package/dist/engine.d.ts.map +1 -0
- package/dist/engine.js +12 -0
- package/dist/index.d.ts +4 -3
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +169 -26
- package/dist/parser.d.ts +3 -3
- package/dist/parser.d.ts.map +1 -1
- package/dist/parser.js +320 -563
- package/dist/phonological.d.ts +1 -1
- package/dist/phonological.d.ts.map +1 -1
- package/dist/phonological.js +73 -4
- package/dist/phrasestress.d.ts +6 -0
- package/dist/phrasestress.d.ts.map +1 -0
- package/dist/phrasestress.js +106 -0
- package/dist/rhyme.d.ts +40 -1
- package/dist/rhyme.d.ts.map +1 -1
- package/dist/rhyme.js +435 -7
- package/dist/scansion.d.ts +9 -0
- package/dist/scansion.d.ts.map +1 -1
- package/dist/scansion.js +145 -18
- package/dist/semantics.d.ts +44 -0
- package/dist/semantics.d.ts.map +1 -0
- package/dist/semantics.js +139 -0
- package/dist/stress.d.ts +127 -4
- package/dist/stress.d.ts.map +1 -1
- package/dist/stress.js +834 -61
- package/dist/types.d.ts +15 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +5 -3
- package/src/caesura.ts +201 -0
- package/src/calliope/boundaries.ts +190 -0
- package/src/calliope/bracketing.ts +390 -0
- package/src/calliope/deps.ts +160 -0
- package/src/calliope/engine.ts +77 -0
- package/src/calliope/feats.ts +46 -0
- package/src/calliope/names.ts +44 -0
- package/src/calliope/postag.ts +253 -0
- package/src/calliope/prosodic.ts +262 -0
- package/src/calliope/relstress.ts +645 -0
- package/src/calliope/stressrules.ts +147 -0
- package/src/calliope/syntax.ts +218 -0
- package/src/calliope/udpos.ts +152 -0
- package/src/calliope_src_contents.md +19049 -0
- package/src/clio/caesura.ts +145 -0
- package/src/clio/depfix.ts +88 -0
- package/src/clio/display.ts +1042 -0
- package/src/clio/engine.ts +38 -0
- package/src/clio/parser.ts +845 -0
- package/src/clio/phonological.ts +849 -0
- package/src/clio/phrasestress.ts +108 -0
- package/src/clio/pipeline.ts +154 -0
- package/src/clio/rhyme.ts +740 -0
- package/src/clio/scandroid.ts +434 -0
- package/src/clio/scansion.ts +1130 -0
- package/src/clio/semantics.ts +134 -0
- package/src/clio/stress.ts +1731 -0
- package/src/clio/tagfix.ts +104 -0
- package/src/display.ts +321 -137
- package/src/engine.ts +22 -0
- package/src/index.ts +176 -32
- package/src/parser.ts +346 -682
- package/src/phonological.ts +72 -4
- package/src/phrasestress.ts +108 -0
- package/src/rhyme.ts +428 -8
- package/src/scansion.ts +136 -15
- package/src/semantics.ts +134 -0
- package/src/stress.ts +794 -64
- package/src/types.ts +39 -4
- package/tests/DataForHayesLinesOnly.txt +364 -0
- package/tests/DataForHayesStressSymbolsRevised.txt +728 -0
- package/tests/basic.test.ts +443 -37
- package/tests/bench-hayes.mjs +72 -0
- package/tests/wagner-stress.test.ts +188 -0
- package/vitest.config.ts +0 -15
|
@@ -0,0 +1,728 @@
|
|
|
1
|
+
1 line text O, I am a bachelor, I live by myself
|
|
2
|
+
1 stress pattern wnwxsxwnmxws
|
|
3
|
+
2 line text And the only, only thing that I ever did was wrong
|
|
4
|
+
2 stress pattern xxmwmwswmnxmxs
|
|
5
|
+
3 line text I wooed her in the summer time
|
|
6
|
+
3 stress pattern wmwxxswn
|
|
7
|
+
4 line text And many, many times I held her in my arms
|
|
8
|
+
4 stress pattern xnwnwswmwxws
|
|
9
|
+
5 line text One night she came to my bedside
|
|
10
|
+
5 stress pattern wswmxwsn
|
|
11
|
+
6 line text She threw her arms around my neck
|
|
12
|
+
6 stress pattern wmwmxnws
|
|
13
|
+
7 line text So all night long I held her in my arms
|
|
14
|
+
7 stress pattern xmnswmwxws
|
|
15
|
+
8 line text Again I'm a bachelor, I live with my son
|
|
16
|
+
8 stress pattern xmwxsxwnmxws
|
|
17
|
+
9 line text And every every time I look into his eyes
|
|
18
|
+
9 stress pattern xnwnwmwmwnws
|
|
19
|
+
10 line text He reminds me of the summer time
|
|
20
|
+
10 stress pattern wxmwxxswn
|
|
21
|
+
11 line text And the many, many times I held her in my arms
|
|
22
|
+
11 stress pattern xxmwmwswmwxws
|
|
23
|
+
12 line text O what should I spy but my own father's ship
|
|
24
|
+
12 stress pattern wmxwsxwmnws
|
|
25
|
+
13 line text O what is the matter my daughter Jane
|
|
26
|
+
13 stress pattern wmxxsxwmws
|
|
27
|
+
14 line text I fear you have had some ill sickness
|
|
28
|
+
14 stress pattern wswxmwnsw
|
|
29
|
+
15 line text O no! I've not had an ill sickness
|
|
30
|
+
15 stress pattern wswnmxnsw
|
|
31
|
+
16 line text But I have been sick and sick to my heart
|
|
32
|
+
16 stress pattern xmxwsxmxws
|
|
33
|
+
17 line text Or is it by chance that rakish lad
|
|
34
|
+
17 stress pattern xwnxswmws
|
|
35
|
+
18 line text O no! It is not a noble noble knight
|
|
36
|
+
18 stress pattern wswxsxmwmws
|
|
37
|
+
19 line text If you will marry my daughter Jane
|
|
38
|
+
19 stress pattern xwxmxwmws
|
|
39
|
+
20 line text This day you shall sup and dine with me
|
|
40
|
+
20 stress pattern wsnwmxsxw
|
|
41
|
+
21 line text O I will marry your daughter Jane
|
|
42
|
+
21 stress pattern wnwmxwmws
|
|
43
|
+
22 line text And today I will sup and dine with you
|
|
44
|
+
22 stress pattern xwswxmxsxw
|
|
45
|
+
23 line text For I have houses and I have land
|
|
46
|
+
23 stress pattern wmwswxmns
|
|
47
|
+
24 line text And had it not been for your daughter Jane
|
|
48
|
+
24 stress pattern xmxwmxwmws
|
|
49
|
+
25 line text And downstairs ran this odd lady, O!
|
|
50
|
+
25 stress pattern xmnmwxsxn
|
|
51
|
+
26 line text One sang high and the other sang low
|
|
52
|
+
26 stress pattern snmxxmwmn
|
|
53
|
+
27 line text And the other sang bonny, bonny Biscay, O!
|
|
54
|
+
27 stress pattern xxmwnswmwswn
|
|
55
|
+
28 line text And put on hose of leather, O!
|
|
56
|
+
28 stress pattern xmnsxswm
|
|
57
|
+
29 line text The ragged, ragged rags about our door
|
|
58
|
+
29 stress pattern xmwmwsxnws
|
|
59
|
+
30 line text She's gone with the raggle taggle gypsies, O!
|
|
60
|
+
30 stress pattern wmwxmwnwswn
|
|
61
|
+
31 line text It was late last night when my lord came home
|
|
62
|
+
31 stress pattern wxmnswnmws
|
|
63
|
+
32 line text Enquiring for his a-lady, O!
|
|
64
|
+
32 stress pattern wmwxnxswn
|
|
65
|
+
33 line text O, saddle to me my milk-white steed
|
|
66
|
+
33 stress pattern nswxmwmns
|
|
67
|
+
34 line text Go and fetch me my pony, O!
|
|
68
|
+
34 stress pattern mxsnwswn
|
|
69
|
+
35 line text That I may ride and seek my bride
|
|
70
|
+
35 stress pattern wnwsxmws
|
|
71
|
+
36 line text Who is gone with the raggle taggle gypsies, O!
|
|
72
|
+
36 stress pattern wxsxxmwnwswn
|
|
73
|
+
37 line text O, he rode high and he rode low
|
|
74
|
+
37 stress pattern nwnsxwns
|
|
75
|
+
38 line text He rode through woods and copses, too
|
|
76
|
+
38 stress pattern wmxmxsws
|
|
77
|
+
39 line text Until he came to an open field
|
|
78
|
+
39 stress pattern wnwmxxmws
|
|
79
|
+
40 line text And there he spied his fay lady, O!
|
|
80
|
+
40 stress pattern xmnmwxswn
|
|
81
|
+
41 line text What makes you leave your house and land?
|
|
82
|
+
41 stress pattern nmwmwmxs
|
|
83
|
+
42 line text What care I for my house and my land?
|
|
84
|
+
42 stress pattern wmnxwmxws
|
|
85
|
+
43 line text What care I for my new wedded lord
|
|
86
|
+
43 stress pattern wmnxwmnws
|
|
87
|
+
44 line text Last night you slept on a goose-feather bed
|
|
88
|
+
44 stress pattern wmwswxmnws
|
|
89
|
+
45 line text With the sheet turned down so bravely, O!
|
|
90
|
+
45 stress pattern wxmnsxswn
|
|
91
|
+
46 line text And tonight you'll sleep in a cold open field
|
|
92
|
+
46 stress pattern xwswmwxsnws
|
|
93
|
+
47 line text Along with the raggle taggle gypsies, O!
|
|
94
|
+
47 stress pattern wnwxmwnwswn
|
|
95
|
+
48 line text What care I for a goose-feather bed
|
|
96
|
+
48 stress pattern wmnwxmnws
|
|
97
|
+
49 line text For tonight I shall sleep in a cold open field
|
|
98
|
+
49 stress pattern xwsnwmxxsnws
|
|
99
|
+
50 line text I'd just as soon be a beggar as a king
|
|
100
|
+
50 stress pattern wnxmwxswxxm
|
|
101
|
+
51 line text A king cannot swagger, nor drink like a beggar
|
|
102
|
+
51 stress pattern xmnwswxmwxsw
|
|
103
|
+
52 line text Let the back and the sides go bare, my boys
|
|
104
|
+
52 stress pattern mxsxxsnswm
|
|
105
|
+
53 line text But give to the belly, boys, beer enough
|
|
106
|
+
53 stress pattern xmxxswnswn
|
|
107
|
+
54 line text Sometimes we are lame, sometimes we are blind
|
|
108
|
+
54 stress pattern nmwxsnmwxs
|
|
109
|
+
55 line text The keeper did a shooting go
|
|
110
|
+
55 stress pattern xswnxswm
|
|
111
|
+
56 line text And under his coat he carried a bow
|
|
112
|
+
56 stress pattern xnxwswmwxs
|
|
113
|
+
57 line text All for to shoot at a merry little doe
|
|
114
|
+
57 stress pattern mxxmxxmwmws
|
|
115
|
+
58 line text Hey down, ho down, derry derry down
|
|
116
|
+
58 stress pattern snsnswmws
|
|
117
|
+
59 line text To my hey, down, down, to my ho, down, down
|
|
118
|
+
59 stress pattern xwmnsxwsnm
|
|
119
|
+
60 line text The fourth doe she did cross the plain
|
|
120
|
+
60 stress pattern xsnwnmxs
|
|
121
|
+
61 line text The keeper fetch'd her back again
|
|
122
|
+
61 stress pattern xswmwswm
|
|
123
|
+
62 line text Where she is now she may remain
|
|
124
|
+
62 stress pattern wnwswnws
|
|
125
|
+
63 line text The keeper fetch'd her back with his crook
|
|
126
|
+
63 stress pattern xswmwmxws
|
|
127
|
+
64 line text But he with his hounds did turn her again
|
|
128
|
+
64 stress pattern xmxwswmwxs
|
|
129
|
+
65 line text And it's there he did hunt in a merry, merry vein
|
|
130
|
+
65 stress pattern xwswxmxxmwmws
|
|
131
|
+
66 line text There was a farmer had three sons
|
|
132
|
+
66 stress pattern wnxswmns
|
|
133
|
+
67 line text And he came home tight in the middle of the night
|
|
134
|
+
67 stress pattern xnmnsxxmwxxs
|
|
135
|
+
68 line text The first he was a stout miller
|
|
136
|
+
68 stress pattern xsnmxnsw
|
|
137
|
+
69 line text And the third to be sure was a little tailor
|
|
138
|
+
69 stress pattern xxsxwswxmwsw
|
|
139
|
+
70 line text The stout miller he stole the corn
|
|
140
|
+
70 stress pattern xnswnmxs
|
|
141
|
+
71 line text And the tailor went forth and he stole broadcloth
|
|
142
|
+
71 stress pattern xxswnsxwsnm
|
|
143
|
+
72 line text And the devil ran away with the tailor one day
|
|
144
|
+
72 stress pattern xxmwnwsxxswxm
|
|
145
|
+
73 line text Bold Nelson's praise I'm going to sing
|
|
146
|
+
73 stress pattern nmwswmwxs
|
|
147
|
+
74 line text (Not forgetting our glorious King)
|
|
148
|
+
74 stress pattern nwmxwmws
|
|
149
|
+
75 line text There was Sydney Smith and Duncan too
|
|
150
|
+
75 stress pattern nxmwsxsws
|
|
151
|
+
76 line text Lord Howe and all the glorious crew
|
|
152
|
+
76 stress pattern nsxwxmws
|
|
153
|
+
77 line text They were the men that were true blue
|
|
154
|
+
77 stress pattern wnxmxmns
|
|
155
|
+
78 line text Full of care, yet I swear
|
|
156
|
+
78 stress pattern mxsnws
|
|
157
|
+
79 line text None with Nelson could compare
|
|
158
|
+
79 stress pattern mxswxwm
|
|
159
|
+
80 line text Bold Buonaparte he threaten'd war
|
|
160
|
+
80 stress pattern nswnwmws
|
|
161
|
+
81 line text A man who fear'd not wound nor scar
|
|
162
|
+
81 stress pattern xmwmwmxs
|
|
163
|
+
82 line text Lord Nelson's actions made him quake
|
|
164
|
+
82 stress pattern nswswmws
|
|
165
|
+
83 line text And all French powers he made to shake
|
|
166
|
+
83 stress pattern xmnswnmxs
|
|
167
|
+
84 line text He said his king he'd ne'er forsake
|
|
168
|
+
84 stress pattern wmwmwnws
|
|
169
|
+
85 line text These last words Thus he spake
|
|
170
|
+
85 stress pattern mnsnws
|
|
171
|
+
86 line text Stand true my lads like hearts of oak
|
|
172
|
+
86 stress pattern nswmwmxs
|
|
173
|
+
87 line text Lord Nelson bold, though threaten'd wide
|
|
174
|
+
87 stress pattern nswswmws
|
|
175
|
+
88 line text And many a time he had been tried
|
|
176
|
+
88 stress pattern xnwxmnwxs
|
|
177
|
+
89 line text He fought like a hero till he died
|
|
178
|
+
89 stress pattern wmwxswmns
|
|
179
|
+
90 line text But the day was won, their line was broke
|
|
180
|
+
90 stress pattern xxmwswmws
|
|
181
|
+
91 line text While all around was lost in smoke
|
|
182
|
+
91 stress pattern wnxmwmxs
|
|
183
|
+
92 line text And Nelson he got his death stroke
|
|
184
|
+
92 stress pattern xswnmwsn
|
|
185
|
+
93 line text He faced his foe with his sword in hand
|
|
186
|
+
93 stress pattern wmwsxwmxs
|
|
187
|
+
94 line text I am a sailor stout and bold,
|
|
188
|
+
94 stress pattern wnxswmxs
|
|
189
|
+
95 line text I fight for my king and country too
|
|
190
|
+
95 stress pattern wmxwsxsws
|
|
191
|
+
96 line text I travel'd the country through and through,
|
|
192
|
+
96 stress pattern wmwxswmxs
|
|
193
|
+
97 line text If you should want to know my name,
|
|
194
|
+
97 stress pattern xnwmxmws
|
|
195
|
+
98 line text I've got permission from the King
|
|
196
|
+
98 stress pattern wmwswxxs
|
|
197
|
+
99 line text I said: my dear, what will you do?
|
|
198
|
+
99 stress pattern wswsnmws
|
|
199
|
+
100 line text Here's ale and wine and brandy too;
|
|
200
|
+
100 stress pattern wmxmxsws
|
|
201
|
+
101 line text Besides a pair of new silk shoes,
|
|
202
|
+
101 stress pattern wnxmxmns
|
|
203
|
+
102 line text The king's permission granted me
|
|
204
|
+
102 stress pattern xmwswswn
|
|
205
|
+
103 line text From Bristol Town to Liverpool,
|
|
206
|
+
103 stress pattern xswnxswn
|
|
207
|
+
104 line text And in whatever town I went,
|
|
208
|
+
104 stress pattern xxwmwsws
|
|
209
|
+
105 line text To court young maidens I was bent;
|
|
210
|
+
105 stress pattern xmnswnwm
|
|
211
|
+
106 line text And marry none was my intent,
|
|
212
|
+
106 stress pattern xmwswnws
|
|
213
|
+
107 line text My man John, what can the matter be,
|
|
214
|
+
107 stress pattern mnswnxswn
|
|
215
|
+
108 line text She won't be my joy, my joy nor my dear
|
|
216
|
+
108 stress pattern wmnwswmxws
|
|
217
|
+
109 line text And you will win the lady in the space of half a year;
|
|
218
|
+
109 stress pattern xnwmxswxxmxmxs
|
|
219
|
+
110 line text And she shall take a walk with you anywhere.
|
|
220
|
+
110 stress pattern xnwmxsxwswn
|
|
221
|
+
111 line text O Madam, I will give to you a little greyhound,
|
|
222
|
+
111 stress pattern wswnwmxwxmwsn
|
|
223
|
+
112 line text And every hair upon its back shall cost a thousand pound,
|
|
224
|
+
112 stress pattern xnwmxnwswmxmws
|
|
225
|
+
113 line text O Sir, I won't accept of you a little greyhound,
|
|
226
|
+
113 stress pattern wswmwsxwxmwsn
|
|
227
|
+
114 line text O Madam, I will give to you a fine ivory comb,
|
|
228
|
+
114 stress pattern wswnwsxwxnmws
|
|
229
|
+
115 line text To fasten up your silver locks when I am not at home,
|
|
230
|
+
115 stress pattern xmxmwmwswnwmxs
|
|
231
|
+
116 line text O Madam, I will give to you a cushion full of pins,
|
|
232
|
+
116 stress pattern wswnwsxwxmwmxs
|
|
233
|
+
117 line text O Madam, I will give to you the keys of my heart,
|
|
234
|
+
117 stress pattern wswnwmxwxmxws
|
|
235
|
+
118 line text To lock it up for ever that we never more shall part,
|
|
236
|
+
118 stress pattern xmwmxswnwmwmws
|
|
237
|
+
119 line text O sir, I will accept of you the keys of your heart,
|
|
238
|
+
119 stress pattern wswnwsxwxmxws
|
|
239
|
+
120 line text There was a little man and he had a little wife
|
|
240
|
+
120 stress pattern nwxmwsxwmxmws
|
|
241
|
+
121 line text And he loved her as dear as he loved his life
|
|
242
|
+
121 stress pattern xwmwxmxwmws
|
|
243
|
+
122 line text Was just to put her lips to a little crab-fish
|
|
244
|
+
122 stress pattern wnxmwmxxmwsn
|
|
245
|
+
123 line text Then up her man arose and he girt him in his clothes,
|
|
246
|
+
123 stress pattern wmwmwsxwmwxws
|
|
247
|
+
124 line text And down to the seaside he follow'd his nose
|
|
248
|
+
124 stress pattern xnxxsnwmwns
|
|
249
|
+
125 line text O fisherman, O fisherman, O come and tell me
|
|
250
|
+
125 stress pattern nsxwnsxwnmxsw
|
|
251
|
+
126 line text Have you a little crab-fish you can sell me?
|
|
252
|
+
126 stress pattern wnxmwswnwsw
|
|
253
|
+
127 line text O yes, and O yes, I have one, two and three,
|
|
254
|
+
127 stress pattern wsxwswnmnxs
|
|
255
|
+
128 line text And the best of them all I will sell to thee
|
|
256
|
+
128 stress pattern xxmxwswnsxw
|
|
257
|
+
129 line text O wife put thy lips to this little crab-fish
|
|
258
|
+
129 stress pattern wsnwmxwmwsn
|
|
259
|
+
130 line text Then the wife just to smell him popped up from the clothes,
|
|
260
|
+
130 stress pattern wxswxswnmxxs
|
|
261
|
+
131 line text When up got the crab fish and nipped her by the nose.
|
|
262
|
+
131 stress pattern wsnxsnxmwxxs
|
|
263
|
+
132 line text Hey man and ho man, come hither do ye hear?
|
|
264
|
+
132 stress pattern snxsnwswnws
|
|
265
|
+
133 line text But the crab fish was ready and caught him by the ear.
|
|
266
|
+
133 stress pattern xxsnwswxmwxxs
|
|
267
|
+
134 line text Come and I will sing to you.
|
|
268
|
+
134 stress pattern sxnwsxm
|
|
269
|
+
135 line text I will sing you one-ery
|
|
270
|
+
135 stress pattern nwmwswm
|
|
271
|
+
136 line text Eleven and eleven are the keys of heaven,
|
|
272
|
+
136 stress pattern wmwxwswxxmxsw
|
|
273
|
+
137 line text Nine are the nine that brightly shine,
|
|
274
|
+
137 stress pattern mwxmwmws
|
|
275
|
+
138 line text Seven are the seven stars in the sky,
|
|
276
|
+
138 stress pattern swxxmwmxxs
|
|
277
|
+
139 line text Five are the flam boys under the boat,
|
|
278
|
+
139 stress pattern mwxmnmxxs
|
|
279
|
+
140 line text And two and two are lily-white babes
|
|
280
|
+
140 stress pattern xmxmwmwns
|
|
281
|
+
141 line text One and One is all alone,
|
|
282
|
+
141 stress pattern mxmwnws
|
|
283
|
+
142 line text There was a star in David's land
|
|
284
|
+
142 stress pattern nwxsxmwm
|
|
285
|
+
143 line text That a Princely Babe was born that night,
|
|
286
|
+
143 stress pattern wxmwswmwm
|
|
287
|
+
144 line text If this be the truth, King Herod said,
|
|
288
|
+
144 stress pattern xmwxsnmws
|
|
289
|
+
145 line text The roasted cock that lies in the dish
|
|
290
|
+
145 stress pattern xmwswmwxs
|
|
291
|
+
146 line text O the cock soon thrusted and feathered well,
|
|
292
|
+
146 stress pattern nxmwswxmws
|
|
293
|
+
147 line text And he did crow full senses three
|
|
294
|
+
147 stress pattern xnwsnmws
|
|
295
|
+
148 line text Oh! don't you see the turtle dove
|
|
296
|
+
148 stress pattern wnwmxswn
|
|
297
|
+
149 line text Sitting under the yonder tree
|
|
298
|
+
149 stress pattern mwnwxnws
|
|
299
|
+
150 line text Lamenting for her own true love?
|
|
300
|
+
150 stress pattern wmwnwmns
|
|
301
|
+
151 line text And I will mourn for thee, my dear,
|
|
302
|
+
151 stress pattern xmwmxswm
|
|
303
|
+
152 line text If you must suffer grief and pain,
|
|
304
|
+
152 stress pattern xnwmwmxs
|
|
305
|
+
153 line text For though I go away, I'll return again,
|
|
306
|
+
153 stress pattern xwnmwsnwswm
|
|
307
|
+
154 line text If I row ten thousand mile, my dear,
|
|
308
|
+
154 stress pattern xwsnmwswm
|
|
309
|
+
155 line text Ten thousand mile is very far
|
|
310
|
+
155 stress pattern nmwswmws
|
|
311
|
+
156 line text With a heavy, heavy sigh and a bitter, bitter cry;
|
|
312
|
+
156 stress pattern wxmwmwsw=xmwmws
|
|
313
|
+
157 line text No one to hear my moan, my dear,
|
|
314
|
+
157 stress pattern mnxmwswm
|
|
315
|
+
158 line text I may not stay your grievous moan,
|
|
316
|
+
158 stress pattern wnwmwmws
|
|
317
|
+
159 line text Yet I will love but thee alone;
|
|
318
|
+
159 stress pattern xnwmxmws
|
|
319
|
+
160 line text Till the streams run from the seas, my dear,
|
|
320
|
+
160 stress pattern wxsnwxswm
|
|
321
|
+
161 line text The tides shall cease to beat the shore,
|
|
322
|
+
161 stress pattern xswmxmxs
|
|
323
|
+
162 line text Yet I will love thee more and more
|
|
324
|
+
162 stress pattern xnwmwsxm
|
|
325
|
+
163 line text Until the day I die, my dear,
|
|
326
|
+
163 stress pattern xnxmwswm
|
|
327
|
+
164 line text Then let the seas run dry, sweetheart,
|
|
328
|
+
164 stress pattern wmxmnsnm
|
|
329
|
+
165 line text Yet here I will stay, nor ever from thee part,
|
|
330
|
+
165 stress pattern xmwxsxmwxws
|
|
331
|
+
166 line text Till all my days are done, my dear,
|
|
332
|
+
166 stress pattern wmwmwswm
|
|
333
|
+
167 line text There was an old fox and he had a loving wife
|
|
334
|
+
167 stress pattern wnxnsxwmxmws
|
|
335
|
+
168 line text And he went out one moon shiny night
|
|
336
|
+
168 stress pattern xmnswmnws
|
|
337
|
+
169 line text He swore the fattest should grease his beard,
|
|
338
|
+
169 stress pattern wmxswxmws
|
|
339
|
+
170 line text He took the grey goose by the neck,
|
|
340
|
+
170 stress pattern wmxnsnxs
|
|
341
|
+
171 line text And as he went along she went, "Quack, quack,"
|
|
342
|
+
171 stress pattern xxwmwswmns
|
|
343
|
+
172 line text Where he had little ones, eight, nine and ten,
|
|
344
|
+
172 stress pattern nwnswnsnxm
|
|
345
|
+
173 line text I placed my back against the old garden gate,
|
|
346
|
+
173 stress pattern wmwsxnxmnxs
|
|
347
|
+
174 line text To hear my true love sing, my boys,
|
|
348
|
+
174 stress pattern xmwmnswm
|
|
349
|
+
175 line text 'Tis now very near three quarters of a year
|
|
350
|
+
175 stress pattern wsnwmnmwxxs
|
|
351
|
+
176 line text Since you and I together did stay."
|
|
352
|
+
176 stress pattern wmxmwmwxs
|
|
353
|
+
177 line text Come now my love and sit down by me,
|
|
354
|
+
177 stress pattern mnxmxnsxw
|
|
355
|
+
178 line text Since you and I together have been.
|
|
356
|
+
178 stress pattern wmxmwswxm
|
|
357
|
+
179 line text I will not come and sit down by you
|
|
358
|
+
179 stress pattern nwxmxnsxw
|
|
359
|
+
180 line text Since you have been courting some other young girl
|
|
360
|
+
180 stress pattern nwmxmwxswnm
|
|
361
|
+
181 line text O the Chesapeake so bold out of Boston she was towed
|
|
362
|
+
181 stress pattern wxmwnxsnxmwnxs
|
|
363
|
+
182 line text To take an English frigate neat and handy, O;
|
|
364
|
+
182 stress pattern xmxmwswmxswn
|
|
365
|
+
183 line text And the people all in port, they came out to see the sport,
|
|
366
|
+
183 stress pattern xxmwnxswnmxmxs
|
|
367
|
+
184 line text There was a lady near the town;
|
|
368
|
+
184 stress pattern wnxswnxs
|
|
369
|
+
185 line text She walked all night and all around,
|
|
370
|
+
185 stress pattern wmnsxwxs
|
|
371
|
+
186 line text First she leant against an oak;
|
|
372
|
+
186 stress pattern nwmxnxs
|
|
373
|
+
187 line text First it bent and then it broke.
|
|
374
|
+
187 stress pattern nwmxnxs
|
|
375
|
+
188 line text Next she leaned against a thorn
|
|
376
|
+
188 stress pattern nwmxnxs
|
|
377
|
+
189 line text Two sweet little babes to her were born.
|
|
378
|
+
189 stress pattern wsnxsxnwm
|
|
379
|
+
190 line text She got a rope so long and neat,
|
|
380
|
+
190 stress pattern wmxsxmxs
|
|
381
|
+
191 line text And tied them down both hands and feet.
|
|
382
|
+
191 stress pattern xmwswmxs
|
|
383
|
+
192 line text She got a knife so keen and sharp,
|
|
384
|
+
192 stress pattern wmxsxmxs
|
|
385
|
+
193 line text And pierced it through each tender heart.
|
|
386
|
+
193 stress pattern xmwxwmws
|
|
387
|
+
194 line text She walked out one moonlit night;
|
|
388
|
+
194 stress pattern wnmwmns
|
|
389
|
+
195 line text She saw her babes all dressed in white.
|
|
390
|
+
195 stress pattern wmwswmxs
|
|
391
|
+
196 line text Babes, O babes, if you were mine
|
|
392
|
+
196 stress pattern swsxnws
|
|
393
|
+
197 line text I'd dress you up in silk so fine.
|
|
394
|
+
197 stress pattern wmwsxmxs
|
|
395
|
+
198 line text Mother, O Mother, when we were thine
|
|
396
|
+
198 stress pattern swnswxnws
|
|
397
|
+
199 line text You neither dressed us coarse nor fine.
|
|
398
|
+
199 stress pattern wnwmwmxs
|
|
399
|
+
200 line text In seven years you'll hear a bell,
|
|
400
|
+
200 stress pattern xmwswmxs
|
|
401
|
+
201 line text In seven years you'll land in hell.
|
|
402
|
+
201 stress pattern xmwswmxs
|
|
403
|
+
202 line text It was late in the night when the Squire came home
|
|
404
|
+
202 stress pattern nwmxxswxsnm
|
|
405
|
+
203 line text His servant made a sure reply:
|
|
406
|
+
203 stress pattern wswmxmws
|
|
407
|
+
204 line text O go catch up my milk-white steed,
|
|
408
|
+
204 stress pattern wmnmwmns
|
|
409
|
+
205 line text I'll ride all night till broad daylight,
|
|
410
|
+
205 stress pattern wmwswnsn
|
|
411
|
+
206 line text He rode and he rode till he came to the town,
|
|
412
|
+
206 stress pattern wmxwsxwmxxs
|
|
413
|
+
207 line text The tears came rolling down his cheeks
|
|
414
|
+
207 stress pattern xswmwnws
|
|
415
|
+
208 line text It's come go back, my dearest dear,
|
|
416
|
+
208 stress pattern wmnswmws
|
|
417
|
+
209 line text I won't go back, my dearest dear,
|
|
418
|
+
209 stress pattern wsnmwmws
|
|
419
|
+
210 line text For I wouldn't give a kiss from gipsy's lips
|
|
420
|
+
210 stress pattern xwnwmxmxmws
|
|
421
|
+
211 line text It's go pull off those snow-white gloves
|
|
422
|
+
211 stress pattern wmnmwmns
|
|
423
|
+
212 line text And give to me your lily-white hand
|
|
424
|
+
212 stress pattern xmxnwmwns
|
|
425
|
+
213 line text It's she pulled off those snow-white gloves
|
|
426
|
+
213 stress pattern wmnmwmns
|
|
427
|
+
214 line text She soon ran through her gay clothing
|
|
428
|
+
214 stress pattern wmwnwnsw
|
|
429
|
+
215 line text Her gold ring off her finger's gone,
|
|
430
|
+
215 stress pattern wnswnswm
|
|
431
|
+
216 line text O once I had a house and land,
|
|
432
|
+
216 stress pattern nmwsxmxs
|
|
433
|
+
217 line text But now I've come to an old straw pad
|
|
434
|
+
217 stress pattern xmwsxxmws
|
|
435
|
+
218 line text There were three kings came from the West
|
|
436
|
+
218 stress pattern wmnswnxs
|
|
437
|
+
219 line text And they have taken a solemn oath
|
|
438
|
+
219 stress pattern xnwmwxmws
|
|
439
|
+
220 line text They took a plow and plowed him in
|
|
440
|
+
220 stress pattern wmxsxmws
|
|
441
|
+
221 line text So there he lay for a full fortnight
|
|
442
|
+
221 stress pattern xmwswxnsn
|
|
443
|
+
222 line text Then Barleycorn sprang up again
|
|
444
|
+
222 stress pattern wsxnwsxn
|
|
445
|
+
223 line text There he remained till midsummer
|
|
446
|
+
223 stress pattern mnwswnsw
|
|
447
|
+
224 line text Then Barleycorn he got a beard
|
|
448
|
+
224 stress pattern wsxnwmxs
|
|
449
|
+
225 line text And then poor Johnny Barleycorn
|
|
450
|
+
225 stress pattern xnwmwsxn
|
|
451
|
+
226 line text O Barleycorn is the choicest grain
|
|
452
|
+
226 stress pattern nsxnwxmws
|
|
453
|
+
227 line text It will do more than any grain
|
|
454
|
+
227 stress pattern wmnmxnws
|
|
455
|
+
228 line text There was a man lived in the West
|
|
456
|
+
228 stress pattern nwxmnxxs
|
|
457
|
+
229 line text He married a wife, she was not of the best;
|
|
458
|
+
229 stress pattern wmwxsnxmxxs
|
|
459
|
+
230 line text She was Ruggleton's daughter of Iero.
|
|
460
|
+
230 stress pattern nxmxwmwxswn
|
|
461
|
+
231 line text Said he, when he came in from plow:
|
|
462
|
+
231 stress pattern nswmnmxs
|
|
463
|
+
232 line text Ho! Is my dinner ready now?
|
|
464
|
+
232 stress pattern snwmwswm
|
|
465
|
+
233 line text O if your dinner you must have,
|
|
466
|
+
233 stress pattern nxwswnwm
|
|
467
|
+
234 line text Then get it yourself; I am not your slave,
|
|
468
|
+
234 stress pattern wmnwswxnws
|
|
469
|
+
235 line text For I won't brew and I won't bake,
|
|
470
|
+
235 stress pattern xnwsxnws
|
|
471
|
+
236 line text And I won't make my white hands black,
|
|
472
|
+
236 stress pattern xnwmwmns
|
|
473
|
+
237 line text May the Heavens be your guide, my love
|
|
474
|
+
237 stress pattern wxmwnwswm
|
|
475
|
+
238 line text Oh, the lad that you have sent to sea
|
|
476
|
+
238 stress pattern nxmxnwmxs
|
|
477
|
+
239 line text I'm married to the lad I love
|
|
478
|
+
239 stress pattern wmwxxmws
|
|
479
|
+
240 line text The King he wrote a long letter
|
|
480
|
+
240 stress pattern xswmxnsw
|
|
481
|
+
241 line text And sent it to my Lord Dunwaters
|
|
482
|
+
241 stress pattern xmwxwnsnw
|
|
483
|
+
242 line text The first two lines that he did read
|
|
484
|
+
242 stress pattern xswmxnws
|
|
485
|
+
243 line text The next two lines Lord Dunwaters read
|
|
486
|
+
243 stress pattern xswmnsnwm
|
|
487
|
+
244 line text He goes out to his stable groom
|
|
488
|
+
244 stress pattern wnmxwmws
|
|
489
|
+
245 line text There he did spy a fair pretty maid
|
|
490
|
+
245 stress pattern wnwmxsnwm
|
|
491
|
+
246 line text 'Twas eighteen hundred and twenty four
|
|
492
|
+
246 stress pattern wswmwxmws
|
|
493
|
+
247 line text We hoist our colors to the top of the mast
|
|
494
|
+
247 stress pattern wmwswxxmxxs
|
|
495
|
+
248 line text And to Greenland bore away, brave boys
|
|
496
|
+
248 stress pattern xxswmwsns
|
|
497
|
+
249 line text A fine young man it was indeed
|
|
498
|
+
249 stress pattern xmwswnws
|
|
499
|
+
250 line text He was mounted on his milk-white steed
|
|
500
|
+
250 stress pattern nxmwxwmns
|
|
501
|
+
251 line text He rode, he rode, himself all alone
|
|
502
|
+
251 stress pattern wmwswmwxs
|
|
503
|
+
252 line text Until he came to lovely Joan.
|
|
504
|
+
252 stress pattern wnwmxmws
|
|
505
|
+
253 line text It's of a man of Burmingham town,
|
|
506
|
+
253 stress pattern wxxmxsxwn
|
|
507
|
+
254 line text And she did love bad company
|
|
508
|
+
254 stress pattern xnwmwsxw
|
|
509
|
+
255 line text As dear as she loved her life, boys, life
|
|
510
|
+
255 stress pattern xmxmnwmws
|
|
511
|
+
256 line text Mother, mother, make my bed
|
|
512
|
+
256 stress pattern swswmws
|
|
513
|
+
257 line text And wrap me in a milk-white sheet
|
|
514
|
+
257 stress pattern xmwxxmns
|
|
515
|
+
258 line text And wrap me in a cloak of gold
|
|
516
|
+
258 stress pattern xmwxxmxs
|
|
517
|
+
259 line text On Monday morning I married a wife
|
|
518
|
+
259 stress pattern xmwswnmwxs
|
|
519
|
+
260 line text Thinking to live and a sober life
|
|
520
|
+
260 stress pattern mwxmxxmws
|
|
521
|
+
261 line text But as she turned out, I'd better been dead,
|
|
522
|
+
261 stress pattern xxwnswmwxs
|
|
523
|
+
262 line text The remarkable day that I was wed.
|
|
524
|
+
262 stress pattern xwmxwmwnxs
|
|
525
|
+
263 line text When I was young I lived in a hat
|
|
526
|
+
263 stress pattern wnwmwmxxs
|
|
527
|
+
264 line text You'd better be a maiden as a poor man's wife
|
|
528
|
+
264 stress pattern wmwnxswxxmws
|
|
529
|
+
265 line text You'd better be a maiden all the days of your life.
|
|
530
|
+
265 stress pattern wmwnxswnxmxws
|
|
531
|
+
266 line text Young Emma was a servant maid
|
|
532
|
+
266 stress pattern nmwnxswn
|
|
533
|
+
267 line text He plowed the main, much gold to gain
|
|
534
|
+
267 stress pattern wmxswsxm
|
|
535
|
+
268 line text For your cage shall be made of the very best of gold
|
|
536
|
+
268 stress pattern xwswnmxxmwmxs
|
|
537
|
+
269 line text O where have you been roving, Henry my son?
|
|
538
|
+
269 stress pattern nmwnwswmwns
|
|
539
|
+
270 line text I've been roving for my sweetheart, mother, make my bed soon
|
|
540
|
+
270 stress pattern nwswxwsnmwmwns
|
|
541
|
+
271 line text For I'm sick to my heart and I wants to lie down.
|
|
542
|
+
271 stress pattern xwmxwsxwmxns
|
|
543
|
+
272 line text A squire, a squire, he lived in the woods
|
|
544
|
+
272 stress pattern xmxmwnxxs
|
|
545
|
+
273 line text A little while and he passed a joke
|
|
546
|
+
273 stress pattern xmwmxwmxs
|
|
547
|
+
274 line text I'll do as much for my true love
|
|
548
|
+
274 stress pattern wmxmxwns
|
|
549
|
+
275 line text I'll sit and mourn all on her grave
|
|
550
|
+
275 stress pattern wmxmwxws
|
|
551
|
+
276 line text There was a youth and a well beloved youth
|
|
552
|
+
276 stress pattern wnxsxxmwnws
|
|
553
|
+
277 line text He loved the bailiff's daughter dear
|
|
554
|
+
277 stress pattern wmxmwmws
|
|
555
|
+
278 line text It's of a farmer's daughter dear
|
|
556
|
+
278 stress pattern nwxmwmws
|
|
557
|
+
279 line text Yesterday was a high holy day
|
|
558
|
+
279 stress pattern mwnwxnswm
|
|
559
|
+
280 line text And all the little school-fellows went out to play
|
|
560
|
+
280 stress pattern xnxmwnmwmwxs
|
|
561
|
+
281 line text Come bridle me my milk-white steed
|
|
562
|
+
281 stress pattern nswnwmns
|
|
563
|
+
282 line text And a strange hat on the stairs he found
|
|
564
|
+
282 stress pattern xxnsxxswm
|
|
565
|
+
283 line text One Good Friday morning our ship set sail.
|
|
566
|
+
283 stress pattern nwmwswnmwm
|
|
567
|
+
284 line text There I espied a fair pretty lass
|
|
568
|
+
284 stress pattern wnwmxsnwm
|
|
569
|
+
285 line text With a comb and a brush in her hand, her hand, her hand,
|
|
570
|
+
285 stress pattern xxsxxmxwswmwm
|
|
571
|
+
286 line text When the stormy winds did blow rough, rough,
|
|
572
|
+
286 stress pattern wxmwswmns
|
|
573
|
+
287 line text While we poor sailors are up and to the top
|
|
574
|
+
287 stress pattern wmnswxmxwxs
|
|
575
|
+
288 line text And the landlubbers lying down below, below, below,
|
|
576
|
+
288 stress pattern xxswxmwnwsxmws
|
|
577
|
+
289 line text My father bound me a prentice boy,
|
|
578
|
+
289 stress pattern wswmwxswm
|
|
579
|
+
290 line text In Cambridge town there lived a lass
|
|
580
|
+
290 stress pattern wswmwmxs
|
|
581
|
+
291 line text A young man came for courting her,
|
|
582
|
+
291 stress pattern xsnmwswm
|
|
583
|
+
292 line text I promised her I'd marry her
|
|
584
|
+
292 stress pattern wswmwswm
|
|
585
|
+
293 line text Instead of that I was content
|
|
586
|
+
293 stress pattern wmxswnws
|
|
587
|
+
294 line text You virgins all, I pray draw near,
|
|
588
|
+
294 stress pattern wmwswmws
|
|
589
|
+
295 line text It's of a Turkish lady brave
|
|
590
|
+
295 stress pattern mwxswmws
|
|
591
|
+
296 line text Who fell in love with an English slave,
|
|
592
|
+
296 stress pattern wsxmwxmws
|
|
593
|
+
297 line text As I walked out one midsummer morn
|
|
594
|
+
297 stress pattern xwnswmnws
|
|
595
|
+
298 line text Who should I see but my own true love
|
|
596
|
+
298 stress pattern mnwmxwmws
|
|
597
|
+
299 line text The birds of love so sweetly sing
|
|
598
|
+
299 stress pattern xmxsxmws
|
|
599
|
+
300 line text There's none but her, but her alone
|
|
600
|
+
300 stress pattern wmxsxmws
|
|
601
|
+
301 line text The sweet month of May is now coming on in
|
|
602
|
+
301 stress pattern xwmxswnmwxs
|
|
603
|
+
302 line text And the trees are in full bloom and the birds are in full tune
|
|
604
|
+
302 stress pattern xxswxnsxxswxns
|
|
605
|
+
303 line text So the maidens and their sweethearts like lambkins they do play
|
|
606
|
+
303 stress pattern wxmwxwsnwmwnwm
|
|
607
|
+
304 line text And welcome in young shepherd in the month of May
|
|
608
|
+
304 stress pattern xnwmwswxxmxs
|
|
609
|
+
305 line text In the month of May, in the month of May.
|
|
610
|
+
305 stress pattern xxmxsxxmxs
|
|
611
|
+
306 line text O where are you going to, my pretty maid,
|
|
612
|
+
306 stress pattern nmxwswmwmws
|
|
613
|
+
307 line text With your red rosy cheek and your coal-black hair?
|
|
614
|
+
307 stress pattern wxmnwswxmws
|
|
615
|
+
308 line text For it's dabbling in the dew makes the milkmaids fair.
|
|
616
|
+
308 stress pattern xwmwxxsnxmns
|
|
617
|
+
309 line text And her trimming and bobbins a trail on the ground.
|
|
618
|
+
309 stress pattern xwmwxmwxswxm
|
|
619
|
+
310 line text O madam, will you marry me, me, me,
|
|
620
|
+
310 stress pattern wswmnmwmws
|
|
621
|
+
311 line text There's none but you I've often said
|
|
622
|
+
311 stress pattern wmxswmws
|
|
623
|
+
312 line text Come write me down ye powers above.
|
|
624
|
+
312 stress pattern nmwswmwxs
|
|
625
|
+
313 line text The first I fancied was a young man's love.
|
|
626
|
+
313 stress pattern xmwswxxmns
|
|
627
|
+
314 line text It is a jewel all in my eyes
|
|
628
|
+
314 stress pattern nwxswnxws
|
|
629
|
+
315 line text And where my joy and comfort lies.
|
|
630
|
+
315 stress pattern nxwmxswm
|
|
631
|
+
316 line text Come change your ring with me, my love,
|
|
632
|
+
316 stress pattern nswmxnwm
|
|
633
|
+
317 line text It shall be a token of true love
|
|
634
|
+
317 stress pattern wnwxmwxns
|
|
635
|
+
318 line text Come rise you English colors, love
|
|
636
|
+
318 stress pattern wmwmwswm
|
|
637
|
+
319 line text 'Twas early in the month of May
|
|
638
|
+
319 stress pattern wmwnxmxs
|
|
639
|
+
320 line text Down on the banks of daisy fair
|
|
640
|
+
320 stress pattern nwxmxmws
|
|
641
|
+
321 line text She did appear like Venus fair
|
|
642
|
+
321 stress pattern wnwmwmws
|
|
643
|
+
322 line text She was the neck and bosom fine
|
|
644
|
+
322 stress pattern wnxmxmws
|
|
645
|
+
323 line text So the greenest field shall be my bed
|
|
646
|
+
323 stress pattern wxmwswnws
|
|
647
|
+
324 line text A flowery pillow for my head,
|
|
648
|
+
324 stress pattern xmxwswxws
|
|
649
|
+
325 line text And the leaves which blow from tree to tree
|
|
650
|
+
325 stress pattern wxmwmxmxs
|
|
651
|
+
326 line text Shall be the covering over me.
|
|
652
|
+
326 stress pattern wnxsxwnxw
|
|
653
|
+
327 line text As I walked out one May morning
|
|
654
|
+
327 stress pattern nmwmwnsw
|
|
655
|
+
328 line text Who should I spy but a fair pretty maid
|
|
656
|
+
328 stress pattern mnwswxmnws
|
|
657
|
+
329 line text O Valentine's day comes but once a year.
|
|
658
|
+
329 stress pattern nswnmnxmxs
|
|
659
|
+
330 line text A pretty fair maid came to my bed side
|
|
660
|
+
330 stress pattern xmwnsnxwsn
|
|
661
|
+
331 line text Come all young lovers, I pray draw near,
|
|
662
|
+
331 stress pattern swnswnmws
|
|
663
|
+
332 line text Some shocking news you soon shall hear,
|
|
664
|
+
332 stress pattern wmwswmws
|
|
665
|
+
333 line text And when the same to you I've told
|
|
666
|
+
333 stress pattern wmxsxnws
|
|
667
|
+
334 line text Shall make your very blood run cold.
|
|
668
|
+
334 stress pattern wswmwmns
|
|
669
|
+
335 line text Jack Tar being sick and like to die,
|
|
670
|
+
335 stress pattern nsnwsxmxs
|
|
671
|
+
336 line text He had no place his head to lie,
|
|
672
|
+
336 stress pattern nwnmwsxm
|
|
673
|
+
337 line text And all the people when they passed by
|
|
674
|
+
337 stress pattern nwxmwnwnm
|
|
675
|
+
338 line text And among them all was a rich young squire
|
|
676
|
+
338 stress pattern xwnwnwxmns
|
|
677
|
+
339 line text A brisk young lass so buck and gay,
|
|
678
|
+
339 stress pattern xmnsxmxs
|
|
679
|
+
340 line text She went into the mill one day.
|
|
680
|
+
340 stress pattern wmnwxswm
|
|
681
|
+
341 line text From London town I went astray,
|
|
682
|
+
341 stress pattern xswnwm
|
|
683
|
+
342 line text 'Twas in Oxford City I lost my way.
|
|
684
|
+
342 stress pattern wxmwswnmws
|
|
685
|
+
343 line text The finest girl that I did meet
|
|
686
|
+
343 stress pattern xmwmwnws
|
|
687
|
+
344 line text She treated me with kisses sweet.
|
|
688
|
+
344 stress pattern wmwnxmws
|
|
689
|
+
345 line text He's up to the rigs, he's down to the rigs,
|
|
690
|
+
345 stress pattern wmxxswmxxs
|
|
691
|
+
346 line text He's up to the rigs of London town.
|
|
692
|
+
346 stress pattern wmxxmxswn
|
|
693
|
+
347 line text As I was off riding over the moor
|
|
694
|
+
347 stress pattern xnxwmwnwxs
|
|
695
|
+
348 line text I saw the lawyer just before,
|
|
696
|
+
348 stress pattern wmxswnwm
|
|
697
|
+
349 line text O he is the valiant Turpin, O.
|
|
698
|
+
349 stress pattern nmwxmwswn
|
|
699
|
+
350 line text Come all that's around me and listen awhile,
|
|
700
|
+
350 stress pattern nmwxswxswxm
|
|
701
|
+
351 line text I will sing you a ditty that will cause you to smile
|
|
702
|
+
351 stress pattern nwmwxswnwmwxs
|
|
703
|
+
352 line text Concerning the wondrous sights I do declare,
|
|
704
|
+
352 stress pattern wnwxmwswnws
|
|
705
|
+
353 line text That you have all seen today at Bridgwater Fair.
|
|
706
|
+
353 stress pattern wnxnswmxmnxs
|
|
707
|
+
354 line text Our orders came on board, my boys,
|
|
708
|
+
354 stress pattern wswnxswm
|
|
709
|
+
355 line text All for to cruise and never refuse
|
|
710
|
+
355 stress pattern nxxsxmwns
|
|
711
|
+
356 line text From the Liverpool docks I bid adieu
|
|
712
|
+
356 stress pattern nxmwnswmws
|
|
713
|
+
357 line text To Sally, Kate and Molly too,
|
|
714
|
+
357 stress pattern xmwmxmws
|
|
715
|
+
358 line text With our sails unfurled, our anchor weighed,
|
|
716
|
+
358 stress pattern xwmwswmws
|
|
717
|
+
359 line text We're bound for to plow the watery main.
|
|
718
|
+
359 stress pattern wmxxsxmxws
|
|
719
|
+
360 line text When I was young and in my prime
|
|
720
|
+
360 stress pattern wmxsxnws
|
|
721
|
+
361 line text They gave to me the very best corn
|
|
722
|
+
361 stress pattern wmxnxmwns
|
|
723
|
+
362 line text The lady at the window high
|
|
724
|
+
362 stress pattern xmwxxmws
|
|
725
|
+
363 line text O lady gay, take pity I pray
|
|
726
|
+
363 stress pattern wmwsnsxwm
|
|
727
|
+
364 line text Where all young lads and swaggering blades
|
|
728
|
+
364 stress pattern wmnsxmxns
|