OSMD_function_test_all.xml 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE score-partwise PUBLIC "-//Recordare//DTD MusicXML 3.1 Partwise//EN" "http://www.musicxml.org/dtds/partwise.dtd">
  3. <score-partwise version="3.1">
  4. <work>
  5. <work-title>OSMD Function Test - All</work-title>
  6. </work>
  7. <identification>
  8. <encoding>
  9. <software>MuseScore 2.3.1</software>
  10. <encoding-date>2018-08-01</encoding-date>
  11. <supports element="accidental" type="yes"/>
  12. <supports element="beam" type="yes"/>
  13. <supports element="print" attribute="new-page" type="yes" value="yes"/>
  14. <supports element="print" attribute="new-system" type="yes" value="yes"/>
  15. <supports element="stem" type="yes"/>
  16. </encoding>
  17. </identification>
  18. <defaults>
  19. <scaling>
  20. <millimeters>7.05556</millimeters>
  21. <tenths>40</tenths>
  22. </scaling>
  23. <page-layout>
  24. <page-height>1683.36</page-height>
  25. <page-width>1190.88</page-width>
  26. <page-margins type="even">
  27. <left-margin>56.6929</left-margin>
  28. <right-margin>56.6929</right-margin>
  29. <top-margin>56.6929</top-margin>
  30. <bottom-margin>113.386</bottom-margin>
  31. </page-margins>
  32. <page-margins type="odd">
  33. <left-margin>56.6929</left-margin>
  34. <right-margin>56.6929</right-margin>
  35. <top-margin>56.6929</top-margin>
  36. <bottom-margin>113.386</bottom-margin>
  37. </page-margins>
  38. </page-layout>
  39. <word-font font-family="FreeSerif" font-size="10"/>
  40. <lyric-font font-family="FreeSerif" font-size="11"/>
  41. </defaults>
  42. <credit page="1">
  43. <credit-words default-x="595.44" default-y="1626.67" justify="center" valign="top" font-size="24">OSMD Function Test - All</credit-words>
  44. </credit>
  45. <part-list>
  46. <score-part id="P1">
  47. <part-name>Piano</part-name>
  48. <part-abbreviation>Pno.</part-abbreviation>
  49. <score-instrument id="P1-I1">
  50. <instrument-name>Piano</instrument-name>
  51. </score-instrument>
  52. <midi-device id="P1-I1" port="1"></midi-device>
  53. <midi-instrument id="P1-I1">
  54. <midi-channel>1</midi-channel>
  55. <midi-program>1</midi-program>
  56. <volume>78.7402</volume>
  57. <pan>0</pan>
  58. </midi-instrument>
  59. </score-part>
  60. </part-list>
  61. <part id="P1">
  62. <measure number="1" width="205.05">
  63. <print>
  64. <system-layout>
  65. <system-margins>
  66. <left-margin>0.00</left-margin>
  67. <right-margin>-0.00</right-margin>
  68. </system-margins>
  69. <top-system-distance>195.00</top-system-distance>
  70. </system-layout>
  71. </print>
  72. <attributes>
  73. <divisions>4</divisions>
  74. <key>
  75. <fifths>0</fifths>
  76. </key>
  77. <time>
  78. <beats>4</beats>
  79. <beat-type>4</beat-type>
  80. </time>
  81. <clef>
  82. <sign>G</sign>
  83. <line>2</line>
  84. </clef>
  85. </attributes>
  86. <note default-x="114.16" default-y="-15.00">
  87. <pitch>
  88. <step>C</step>
  89. <octave>5</octave>
  90. </pitch>
  91. <duration>16</duration>
  92. <voice>1</voice>
  93. <type>whole</type>
  94. <lyric number="1" default-x="11.65" default-y="-80.00">
  95. <syllabic>single</syllabic>
  96. <text>Ornaments:</text>
  97. </lyric>
  98. </note>
  99. </measure>
  100. <measure number="2" width="120.56">
  101. <direction placement="above">
  102. <direction-type>
  103. <words default-y="40.00" relative-x="-75.25" relative-y="19.26" font-weight="bold" font-size="12">Ornaments</words>
  104. </direction-type>
  105. </direction>
  106. <direction placement="above">
  107. <direction-type>
  108. <words default-y="40.00" relative-x="-75.25" relative-y="19.26" font-weight="bold" font-size="12">Ornaments</words>
  109. </direction-type>
  110. </direction>
  111. <note default-x="24.26" default-y="-20.00">
  112. <pitch>
  113. <step>B</step>
  114. <octave>4</octave>
  115. </pitch>
  116. <duration>8</duration>
  117. <voice>1</voice>
  118. <type>half</type>
  119. <stem>down</stem>
  120. <notations>
  121. <ornaments>
  122. <trill-mark/>
  123. </ornaments>
  124. </notations>
  125. <lyric number="1" default-x="6.94" default-y="-80.00">
  126. <syllabic>single</syllabic>
  127. <text>Trill</text>
  128. </lyric>
  129. </note>
  130. <note default-x="71.43" default-y="-15.00">
  131. <pitch>
  132. <step>C</step>
  133. <octave>5</octave>
  134. </pitch>
  135. <duration>8</duration>
  136. <voice>1</voice>
  137. <type>half</type>
  138. <stem>down</stem>
  139. <notations>
  140. <ornaments>
  141. <turn/>
  142. </ornaments>
  143. </notations>
  144. <lyric number="1" default-x="6.94" default-y="-80.00">
  145. <syllabic>single</syllabic>
  146. <text>Turn</text>
  147. </lyric>
  148. </note>
  149. </measure>
  150. <measure number="3" width="64.00">
  151. <note>
  152. <rest/>
  153. <duration>16</duration>
  154. <voice>1</voice>
  155. </note>
  156. </measure>
  157. <measure number="4" width="169.72">
  158. <note default-x="62.57" default-y="-40.00">
  159. <pitch>
  160. <step>E</step>
  161. <octave>4</octave>
  162. </pitch>
  163. <duration>8</duration>
  164. <voice>1</voice>
  165. <type>half</type>
  166. <stem>up</stem>
  167. <notations>
  168. <ornaments>
  169. <inverted-turn/>
  170. </ornaments>
  171. </notations>
  172. <lyric number="1" default-x="6.22" default-y="-80.00">
  173. <syllabic>single</syllabic>
  174. <text>TurnInverted</text>
  175. </lyric>
  176. </note>
  177. <note>
  178. <rest/>
  179. <duration>8</duration>
  180. <voice>1</voice>
  181. <type>half</type>
  182. </note>
  183. </measure>
  184. <measure number="5" width="95.88">
  185. <note default-x="25.65" default-y="-5.00">
  186. <pitch>
  187. <step>E</step>
  188. <octave>5</octave>
  189. </pitch>
  190. <duration>8</duration>
  191. <voice>1</voice>
  192. <type>half</type>
  193. <stem>down</stem>
  194. <notations>
  195. <ornaments>
  196. <inverted-mordent/>
  197. </ornaments>
  198. </notations>
  199. <lyric number="1" default-x="6.94" default-y="-80.00">
  200. <syllabic>single</syllabic>
  201. <text>Prall</text>
  202. </lyric>
  203. </note>
  204. <note>
  205. <rest/>
  206. <duration>8</duration>
  207. <voice>1</voice>
  208. <type>half</type>
  209. </note>
  210. </measure>
  211. <measure number="6" width="133.60">
  212. <note default-x="42.81" default-y="-10.00">
  213. <pitch>
  214. <step>D</step>
  215. <octave>5</octave>
  216. </pitch>
  217. <duration>8</duration>
  218. <voice>1</voice>
  219. <type>half</type>
  220. <stem>down</stem>
  221. <notations>
  222. <ornaments>
  223. <mordent/>
  224. </ornaments>
  225. </notations>
  226. <lyric number="1" default-x="6.94" default-y="-80.00">
  227. <syllabic>single</syllabic>
  228. <text>Mordent</text>
  229. </lyric>
  230. </note>
  231. <note>
  232. <rest/>
  233. <duration>8</duration>
  234. <voice>1</voice>
  235. <type>half</type>
  236. </note>
  237. </measure>
  238. <measure number="7" width="64.00">
  239. <note>
  240. <rest/>
  241. <duration>16</duration>
  242. <voice>1</voice>
  243. </note>
  244. </measure>
  245. <measure number="8" width="224.69">
  246. <note default-x="85.85" default-y="-20.00">
  247. <pitch>
  248. <step>B</step>
  249. <octave>4</octave>
  250. </pitch>
  251. <duration>8</duration>
  252. <voice>1</voice>
  253. <type>half</type>
  254. <stem>down</stem>
  255. <notations>
  256. <ornaments>
  257. <delayed-turn/>
  258. </ornaments>
  259. </notations>
  260. <lyric number="1" default-x="6.94" default-y="-80.00" relative-x="3.06" relative-y="6.12">
  261. <syllabic>single</syllabic>
  262. <text>DelayedOrnaments</text>
  263. </lyric>
  264. </note>
  265. <note default-x="182.20" default-y="-15.00">
  266. <pitch>
  267. <step>C</step>
  268. <octave>5</octave>
  269. </pitch>
  270. <duration>8</duration>
  271. <voice>1</voice>
  272. <type>half</type>
  273. <stem>down</stem>
  274. </note>
  275. </measure>
  276. <measure number="9" width="1077.49">
  277. <print new-system="yes">
  278. <system-layout>
  279. <system-margins>
  280. <left-margin>0.00</left-margin>
  281. <right-margin>0.00</right-margin>
  282. </system-margins>
  283. <system-distance>94.25</system-distance>
  284. </system-layout>
  285. </print>
  286. <note default-x="49.07" default-y="-40.00">
  287. <pitch>
  288. <step>E</step>
  289. <octave>4</octave>
  290. </pitch>
  291. <duration>6</duration>
  292. <voice>1</voice>
  293. <type>quarter</type>
  294. <dot/>
  295. <stem>up</stem>
  296. <notations>
  297. <ornaments>
  298. <delayed-inverted-turn/>
  299. </ornaments>
  300. </notations>
  301. </note>
  302. <note default-x="341.71" default-y="-35.00">
  303. <pitch>
  304. <step>F</step>
  305. <octave>4</octave>
  306. </pitch>
  307. <duration>1</duration>
  308. <voice>1</voice>
  309. <type>16th</type>
  310. <stem>up</stem>
  311. <beam number="1">begin</beam>
  312. <beam number="2">begin</beam>
  313. </note>
  314. <note default-x="456.43" default-y="-30.00">
  315. <pitch>
  316. <step>G</step>
  317. <octave>4</octave>
  318. </pitch>
  319. <duration>1</duration>
  320. <voice>1</voice>
  321. <type>16th</type>
  322. <stem>up</stem>
  323. <beam number="1">end</beam>
  324. <beam number="2">end</beam>
  325. </note>
  326. <note default-x="571.14" default-y="-25.00">
  327. <pitch>
  328. <step>A</step>
  329. <octave>4</octave>
  330. </pitch>
  331. <duration>4</duration>
  332. <voice>1</voice>
  333. <type>quarter</type>
  334. <stem>up</stem>
  335. </note>
  336. <note>
  337. <rest/>
  338. <duration>4</duration>
  339. <voice>1</voice>
  340. <type>quarter</type>
  341. </note>
  342. </measure>
  343. <measure number="10" width="312.48">
  344. <print new-system="yes">
  345. <system-layout>
  346. <system-margins>
  347. <left-margin>0.00</left-margin>
  348. <right-margin>-0.00</right-margin>
  349. </system-margins>
  350. <system-distance>94.25</system-distance>
  351. </system-layout>
  352. </print>
  353. <note default-x="96.95" default-y="-15.00">
  354. <pitch>
  355. <step>C</step>
  356. <octave>5</octave>
  357. </pitch>
  358. <duration>16</duration>
  359. <voice>1</voice>
  360. <type>whole</type>
  361. <lyric number="1" default-x="11.65" default-y="-80.00">
  362. <syllabic>single</syllabic>
  363. <text>Articulations:</text>
  364. </lyric>
  365. </note>
  366. </measure>
  367. <measure number="11" width="352.42">
  368. <direction placement="above">
  369. <direction-type>
  370. <words default-y="40.00" relative-x="-42.85" relative-y="18.29" font-weight="bold" font-size="12">Articulations</words>
  371. </direction-type>
  372. </direction>
  373. <note default-x="37.27" default-y="-10.00">
  374. <pitch>
  375. <step>D</step>
  376. <octave>5</octave>
  377. </pitch>
  378. <duration>2</duration>
  379. <voice>1</voice>
  380. <type>eighth</type>
  381. <stem>down</stem>
  382. <beam number="1">begin</beam>
  383. <notations>
  384. <technical>
  385. <up-bow/>
  386. </technical>
  387. </notations>
  388. <lyric number="1" default-x="6.58" default-y="-80.00">
  389. <syllabic>single</syllabic>
  390. <text>Upbow</text>
  391. </lyric>
  392. </note>
  393. <note default-x="80.55" default-y="-5.00">
  394. <pitch>
  395. <step>E</step>
  396. <octave>5</octave>
  397. </pitch>
  398. <duration>2</duration>
  399. <voice>1</voice>
  400. <type>eighth</type>
  401. <stem>down</stem>
  402. <beam number="1">end</beam>
  403. <notations>
  404. <technical>
  405. <up-bow/>
  406. </technical>
  407. </notations>
  408. </note>
  409. <note>
  410. <rest/>
  411. <duration>4</duration>
  412. <voice>1</voice>
  413. <type>quarter</type>
  414. </note>
  415. <note default-x="193.09" default-y="0.00">
  416. <pitch>
  417. <step>F</step>
  418. <octave>5</octave>
  419. </pitch>
  420. <duration>2</duration>
  421. <voice>1</voice>
  422. <type>eighth</type>
  423. <stem>up</stem>
  424. <beam number="1">begin</beam>
  425. <notations>
  426. <fermata type="upright"/>
  427. </notations>
  428. <lyric number="1" default-x="6.58" default-y="-80.00" relative-y="-7.79">
  429. <syllabic>single</syllabic>
  430. <text>Fermata</text>
  431. </lyric>
  432. </note>
  433. <note default-x="238.28" default-y="-5.00">
  434. <pitch>
  435. <step>E</step>
  436. <octave>5</octave>
  437. </pitch>
  438. <duration>2</duration>
  439. <voice>1</voice>
  440. <type>eighth</type>
  441. <stem>up</stem>
  442. <beam number="1">end</beam>
  443. </note>
  444. <note>
  445. <rest/>
  446. <duration>4</duration>
  447. <voice>1</voice>
  448. <type>quarter</type>
  449. </note>
  450. </measure>
  451. <measure number="12" width="412.59">
  452. <note default-x="45.24" default-y="-30.00">
  453. <pitch>
  454. <step>G</step>
  455. <octave>4</octave>
  456. </pitch>
  457. <duration>2</duration>
  458. <voice>1</voice>
  459. <type>eighth</type>
  460. <stem>up</stem>
  461. <beam number="1">begin</beam>
  462. <notations>
  463. <technical>
  464. <stopped/>
  465. </technical>
  466. </notations>
  467. <lyric number="1" default-x="6.58" default-y="-80.00">
  468. <syllabic>single</syllabic>
  469. <text>Pizzicato</text>
  470. </lyric>
  471. </note>
  472. <note default-x="94.14" default-y="-15.00">
  473. <pitch>
  474. <step>C</step>
  475. <octave>5</octave>
  476. </pitch>
  477. <duration>2</duration>
  478. <voice>1</voice>
  479. <type>eighth</type>
  480. <stem>up</stem>
  481. <beam number="1">continue</beam>
  482. <notations>
  483. <technical>
  484. <stopped/>
  485. </technical>
  486. </notations>
  487. </note>
  488. <note default-x="137.85" default-y="-25.00">
  489. <pitch>
  490. <step>A</step>
  491. <octave>4</octave>
  492. </pitch>
  493. <duration>2</duration>
  494. <voice>1</voice>
  495. <type>eighth</type>
  496. <stem>up</stem>
  497. <beam number="1">continue</beam>
  498. </note>
  499. <note default-x="181.57" default-y="-45.00">
  500. <pitch>
  501. <step>D</step>
  502. <octave>4</octave>
  503. </pitch>
  504. <duration>2</duration>
  505. <voice>1</voice>
  506. <type>eighth</type>
  507. <stem>up</stem>
  508. <beam number="1">end</beam>
  509. </note>
  510. <note default-x="234.86" default-y="-5.00">
  511. <pitch>
  512. <step>E</step>
  513. <octave>5</octave>
  514. </pitch>
  515. <duration>2</duration>
  516. <voice>1</voice>
  517. <type>eighth</type>
  518. <stem>down</stem>
  519. <beam number="1">begin</beam>
  520. <notations>
  521. <technical>
  522. <snap-pizzicato/>
  523. </technical>
  524. </notations>
  525. <lyric number="1" default-x="6.58" default-y="-80.00" relative-x="-4.15" relative-y="-17.41">
  526. <syllabic>single</syllabic>
  527. <text>SnapPizz</text>
  528. </lyric>
  529. </note>
  530. <note default-x="279.85" default-y="-35.00">
  531. <pitch>
  532. <step>F</step>
  533. <octave>4</octave>
  534. </pitch>
  535. <duration>2</duration>
  536. <voice>1</voice>
  537. <type>eighth</type>
  538. <stem>down</stem>
  539. <beam number="1">continue</beam>
  540. <notations>
  541. <technical>
  542. <snap-pizzicato/>
  543. </technical>
  544. </notations>
  545. </note>
  546. <note default-x="323.57" default-y="-45.00">
  547. <pitch>
  548. <step>D</step>
  549. <octave>4</octave>
  550. </pitch>
  551. <duration>2</duration>
  552. <voice>1</voice>
  553. <type>eighth</type>
  554. <stem>down</stem>
  555. <beam number="1">continue</beam>
  556. </note>
  557. <note default-x="367.28" default-y="-15.00">
  558. <pitch>
  559. <step>C</step>
  560. <octave>5</octave>
  561. </pitch>
  562. <duration>2</duration>
  563. <voice>1</voice>
  564. <type>eighth</type>
  565. <stem>down</stem>
  566. <beam number="1">end</beam>
  567. </note>
  568. </measure>
  569. <measure number="13" width="480.79">
  570. <print new-system="yes">
  571. <system-layout>
  572. <system-margins>
  573. <left-margin>0.00</left-margin>
  574. <right-margin>0.00</right-margin>
  575. </system-margins>
  576. <system-distance>94.25</system-distance>
  577. </system-layout>
  578. </print>
  579. <note default-x="103.08" default-y="-40.00">
  580. <pitch>
  581. <step>E</step>
  582. <octave>4</octave>
  583. </pitch>
  584. <duration>2</duration>
  585. <voice>1</voice>
  586. <type>eighth</type>
  587. <stem>up</stem>
  588. <beam number="1">begin</beam>
  589. <notations>
  590. <articulations>
  591. <staccatissimo/>
  592. </articulations>
  593. </notations>
  594. <lyric number="1" default-x="6.58" default-y="-80.00" relative-x="-1.05" relative-y="-6.27">
  595. <syllabic>single</syllabic>
  596. <text>Staccatissimo</text>
  597. </lyric>
  598. </note>
  599. <note default-x="170.65" default-y="-20.00">
  600. <pitch>
  601. <step>B</step>
  602. <octave>4</octave>
  603. </pitch>
  604. <duration>2</duration>
  605. <voice>1</voice>
  606. <type>eighth</type>
  607. <stem>up</stem>
  608. <beam number="1">continue</beam>
  609. <notations>
  610. <articulations>
  611. <staccatissimo/>
  612. </articulations>
  613. </notations>
  614. </note>
  615. <note default-x="214.02" default-y="-45.00">
  616. <pitch>
  617. <step>D</step>
  618. <octave>4</octave>
  619. </pitch>
  620. <duration>2</duration>
  621. <voice>1</voice>
  622. <type>eighth</type>
  623. <stem>up</stem>
  624. <beam number="1">continue</beam>
  625. </note>
  626. <note default-x="257.39" default-y="-25.00">
  627. <pitch>
  628. <step>A</step>
  629. <octave>4</octave>
  630. </pitch>
  631. <duration>2</duration>
  632. <voice>1</voice>
  633. <type>eighth</type>
  634. <stem>up</stem>
  635. <beam number="1">end</beam>
  636. </note>
  637. <note default-x="303.24" default-y="-50.00">
  638. <pitch>
  639. <step>C</step>
  640. <octave>4</octave>
  641. </pitch>
  642. <duration>2</duration>
  643. <voice>1</voice>
  644. <type>eighth</type>
  645. <stem>up</stem>
  646. <beam number="1">begin</beam>
  647. <notations>
  648. <articulations>
  649. <staccato/>
  650. </articulations>
  651. </notations>
  652. <lyric number="1" default-x="6.58" default-y="-80.00">
  653. <syllabic>single</syllabic>
  654. <text>Staccato</text>
  655. </lyric>
  656. </note>
  657. <note default-x="349.09" default-y="-30.00">
  658. <pitch>
  659. <step>G</step>
  660. <octave>4</octave>
  661. </pitch>
  662. <duration>2</duration>
  663. <voice>1</voice>
  664. <type>eighth</type>
  665. <stem>up</stem>
  666. <beam number="1">continue</beam>
  667. <notations>
  668. <articulations>
  669. <staccato/>
  670. </articulations>
  671. </notations>
  672. </note>
  673. <note default-x="392.46" default-y="-35.00">
  674. <pitch>
  675. <step>F</step>
  676. <octave>4</octave>
  677. </pitch>
  678. <duration>2</duration>
  679. <voice>1</voice>
  680. <type>eighth</type>
  681. <stem>up</stem>
  682. <beam number="1">continue</beam>
  683. </note>
  684. <note default-x="435.83" default-y="-55.00">
  685. <pitch>
  686. <step>B</step>
  687. <octave>3</octave>
  688. </pitch>
  689. <duration>2</duration>
  690. <voice>1</voice>
  691. <type>eighth</type>
  692. <stem>up</stem>
  693. <beam number="1">end</beam>
  694. </note>
  695. </measure>
  696. <measure number="14" width="264.00">
  697. <note default-x="36.26" default-y="-50.00">
  698. <pitch>
  699. <step>C</step>
  700. <octave>4</octave>
  701. </pitch>
  702. <duration>2</duration>
  703. <voice>1</voice>
  704. <type>eighth</type>
  705. <stem>up</stem>
  706. <beam number="1">begin</beam>
  707. <notations>
  708. <articulations>
  709. <tenuto/>
  710. </articulations>
  711. </notations>
  712. <lyric number="1" default-x="6.58" default-y="-80.00">
  713. <syllabic>single</syllabic>
  714. <text>Tenuto</text>
  715. </lyric>
  716. </note>
  717. <note default-x="76.18" default-y="-30.00">
  718. <pitch>
  719. <step>G</step>
  720. <octave>4</octave>
  721. </pitch>
  722. <duration>2</duration>
  723. <voice>1</voice>
  724. <type>eighth</type>
  725. <stem>up</stem>
  726. <beam number="1">end</beam>
  727. <notations>
  728. <articulations>
  729. <tenuto/>
  730. </articulations>
  731. </notations>
  732. </note>
  733. <note default-x="114.98" default-y="-30.00">
  734. <pitch>
  735. <step>G</step>
  736. <octave>4</octave>
  737. </pitch>
  738. <duration>4</duration>
  739. <voice>1</voice>
  740. <type>quarter</type>
  741. <stem>up</stem>
  742. </note>
  743. <note default-x="176.69" default-y="-35.00">
  744. <pitch>
  745. <step>F</step>
  746. <octave>4</octave>
  747. </pitch>
  748. <duration>8</duration>
  749. <voice>1</voice>
  750. <type>half</type>
  751. <stem>up</stem>
  752. <notations>
  753. <articulations>
  754. <tenuto/>
  755. </articulations>
  756. </notations>
  757. </note>
  758. </measure>
  759. <measure number="15" width="332.70">
  760. <note default-x="47.11" default-y="-30.00">
  761. <pitch>
  762. <step>G</step>
  763. <octave>4</octave>
  764. </pitch>
  765. <duration>8</duration>
  766. <voice>1</voice>
  767. <type>half</type>
  768. <stem>up</stem>
  769. <notations>
  770. <technical>
  771. <fingering>0</fingering>
  772. </technical>
  773. </notations>
  774. <lyric number="1" default-x="6.22" default-y="-80.00">
  775. <syllabic>single</syllabic>
  776. <text>Fingering</text>
  777. </lyric>
  778. </note>
  779. <note default-x="126.88" default-y="-35.00">
  780. <pitch>
  781. <step>F</step>
  782. <octave>4</octave>
  783. </pitch>
  784. <duration>2</duration>
  785. <voice>1</voice>
  786. <type>eighth</type>
  787. <stem>up</stem>
  788. <beam number="1">begin</beam>
  789. <notations>
  790. <technical>
  791. <fingering>1</fingering>
  792. </technical>
  793. </notations>
  794. </note>
  795. <note default-x="172.26" default-y="-40.00">
  796. <pitch>
  797. <step>E</step>
  798. <octave>4</octave>
  799. </pitch>
  800. <duration>2</duration>
  801. <voice>1</voice>
  802. <type>eighth</type>
  803. <stem>up</stem>
  804. <beam number="1">end</beam>
  805. <notations>
  806. <technical>
  807. <fingering>2</fingering>
  808. </technical>
  809. </notations>
  810. </note>
  811. <note default-x="217.65" default-y="-45.00">
  812. <pitch>
  813. <step>D</step>
  814. <octave>4</octave>
  815. </pitch>
  816. <duration>1</duration>
  817. <voice>1</voice>
  818. <type>16th</type>
  819. <stem>up</stem>
  820. <beam number="1">begin</beam>
  821. <beam number="2">begin</beam>
  822. <notations>
  823. <technical>
  824. <fingering>3</fingering>
  825. </technical>
  826. </notations>
  827. </note>
  828. <note default-x="246.01" default-y="-40.00">
  829. <pitch>
  830. <step>E</step>
  831. <octave>4</octave>
  832. </pitch>
  833. <duration>1</duration>
  834. <voice>1</voice>
  835. <type>16th</type>
  836. <stem>up</stem>
  837. <beam number="1">continue</beam>
  838. <beam number="2">continue</beam>
  839. <notations>
  840. <technical>
  841. <fingering>4</fingering>
  842. </technical>
  843. </notations>
  844. </note>
  845. <note default-x="274.37" default-y="-35.00">
  846. <pitch>
  847. <step>F</step>
  848. <octave>4</octave>
  849. </pitch>
  850. <duration>1</duration>
  851. <voice>1</voice>
  852. <type>16th</type>
  853. <stem>up</stem>
  854. <beam number="1">continue</beam>
  855. <beam number="2">continue</beam>
  856. <notations>
  857. <technical>
  858. <fingering>5</fingering>
  859. </technical>
  860. </notations>
  861. </note>
  862. <note default-x="302.73" default-y="-45.00">
  863. <pitch>
  864. <step>D</step>
  865. <octave>4</octave>
  866. </pitch>
  867. <duration>1</duration>
  868. <voice>1</voice>
  869. <type>16th</type>
  870. <stem>up</stem>
  871. <beam number="1">end</beam>
  872. <beam number="2">end</beam>
  873. </note>
  874. </measure>
  875. <measure number="16" width="128.12">
  876. <print new-system="yes">
  877. <system-layout>
  878. <system-margins>
  879. <left-margin>0.00</left-margin>
  880. <right-margin>0.00</right-margin>
  881. </system-margins>
  882. <system-distance>94.25</system-distance>
  883. </system-layout>
  884. </print>
  885. <note>
  886. <rest/>
  887. <duration>16</duration>
  888. <voice>1</voice>
  889. </note>
  890. </measure>
  891. <measure number="17" width="290.83">
  892. <direction placement="above">
  893. <direction-type>
  894. <words default-y="40.00" relative-x="-67.33" relative-y="-0.71" font-weight="bold" font-size="12">Grace Notes</words>
  895. </direction-type>
  896. </direction>
  897. <note default-x="32.71" default-y="-35.00">
  898. <grace/>
  899. <pitch>
  900. <step>F</step>
  901. <octave>4</octave>
  902. </pitch>
  903. <voice>1</voice>
  904. <type>eighth</type>
  905. <stem>up</stem>
  906. </note>
  907. <note default-x="51.16" default-y="-30.00">
  908. <pitch>
  909. <step>G</step>
  910. <octave>4</octave>
  911. </pitch>
  912. <duration>4</duration>
  913. <voice>1</voice>
  914. <type>quarter</type>
  915. <stem>up</stem>
  916. <lyric number="1" default-x="6.58" default-y="-80.00">
  917. <syllabic>single</syllabic>
  918. <text>GraceNotes</text>
  919. </lyric>
  920. </note>
  921. <note default-x="113.73" default-y="-35.00">
  922. <grace/>
  923. <pitch>
  924. <step>F</step>
  925. <octave>4</octave>
  926. </pitch>
  927. <voice>1</voice>
  928. <type>eighth</type>
  929. <stem>up</stem>
  930. <notations>
  931. <slur type="start" number="1"/>
  932. </notations>
  933. </note>
  934. <note default-x="132.17" default-y="-30.00">
  935. <pitch>
  936. <step>G</step>
  937. <octave>4</octave>
  938. </pitch>
  939. <duration>4</duration>
  940. <voice>1</voice>
  941. <type>quarter</type>
  942. <stem>up</stem>
  943. <notations>
  944. <slur type="stop" number="1"/>
  945. </notations>
  946. </note>
  947. <note default-x="172.81" default-y="20.00">
  948. <grace/>
  949. <pitch>
  950. <step>C</step>
  951. <octave>6</octave>
  952. </pitch>
  953. <voice>1</voice>
  954. <type>eighth</type>
  955. <stem>down</stem>
  956. <notations>
  957. <slur type="start" number="1"/>
  958. </notations>
  959. </note>
  960. <note default-x="184.52" default-y="-30.00">
  961. <pitch>
  962. <step>G</step>
  963. <octave>4</octave>
  964. </pitch>
  965. <duration>4</duration>
  966. <voice>1</voice>
  967. <type>quarter</type>
  968. <stem>up</stem>
  969. <notations>
  970. <slur type="stop" number="1"/>
  971. </notations>
  972. </note>
  973. <note default-x="218.43" default-y="-30.00">
  974. <grace/>
  975. <pitch>
  976. <step>G</step>
  977. <alter>1</alter>
  978. <octave>4</octave>
  979. </pitch>
  980. <voice>1</voice>
  981. <type>eighth</type>
  982. <accidental>sharp</accidental>
  983. <stem>up</stem>
  984. <notations>
  985. <slur type="start" number="1"/>
  986. </notations>
  987. </note>
  988. <note default-x="236.87" default-y="-25.00">
  989. <pitch>
  990. <step>A</step>
  991. <octave>4</octave>
  992. </pitch>
  993. <duration>4</duration>
  994. <voice>1</voice>
  995. <type>quarter</type>
  996. <stem>up</stem>
  997. <notations>
  998. <slur type="stop" number="1"/>
  999. </notations>
  1000. </note>
  1001. </measure>
  1002. <measure number="18" width="276.18">
  1003. <note default-x="7.75" default-y="-20.00">
  1004. <grace/>
  1005. <pitch>
  1006. <step>B</step>
  1007. <octave>4</octave>
  1008. </pitch>
  1009. <voice>1</voice>
  1010. <type>eighth</type>
  1011. <stem>up</stem>
  1012. <notations>
  1013. <slur type="start" number="1"/>
  1014. </notations>
  1015. </note>
  1016. <note default-x="26.19" default-y="-25.00">
  1017. <pitch>
  1018. <step>A</step>
  1019. <octave>4</octave>
  1020. </pitch>
  1021. <duration>4</duration>
  1022. <voice>1</voice>
  1023. <type>quarter</type>
  1024. <stem>up</stem>
  1025. <notations>
  1026. <slur type="stop" number="1"/>
  1027. </notations>
  1028. </note>
  1029. <note default-x="63.49" default-y="-20.00">
  1030. <grace/>
  1031. <pitch>
  1032. <step>B</step>
  1033. <octave>4</octave>
  1034. </pitch>
  1035. <voice>1</voice>
  1036. <type>eighth</type>
  1037. <stem>up</stem>
  1038. </note>
  1039. <note default-x="81.93" default-y="-25.00">
  1040. <pitch>
  1041. <step>A</step>
  1042. <octave>4</octave>
  1043. </pitch>
  1044. <duration>4</duration>
  1045. <voice>1</voice>
  1046. <type>quarter</type>
  1047. <stem>up</stem>
  1048. </note>
  1049. <note default-x="121.85" default-y="-30.00">
  1050. <grace slash="yes"/>
  1051. <pitch>
  1052. <step>G</step>
  1053. <octave>4</octave>
  1054. </pitch>
  1055. <voice>1</voice>
  1056. <type>eighth</type>
  1057. <stem>up</stem>
  1058. <notations>
  1059. <slur type="start" number="1"/>
  1060. </notations>
  1061. </note>
  1062. <note default-x="140.29" default-y="-25.00">
  1063. <pitch>
  1064. <step>A</step>
  1065. <octave>4</octave>
  1066. </pitch>
  1067. <duration>4</duration>
  1068. <voice>1</voice>
  1069. <type>quarter</type>
  1070. <stem>up</stem>
  1071. <notations>
  1072. <slur type="stop" number="1"/>
  1073. </notations>
  1074. <lyric number="1" default-x="6.58" default-y="-80.00">
  1075. <syllabic>single</syllabic>
  1076. <text>GraceSlash</text>
  1077. </lyric>
  1078. </note>
  1079. <note default-x="200.40" default-y="-20.00">
  1080. <grace slash="yes"/>
  1081. <pitch>
  1082. <step>B</step>
  1083. <octave>4</octave>
  1084. </pitch>
  1085. <voice>1</voice>
  1086. <type>eighth</type>
  1087. <stem>up</stem>
  1088. <notations>
  1089. <slur type="start" number="1"/>
  1090. </notations>
  1091. </note>
  1092. <note default-x="218.85" default-y="-25.00">
  1093. <pitch>
  1094. <step>A</step>
  1095. <octave>4</octave>
  1096. </pitch>
  1097. <duration>4</duration>
  1098. <voice>1</voice>
  1099. <type>quarter</type>
  1100. <stem>up</stem>
  1101. <notations>
  1102. <slur type="stop" number="1"/>
  1103. </notations>
  1104. </note>
  1105. </measure>
  1106. <measure number="19" width="382.36">
  1107. <note default-x="65.79" default-y="-30.00">
  1108. <grace/>
  1109. <pitch>
  1110. <step>G</step>
  1111. <octave>4</octave>
  1112. </pitch>
  1113. <voice>1</voice>
  1114. <type>16th</type>
  1115. <stem>up</stem>
  1116. <beam number="1">begin</beam>
  1117. <beam number="2">begin</beam>
  1118. <notations>
  1119. <slur type="start" number="1"/>
  1120. </notations>
  1121. </note>
  1122. <note default-x="76.75" default-y="-25.00">
  1123. <grace/>
  1124. <pitch>
  1125. <step>A</step>
  1126. <octave>4</octave>
  1127. </pitch>
  1128. <voice>1</voice>
  1129. <type>16th</type>
  1130. <stem>up</stem>
  1131. <beam number="1">end</beam>
  1132. <beam number="2">end</beam>
  1133. </note>
  1134. <note default-x="88.47" default-y="-20.00">
  1135. <pitch>
  1136. <step>B</step>
  1137. <octave>4</octave>
  1138. </pitch>
  1139. <duration>4</duration>
  1140. <voice>1</voice>
  1141. <type>quarter</type>
  1142. <stem>down</stem>
  1143. <notations>
  1144. <slur type="stop" number="1"/>
  1145. </notations>
  1146. <lyric number="1" default-x="6.58" default-y="-80.00">
  1147. <syllabic>single</syllabic>
  1148. <text>MultipleGraceNotes</text>
  1149. </lyric>
  1150. </note>
  1151. <note default-x="186.60" default-y="-20.00">
  1152. <pitch>
  1153. <step>B</step>
  1154. <octave>4</octave>
  1155. </pitch>
  1156. <duration>8</duration>
  1157. <voice>1</voice>
  1158. <type>half</type>
  1159. <stem>down</stem>
  1160. </note>
  1161. <note default-x="205.81" default-y="-15.00">
  1162. <grace/>
  1163. <pitch>
  1164. <step>C</step>
  1165. <octave>5</octave>
  1166. </pitch>
  1167. <voice>1</voice>
  1168. <type>16th</type>
  1169. <stem>up</stem>
  1170. <beam number="1">begin</beam>
  1171. <beam number="2">begin</beam>
  1172. </note>
  1173. <note default-x="216.78" default-y="-20.00">
  1174. <grace/>
  1175. <pitch>
  1176. <step>B</step>
  1177. <octave>4</octave>
  1178. </pitch>
  1179. <voice>1</voice>
  1180. <type>16th</type>
  1181. <stem>up</stem>
  1182. <beam number="1">continue</beam>
  1183. <beam number="2">continue</beam>
  1184. </note>
  1185. <note default-x="227.74" default-y="-25.00">
  1186. <grace/>
  1187. <pitch>
  1188. <step>A</step>
  1189. <octave>4</octave>
  1190. </pitch>
  1191. <voice>1</voice>
  1192. <type>16th</type>
  1193. <stem>up</stem>
  1194. <beam number="1">continue</beam>
  1195. <beam number="2">continue</beam>
  1196. </note>
  1197. <note default-x="250.16" default-y="-15.00">
  1198. <grace/>
  1199. <pitch>
  1200. <step>C</step>
  1201. <alter>1</alter>
  1202. <octave>5</octave>
  1203. </pitch>
  1204. <voice>1</voice>
  1205. <type>16th</type>
  1206. <accidental>sharp</accidental>
  1207. <stem>up</stem>
  1208. <beam number="1">continue</beam>
  1209. <beam number="2">continue</beam>
  1210. </note>
  1211. <note default-x="261.13" default-y="-10.00">
  1212. <grace/>
  1213. <pitch>
  1214. <step>D</step>
  1215. <octave>5</octave>
  1216. </pitch>
  1217. <voice>1</voice>
  1218. <type>16th</type>
  1219. <stem>up</stem>
  1220. <beam number="1">continue</beam>
  1221. <beam number="2">continue</beam>
  1222. </note>
  1223. <note default-x="283.54" default-y="-25.00">
  1224. <grace/>
  1225. <pitch>
  1226. <step>A</step>
  1227. <alter>1</alter>
  1228. <octave>4</octave>
  1229. </pitch>
  1230. <voice>1</voice>
  1231. <type>16th</type>
  1232. <accidental>sharp</accidental>
  1233. <stem>up</stem>
  1234. <beam number="1">continue</beam>
  1235. <beam number="2">continue</beam>
  1236. </note>
  1237. <note default-x="294.51" default-y="-20.00">
  1238. <grace/>
  1239. <pitch>
  1240. <step>B</step>
  1241. <octave>4</octave>
  1242. </pitch>
  1243. <voice>1</voice>
  1244. <type>16th</type>
  1245. <stem>up</stem>
  1246. <beam number="1">end</beam>
  1247. <beam number="2">end</beam>
  1248. </note>
  1249. <note default-x="306.22" default-y="-35.00">
  1250. <pitch>
  1251. <step>F</step>
  1252. <octave>4</octave>
  1253. </pitch>
  1254. <duration>4</duration>
  1255. <voice>1</voice>
  1256. <type>quarter</type>
  1257. <stem>up</stem>
  1258. </note>
  1259. </measure>
  1260. <measure number="20" width="1077.49">
  1261. <print new-system="yes">
  1262. <system-layout>
  1263. <system-margins>
  1264. <left-margin>0.00</left-margin>
  1265. <right-margin>0.00</right-margin>
  1266. </system-margins>
  1267. <system-distance>94.25</system-distance>
  1268. </system-layout>
  1269. </print>
  1270. <note default-x="50.83" default-y="-15.00">
  1271. <grace/>
  1272. <pitch>
  1273. <step>C</step>
  1274. <octave>5</octave>
  1275. </pitch>
  1276. <voice>1</voice>
  1277. <type>16th</type>
  1278. <stem>up</stem>
  1279. <beam number="1">begin</beam>
  1280. <beam number="2">begin</beam>
  1281. </note>
  1282. <note default-x="61.79" default-y="-20.00">
  1283. <grace/>
  1284. <pitch>
  1285. <step>B</step>
  1286. <octave>4</octave>
  1287. </pitch>
  1288. <voice>1</voice>
  1289. <type>16th</type>
  1290. <stem>up</stem>
  1291. <beam number="1">continue</beam>
  1292. <beam number="2">continue</beam>
  1293. </note>
  1294. <note default-x="72.76" default-y="-25.00">
  1295. <grace/>
  1296. <pitch>
  1297. <step>A</step>
  1298. <octave>4</octave>
  1299. </pitch>
  1300. <voice>1</voice>
  1301. <type>16th</type>
  1302. <stem>up</stem>
  1303. <beam number="1">continue</beam>
  1304. <beam number="2">continue</beam>
  1305. </note>
  1306. <note default-x="95.17" default-y="-15.00">
  1307. <grace/>
  1308. <pitch>
  1309. <step>C</step>
  1310. <alter>1</alter>
  1311. <octave>5</octave>
  1312. </pitch>
  1313. <voice>1</voice>
  1314. <type>16th</type>
  1315. <accidental>sharp</accidental>
  1316. <stem>up</stem>
  1317. <beam number="1">continue</beam>
  1318. <beam number="2">continue</beam>
  1319. </note>
  1320. <note default-x="106.14" default-y="-10.00">
  1321. <grace/>
  1322. <pitch>
  1323. <step>D</step>
  1324. <octave>5</octave>
  1325. </pitch>
  1326. <voice>1</voice>
  1327. <type>16th</type>
  1328. <stem>up</stem>
  1329. <beam number="1">continue</beam>
  1330. <beam number="2">continue</beam>
  1331. </note>
  1332. <note default-x="128.56" default-y="-25.00">
  1333. <grace/>
  1334. <pitch>
  1335. <step>A</step>
  1336. <alter>1</alter>
  1337. <octave>4</octave>
  1338. </pitch>
  1339. <voice>1</voice>
  1340. <type>16th</type>
  1341. <accidental>sharp</accidental>
  1342. <stem>up</stem>
  1343. <beam number="1">continue</beam>
  1344. <beam number="2">continue</beam>
  1345. </note>
  1346. <note default-x="139.52" default-y="-20.00">
  1347. <grace/>
  1348. <pitch>
  1349. <step>B</step>
  1350. <octave>4</octave>
  1351. </pitch>
  1352. <voice>1</voice>
  1353. <type>16th</type>
  1354. <stem>up</stem>
  1355. <beam number="1">end</beam>
  1356. <beam number="2">end</beam>
  1357. </note>
  1358. <note default-x="151.24" default-y="-35.00">
  1359. <pitch>
  1360. <step>F</step>
  1361. <octave>4</octave>
  1362. </pitch>
  1363. <duration>4</duration>
  1364. <voice>1</voice>
  1365. <type>quarter</type>
  1366. <stem>up</stem>
  1367. </note>
  1368. <note default-x="382.40" default-y="-20.00">
  1369. <pitch>
  1370. <step>B</step>
  1371. <octave>4</octave>
  1372. </pitch>
  1373. <duration>4</duration>
  1374. <voice>1</voice>
  1375. <type>quarter</type>
  1376. <stem>down</stem>
  1377. </note>
  1378. <note>
  1379. <rest/>
  1380. <duration>4</duration>
  1381. <voice>1</voice>
  1382. <type>quarter</type>
  1383. </note>
  1384. <note default-x="826.29" default-y="-35.00">
  1385. <grace/>
  1386. <pitch>
  1387. <step>F</step>
  1388. <alter>1</alter>
  1389. <octave>4</octave>
  1390. </pitch>
  1391. <voice>1</voice>
  1392. <type>eighth</type>
  1393. <accidental>sharp</accidental>
  1394. <stem>up</stem>
  1395. <notations>
  1396. <slur type="start" number="1"/>
  1397. </notations>
  1398. </note>
  1399. <note default-x="844.73" default-y="-30.00">
  1400. <pitch>
  1401. <step>G</step>
  1402. <octave>4</octave>
  1403. </pitch>
  1404. <duration>4</duration>
  1405. <voice>1</voice>
  1406. <type>quarter</type>
  1407. <stem>up</stem>
  1408. <notations>
  1409. <slur type="stop" number="1"/>
  1410. </notations>
  1411. </note>
  1412. </measure>
  1413. <measure number="21" width="1077.49">
  1414. <print new-system="yes">
  1415. <system-layout>
  1416. <system-margins>
  1417. <left-margin>0.00</left-margin>
  1418. <right-margin>0.00</right-margin>
  1419. </system-margins>
  1420. <system-distance>94.25</system-distance>
  1421. </system-layout>
  1422. </print>
  1423. <note default-x="110.62" default-y="-40.00">
  1424. <pitch>
  1425. <step>E</step>
  1426. <octave>4</octave>
  1427. </pitch>
  1428. <duration>4</duration>
  1429. <voice>1</voice>
  1430. <type>quarter</type>
  1431. <stem>up</stem>
  1432. <lyric number="1" default-x="6.58" default-y="-80.00" relative-x="1.53" relative-y="4.59">
  1433. <syllabic>single</syllabic>
  1434. <text>InMeasureClefs</text>
  1435. </lyric>
  1436. </note>
  1437. <attributes>
  1438. <clef>
  1439. <sign>F</sign>
  1440. <line>4</line>
  1441. </clef>
  1442. </attributes>
  1443. <note default-x="351.94" default-y="5.00">
  1444. <pitch>
  1445. <step>B</step>
  1446. <octave>3</octave>
  1447. </pitch>
  1448. <duration>4</duration>
  1449. <voice>1</voice>
  1450. <type>quarter</type>
  1451. <stem>down</stem>
  1452. </note>
  1453. <attributes>
  1454. <clef>
  1455. <sign>G</sign>
  1456. <line>2</line>
  1457. </clef>
  1458. </attributes>
  1459. <note default-x="593.26" default-y="-30.00">
  1460. <pitch>
  1461. <step>G</step>
  1462. <octave>4</octave>
  1463. </pitch>
  1464. <duration>4</duration>
  1465. <voice>1</voice>
  1466. <type>quarter</type>
  1467. <stem>up</stem>
  1468. </note>
  1469. <attributes>
  1470. <clef>
  1471. <sign>F</sign>
  1472. <line>4</line>
  1473. </clef>
  1474. </attributes>
  1475. <note default-x="834.58" default-y="10.00">
  1476. <pitch>
  1477. <step>C</step>
  1478. <octave>4</octave>
  1479. </pitch>
  1480. <duration>4</duration>
  1481. <voice>1</voice>
  1482. <type>quarter</type>
  1483. <stem>down</stem>
  1484. </note>
  1485. </measure>
  1486. <measure number="22" width="197.87">
  1487. <print new-system="yes">
  1488. <system-layout>
  1489. <system-margins>
  1490. <left-margin>0.00</left-margin>
  1491. <right-margin>-0.00</right-margin>
  1492. </system-margins>
  1493. <system-distance>94.25</system-distance>
  1494. </system-layout>
  1495. </print>
  1496. <attributes>
  1497. <clef>
  1498. <sign>G</sign>
  1499. <line>2</line>
  1500. </clef>
  1501. </attributes>
  1502. <note>
  1503. <rest/>
  1504. <duration>16</duration>
  1505. <voice>1</voice>
  1506. </note>
  1507. </measure>
  1508. <measure number="23" width="236.55">
  1509. <direction placement="above">
  1510. <direction-type>
  1511. <words default-y="40.00" relative-x="-36.99" relative-y="15.04" font-weight="bold" font-size="12">Slurs</words>
  1512. </direction-type>
  1513. </direction>
  1514. <note default-x="27.30" default-y="-40.00">
  1515. <pitch>
  1516. <step>E</step>
  1517. <octave>4</octave>
  1518. </pitch>
  1519. <duration>4</duration>
  1520. <voice>1</voice>
  1521. <type>quarter</type>
  1522. <stem>up</stem>
  1523. <notations>
  1524. <slur type="start" number="1"/>
  1525. </notations>
  1526. <lyric number="1" default-x="6.58" default-y="-80.00">
  1527. <syllabic>single</syllabic>
  1528. <text>Slurs</text>
  1529. </lyric>
  1530. </note>
  1531. <note default-x="79.21" default-y="-25.00">
  1532. <pitch>
  1533. <step>A</step>
  1534. <octave>4</octave>
  1535. </pitch>
  1536. <duration>4</duration>
  1537. <voice>1</voice>
  1538. <type>quarter</type>
  1539. <stem>up</stem>
  1540. </note>
  1541. <note default-x="131.12" default-y="-30.00">
  1542. <pitch>
  1543. <step>G</step>
  1544. <octave>4</octave>
  1545. </pitch>
  1546. <duration>4</duration>
  1547. <voice>1</voice>
  1548. <type>quarter</type>
  1549. <stem>up</stem>
  1550. <notations>
  1551. <slur type="start" number="2"/>
  1552. </notations>
  1553. </note>
  1554. <note default-x="183.04" default-y="-10.00">
  1555. <pitch>
  1556. <step>D</step>
  1557. <octave>5</octave>
  1558. </pitch>
  1559. <duration>4</duration>
  1560. <voice>1</voice>
  1561. <type>quarter</type>
  1562. <stem>down</stem>
  1563. </note>
  1564. </measure>
  1565. <measure number="24" width="214.36">
  1566. <note default-x="12.00" default-y="-15.00">
  1567. <pitch>
  1568. <step>C</step>
  1569. <octave>5</octave>
  1570. </pitch>
  1571. <duration>4</duration>
  1572. <voice>1</voice>
  1573. <type>quarter</type>
  1574. <stem>down</stem>
  1575. </note>
  1576. <note default-x="62.19" default-y="-25.00">
  1577. <pitch>
  1578. <step>A</step>
  1579. <octave>4</octave>
  1580. </pitch>
  1581. <duration>4</duration>
  1582. <voice>1</voice>
  1583. <type>quarter</type>
  1584. <stem>up</stem>
  1585. </note>
  1586. <note default-x="112.38" default-y="-35.00">
  1587. <pitch>
  1588. <step>F</step>
  1589. <octave>4</octave>
  1590. </pitch>
  1591. <duration>4</duration>
  1592. <voice>1</voice>
  1593. <type>quarter</type>
  1594. <stem>up</stem>
  1595. </note>
  1596. <note default-x="162.57" default-y="-55.00">
  1597. <pitch>
  1598. <step>B</step>
  1599. <octave>3</octave>
  1600. </pitch>
  1601. <duration>4</duration>
  1602. <voice>1</voice>
  1603. <type>quarter</type>
  1604. <stem>up</stem>
  1605. <notations>
  1606. <slur type="stop" number="2"/>
  1607. </notations>
  1608. </note>
  1609. </measure>
  1610. <measure number="25" width="214.36">
  1611. <note default-x="12.00" default-y="-30.00">
  1612. <pitch>
  1613. <step>G</step>
  1614. <octave>4</octave>
  1615. </pitch>
  1616. <duration>4</duration>
  1617. <voice>1</voice>
  1618. <type>quarter</type>
  1619. <stem>up</stem>
  1620. </note>
  1621. <note default-x="62.19" default-y="-10.00">
  1622. <pitch>
  1623. <step>D</step>
  1624. <octave>5</octave>
  1625. </pitch>
  1626. <duration>4</duration>
  1627. <voice>1</voice>
  1628. <type>quarter</type>
  1629. <stem>down</stem>
  1630. <notations>
  1631. <slur type="start" number="2"/>
  1632. </notations>
  1633. </note>
  1634. <note default-x="112.38" default-y="-20.00">
  1635. <pitch>
  1636. <step>B</step>
  1637. <octave>4</octave>
  1638. </pitch>
  1639. <duration>4</duration>
  1640. <voice>1</voice>
  1641. <type>quarter</type>
  1642. <stem>down</stem>
  1643. <notations>
  1644. <slur type="stop" number="2"/>
  1645. </notations>
  1646. </note>
  1647. <note default-x="162.57" default-y="-35.00">
  1648. <pitch>
  1649. <step>F</step>
  1650. <octave>4</octave>
  1651. </pitch>
  1652. <duration>4</duration>
  1653. <voice>1</voice>
  1654. <type>quarter</type>
  1655. <stem>up</stem>
  1656. </note>
  1657. </measure>
  1658. <measure number="26" width="214.36">
  1659. <note default-x="12.00" default-y="-30.00">
  1660. <pitch>
  1661. <step>G</step>
  1662. <octave>4</octave>
  1663. </pitch>
  1664. <duration>4</duration>
  1665. <voice>1</voice>
  1666. <type>quarter</type>
  1667. <stem>up</stem>
  1668. </note>
  1669. <note default-x="62.19" default-y="-15.00">
  1670. <pitch>
  1671. <step>C</step>
  1672. <octave>5</octave>
  1673. </pitch>
  1674. <duration>4</duration>
  1675. <voice>1</voice>
  1676. <type>quarter</type>
  1677. <stem>down</stem>
  1678. </note>
  1679. <note default-x="112.38" default-y="-35.00">
  1680. <pitch>
  1681. <step>F</step>
  1682. <octave>4</octave>
  1683. </pitch>
  1684. <duration>4</duration>
  1685. <voice>1</voice>
  1686. <type>quarter</type>
  1687. <stem>up</stem>
  1688. <notations>
  1689. <slur type="stop" number="1"/>
  1690. </notations>
  1691. </note>
  1692. <note default-x="162.57" default-y="-15.00">
  1693. <pitch>
  1694. <step>C</step>
  1695. <octave>5</octave>
  1696. </pitch>
  1697. <duration>4</duration>
  1698. <voice>1</voice>
  1699. <type>quarter</type>
  1700. <stem>down</stem>
  1701. </note>
  1702. </measure>
  1703. <measure number="27" width="296.88">
  1704. <print new-system="yes">
  1705. <system-layout>
  1706. <system-margins>
  1707. <left-margin>0.00</left-margin>
  1708. <right-margin>0.00</right-margin>
  1709. </system-margins>
  1710. <system-distance>94.25</system-distance>
  1711. </system-layout>
  1712. </print>
  1713. <note default-x="49.07" default-y="-50.00">
  1714. <pitch>
  1715. <step>C</step>
  1716. <octave>4</octave>
  1717. </pitch>
  1718. <duration>4</duration>
  1719. <voice>1</voice>
  1720. <type>quarter</type>
  1721. <stem>up</stem>
  1722. </note>
  1723. <note default-x="110.63" default-y="-30.00">
  1724. <pitch>
  1725. <step>G</step>
  1726. <octave>4</octave>
  1727. </pitch>
  1728. <duration>4</duration>
  1729. <voice>1</voice>
  1730. <type>quarter</type>
  1731. <stem>up</stem>
  1732. </note>
  1733. <note default-x="172.18" default-y="-55.00">
  1734. <pitch>
  1735. <step>B</step>
  1736. <octave>3</octave>
  1737. </pitch>
  1738. <duration>4</duration>
  1739. <voice>1</voice>
  1740. <type>quarter</type>
  1741. <stem>up</stem>
  1742. </note>
  1743. <note default-x="172.18" default-y="-15.00">
  1744. <chord/>
  1745. <pitch>
  1746. <step>C</step>
  1747. <octave>5</octave>
  1748. </pitch>
  1749. <duration>4</duration>
  1750. <voice>1</voice>
  1751. <type>quarter</type>
  1752. <stem>up</stem>
  1753. </note>
  1754. <note default-x="233.73" default-y="-50.00">
  1755. <pitch>
  1756. <step>C</step>
  1757. <octave>4</octave>
  1758. </pitch>
  1759. <duration>4</duration>
  1760. <voice>1</voice>
  1761. <type>quarter</type>
  1762. <stem>up</stem>
  1763. <notations>
  1764. <slur type="start" number="1"/>
  1765. </notations>
  1766. </note>
  1767. <note default-x="233.73" default-y="-30.00">
  1768. <chord/>
  1769. <pitch>
  1770. <step>G</step>
  1771. <octave>4</octave>
  1772. </pitch>
  1773. <duration>4</duration>
  1774. <voice>1</voice>
  1775. <type>quarter</type>
  1776. <stem>up</stem>
  1777. </note>
  1778. </measure>
  1779. <measure number="28" width="260.20">
  1780. <note default-x="12.00" default-y="-25.00">
  1781. <pitch>
  1782. <step>A</step>
  1783. <octave>4</octave>
  1784. </pitch>
  1785. <duration>4</duration>
  1786. <voice>1</voice>
  1787. <type>quarter</type>
  1788. <stem>up</stem>
  1789. <notations>
  1790. <slur type="stop" number="1"/>
  1791. </notations>
  1792. </note>
  1793. <note default-x="73.65" default-y="-50.00">
  1794. <pitch>
  1795. <step>C</step>
  1796. <octave>4</octave>
  1797. </pitch>
  1798. <duration>4</duration>
  1799. <voice>1</voice>
  1800. <type>quarter</type>
  1801. <stem>up</stem>
  1802. </note>
  1803. <note default-x="73.65" default-y="-30.00">
  1804. <chord/>
  1805. <pitch>
  1806. <step>G</step>
  1807. <octave>4</octave>
  1808. </pitch>
  1809. <duration>4</duration>
  1810. <voice>1</voice>
  1811. <type>quarter</type>
  1812. <stem>up</stem>
  1813. </note>
  1814. <note default-x="135.30" default-y="-15.00">
  1815. <pitch>
  1816. <step>C</step>
  1817. <octave>5</octave>
  1818. </pitch>
  1819. <duration>4</duration>
  1820. <voice>1</voice>
  1821. <type>quarter</type>
  1822. <stem>down</stem>
  1823. </note>
  1824. <note default-x="196.95" default-y="-30.00">
  1825. <pitch>
  1826. <step>G</step>
  1827. <octave>4</octave>
  1828. </pitch>
  1829. <duration>4</duration>
  1830. <voice>1</voice>
  1831. <type>quarter</type>
  1832. <stem>up</stem>
  1833. </note>
  1834. </measure>
  1835. <measure number="29" width="260.20">
  1836. <note default-x="12.00" default-y="-15.00">
  1837. <pitch>
  1838. <step>C</step>
  1839. <octave>5</octave>
  1840. </pitch>
  1841. <duration>4</duration>
  1842. <voice>1</voice>
  1843. <type>quarter</type>
  1844. <stem>down</stem>
  1845. </note>
  1846. <note default-x="73.65" default-y="-35.00">
  1847. <pitch>
  1848. <step>F</step>
  1849. <octave>4</octave>
  1850. </pitch>
  1851. <duration>4</duration>
  1852. <voice>1</voice>
  1853. <type>quarter</type>
  1854. <stem>up</stem>
  1855. <notations>
  1856. <slur type="start" placement="above" number="1"/>
  1857. </notations>
  1858. </note>
  1859. <note default-x="135.30" default-y="-25.00">
  1860. <pitch>
  1861. <step>A</step>
  1862. <octave>4</octave>
  1863. </pitch>
  1864. <duration>4</duration>
  1865. <voice>1</voice>
  1866. <type>quarter</type>
  1867. <stem>up</stem>
  1868. </note>
  1869. <note default-x="196.95" default-y="-30.00">
  1870. <pitch>
  1871. <step>G</step>
  1872. <octave>4</octave>
  1873. </pitch>
  1874. <duration>4</duration>
  1875. <voice>1</voice>
  1876. <type>quarter</type>
  1877. <stem>up</stem>
  1878. </note>
  1879. </measure>
  1880. <measure number="30" width="260.20">
  1881. <note default-x="12.00" default-y="-20.00">
  1882. <pitch>
  1883. <step>B</step>
  1884. <octave>4</octave>
  1885. </pitch>
  1886. <duration>4</duration>
  1887. <voice>1</voice>
  1888. <type>quarter</type>
  1889. <stem>down</stem>
  1890. <notations>
  1891. <slur type="stop" number="1"/>
  1892. </notations>
  1893. </note>
  1894. <note default-x="73.65" default-y="-20.00">
  1895. <pitch>
  1896. <step>B</step>
  1897. <octave>4</octave>
  1898. </pitch>
  1899. <duration>4</duration>
  1900. <voice>1</voice>
  1901. <type>quarter</type>
  1902. <stem>down</stem>
  1903. </note>
  1904. <note default-x="135.30" default-y="-25.00">
  1905. <pitch>
  1906. <step>A</step>
  1907. <octave>4</octave>
  1908. </pitch>
  1909. <duration>4</duration>
  1910. <voice>1</voice>
  1911. <type>quarter</type>
  1912. <stem>up</stem>
  1913. <notations>
  1914. <slur type="start" number="1"/>
  1915. </notations>
  1916. </note>
  1917. <note default-x="196.95" default-y="-25.00">
  1918. <pitch>
  1919. <step>A</step>
  1920. <octave>4</octave>
  1921. </pitch>
  1922. <duration>4</duration>
  1923. <voice>1</voice>
  1924. <type>quarter</type>
  1925. <stem>up</stem>
  1926. </note>
  1927. </measure>
  1928. <measure number="31" width="290.88">
  1929. <print new-system="yes">
  1930. <system-layout>
  1931. <system-margins>
  1932. <left-margin>0.00</left-margin>
  1933. <right-margin>0.00</right-margin>
  1934. </system-margins>
  1935. <system-distance>94.25</system-distance>
  1936. </system-layout>
  1937. </print>
  1938. <note default-x="49.07" default-y="-20.00">
  1939. <pitch>
  1940. <step>B</step>
  1941. <octave>4</octave>
  1942. </pitch>
  1943. <duration>4</duration>
  1944. <voice>1</voice>
  1945. <type>quarter</type>
  1946. <stem>down</stem>
  1947. </note>
  1948. <note default-x="109.13" default-y="-40.00">
  1949. <pitch>
  1950. <step>E</step>
  1951. <octave>4</octave>
  1952. </pitch>
  1953. <duration>4</duration>
  1954. <voice>1</voice>
  1955. <type>quarter</type>
  1956. <stem>down</stem>
  1957. <notations>
  1958. <slur type="start" number="2"/>
  1959. <slur type="start" number="3"/>
  1960. </notations>
  1961. </note>
  1962. <note default-x="109.13" default-y="-20.00">
  1963. <chord/>
  1964. <pitch>
  1965. <step>B</step>
  1966. <octave>4</octave>
  1967. </pitch>
  1968. <duration>4</duration>
  1969. <voice>1</voice>
  1970. <type>quarter</type>
  1971. <stem>down</stem>
  1972. </note>
  1973. <note default-x="109.13" default-y="0.00">
  1974. <chord/>
  1975. <pitch>
  1976. <step>F</step>
  1977. <octave>5</octave>
  1978. </pitch>
  1979. <duration>4</duration>
  1980. <voice>1</voice>
  1981. <type>quarter</type>
  1982. <stem>down</stem>
  1983. </note>
  1984. <note default-x="169.18" default-y="-50.00">
  1985. <pitch>
  1986. <step>C</step>
  1987. <octave>4</octave>
  1988. </pitch>
  1989. <duration>4</duration>
  1990. <voice>1</voice>
  1991. <type>quarter</type>
  1992. <stem>up</stem>
  1993. <notations>
  1994. <slur type="stop" number="2"/>
  1995. </notations>
  1996. </note>
  1997. <note default-x="169.18" default-y="-35.00">
  1998. <chord/>
  1999. <pitch>
  2000. <step>F</step>
  2001. <octave>4</octave>
  2002. </pitch>
  2003. <duration>4</duration>
  2004. <voice>1</voice>
  2005. <type>quarter</type>
  2006. <stem>up</stem>
  2007. </note>
  2008. <note default-x="169.18" default-y="-25.00">
  2009. <chord/>
  2010. <pitch>
  2011. <step>A</step>
  2012. <octave>4</octave>
  2013. </pitch>
  2014. <duration>4</duration>
  2015. <voice>1</voice>
  2016. <type>quarter</type>
  2017. <stem>up</stem>
  2018. </note>
  2019. <note default-x="169.18" default-y="-10.00">
  2020. <chord/>
  2021. <pitch>
  2022. <step>D</step>
  2023. <octave>5</octave>
  2024. </pitch>
  2025. <duration>4</duration>
  2026. <voice>1</voice>
  2027. <type>quarter</type>
  2028. <stem>up</stem>
  2029. </note>
  2030. <note default-x="229.23" default-y="-30.00">
  2031. <pitch>
  2032. <step>G</step>
  2033. <octave>4</octave>
  2034. </pitch>
  2035. <duration>4</duration>
  2036. <voice>1</voice>
  2037. <type>quarter</type>
  2038. <stem>up</stem>
  2039. </note>
  2040. </measure>
  2041. <measure number="32" width="262.20">
  2042. <note default-x="12.00" default-y="-25.00">
  2043. <pitch>
  2044. <step>A</step>
  2045. <octave>4</octave>
  2046. </pitch>
  2047. <duration>4</duration>
  2048. <voice>1</voice>
  2049. <type>quarter</type>
  2050. <stem>up</stem>
  2051. <notations>
  2052. <slur type="stop" number="1"/>
  2053. <slur type="stop" number="3"/>
  2054. </notations>
  2055. </note>
  2056. <note default-x="74.15" default-y="-30.00">
  2057. <pitch>
  2058. <step>G</step>
  2059. <octave>4</octave>
  2060. </pitch>
  2061. <duration>4</duration>
  2062. <voice>1</voice>
  2063. <type>quarter</type>
  2064. <stem>down</stem>
  2065. <notations>
  2066. <slur type="start" number="1"/>
  2067. <slur type="start" number="2"/>
  2068. </notations>
  2069. </note>
  2070. <note default-x="74.15" default-y="-15.00">
  2071. <chord/>
  2072. <pitch>
  2073. <step>C</step>
  2074. <octave>5</octave>
  2075. </pitch>
  2076. <duration>4</duration>
  2077. <voice>1</voice>
  2078. <type>quarter</type>
  2079. <stem>down</stem>
  2080. </note>
  2081. <note default-x="74.15" default-y="0.00">
  2082. <chord/>
  2083. <pitch>
  2084. <step>F</step>
  2085. <octave>5</octave>
  2086. </pitch>
  2087. <duration>4</duration>
  2088. <voice>1</voice>
  2089. <type>quarter</type>
  2090. <stem>down</stem>
  2091. </note>
  2092. <note default-x="136.30" default-y="-15.00">
  2093. <pitch>
  2094. <step>C</step>
  2095. <octave>5</octave>
  2096. </pitch>
  2097. <duration>4</duration>
  2098. <voice>1</voice>
  2099. <type>quarter</type>
  2100. <stem>down</stem>
  2101. <notations>
  2102. <slur type="stop" number="1"/>
  2103. </notations>
  2104. </note>
  2105. <note default-x="136.30" default-y="-5.00">
  2106. <chord/>
  2107. <pitch>
  2108. <step>E</step>
  2109. <octave>5</octave>
  2110. </pitch>
  2111. <duration>4</duration>
  2112. <voice>1</voice>
  2113. <type>quarter</type>
  2114. <stem>down</stem>
  2115. </note>
  2116. <note default-x="136.30" default-y="10.00">
  2117. <chord/>
  2118. <pitch>
  2119. <step>A</step>
  2120. <octave>5</octave>
  2121. </pitch>
  2122. <duration>4</duration>
  2123. <voice>1</voice>
  2124. <type>quarter</type>
  2125. <stem>down</stem>
  2126. </note>
  2127. <note default-x="198.45" default-y="-25.00">
  2128. <pitch>
  2129. <step>A</step>
  2130. <octave>4</octave>
  2131. </pitch>
  2132. <duration>4</duration>
  2133. <voice>1</voice>
  2134. <type>quarter</type>
  2135. <stem>down</stem>
  2136. <notations>
  2137. <slur type="stop" number="2"/>
  2138. <slur type="start" number="1"/>
  2139. </notations>
  2140. </note>
  2141. <note default-x="198.45" default-y="-10.00">
  2142. <chord/>
  2143. <pitch>
  2144. <step>D</step>
  2145. <octave>5</octave>
  2146. </pitch>
  2147. <duration>4</duration>
  2148. <voice>1</voice>
  2149. <type>quarter</type>
  2150. <stem>down</stem>
  2151. </note>
  2152. </measure>
  2153. <measure number="33" width="262.20">
  2154. <note default-x="12.00" default-y="-40.00">
  2155. <pitch>
  2156. <step>E</step>
  2157. <octave>4</octave>
  2158. </pitch>
  2159. <duration>4</duration>
  2160. <voice>1</voice>
  2161. <type>quarter</type>
  2162. <stem>up</stem>
  2163. </note>
  2164. <note default-x="74.15" default-y="-25.00">
  2165. <pitch>
  2166. <step>A</step>
  2167. <octave>4</octave>
  2168. </pitch>
  2169. <duration>4</duration>
  2170. <voice>1</voice>
  2171. <type>quarter</type>
  2172. <stem>up</stem>
  2173. <notations>
  2174. <slur type="stop" number="1"/>
  2175. </notations>
  2176. </note>
  2177. <note default-x="136.30" default-y="-25.00">
  2178. <pitch>
  2179. <step>A</step>
  2180. <octave>4</octave>
  2181. </pitch>
  2182. <duration>4</duration>
  2183. <voice>1</voice>
  2184. <type>quarter</type>
  2185. <stem>up</stem>
  2186. </note>
  2187. <note default-x="198.45" default-y="-30.00">
  2188. <pitch>
  2189. <step>G</step>
  2190. <octave>4</octave>
  2191. </pitch>
  2192. <duration>4</duration>
  2193. <voice>1</voice>
  2194. <type>quarter</type>
  2195. <stem>down</stem>
  2196. </note>
  2197. <note default-x="198.45" default-y="-10.00">
  2198. <chord/>
  2199. <pitch>
  2200. <step>D</step>
  2201. <octave>5</octave>
  2202. </pitch>
  2203. <duration>4</duration>
  2204. <voice>1</voice>
  2205. <type>quarter</type>
  2206. <stem>down</stem>
  2207. </note>
  2208. </measure>
  2209. <measure number="34" width="262.20">
  2210. <note default-x="12.00" default-y="-20.00">
  2211. <pitch>
  2212. <step>B</step>
  2213. <octave>4</octave>
  2214. </pitch>
  2215. <duration>4</duration>
  2216. <voice>1</voice>
  2217. <type>quarter</type>
  2218. <stem>down</stem>
  2219. <notations>
  2220. <slur type="start" number="1"/>
  2221. </notations>
  2222. </note>
  2223. <note default-x="74.15" default-y="-30.00">
  2224. <pitch>
  2225. <step>G</step>
  2226. <octave>4</octave>
  2227. </pitch>
  2228. <duration>4</duration>
  2229. <voice>1</voice>
  2230. <type>quarter</type>
  2231. <stem>up</stem>
  2232. <notations>
  2233. <slur type="stop" number="1"/>
  2234. </notations>
  2235. </note>
  2236. <note default-x="136.30" default-y="-15.00">
  2237. <pitch>
  2238. <step>C</step>
  2239. <octave>5</octave>
  2240. </pitch>
  2241. <duration>4</duration>
  2242. <voice>1</voice>
  2243. <type>quarter</type>
  2244. <stem>down</stem>
  2245. </note>
  2246. <note default-x="198.45" default-y="-35.00">
  2247. <pitch>
  2248. <step>F</step>
  2249. <octave>4</octave>
  2250. </pitch>
  2251. <duration>4</duration>
  2252. <voice>1</voice>
  2253. <type>quarter</type>
  2254. <stem>up</stem>
  2255. </note>
  2256. </measure>
  2257. <measure number="35" width="132.09">
  2258. <print new-page="yes">
  2259. <system-layout>
  2260. <system-margins>
  2261. <left-margin>0.00</left-margin>
  2262. <right-margin>626.14</right-margin>
  2263. </system-margins>
  2264. <top-system-distance>70.00</top-system-distance>
  2265. </system-layout>
  2266. </print>
  2267. <note>
  2268. <rest/>
  2269. <duration>16</duration>
  2270. <voice>1</voice>
  2271. </note>
  2272. </measure>
  2273. <measure number="36" width="103.42">
  2274. <note>
  2275. <rest/>
  2276. <duration>16</duration>
  2277. <voice>1</voice>
  2278. </note>
  2279. </measure>
  2280. <measure number="37" width="103.42">
  2281. <note>
  2282. <rest/>
  2283. <duration>16</duration>
  2284. <voice>1</voice>
  2285. </note>
  2286. </measure>
  2287. <measure number="38" width="112.42">
  2288. <note>
  2289. <rest/>
  2290. <duration>16</duration>
  2291. <voice>1</voice>
  2292. </note>
  2293. <barline location="right">
  2294. <bar-style>light-heavy</bar-style>
  2295. </barline>
  2296. </measure>
  2297. </part>
  2298. </score-partwise>