OSMD_function_test_all.xml 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411
  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.2</software>
  10. <encoding-date>2018-08-17</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="235.69">
  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>170.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="154.60">
  101. <direction placement="above">
  102. <direction-type>
  103. <words default-y="40.00" relative-x="-7.51" relative-y="19.52" font-weight="bold" font-size="12">Ornaments</words>
  104. </direction-type>
  105. </direction>
  106. <note default-x="24.26" default-y="-20.00">
  107. <pitch>
  108. <step>B</step>
  109. <octave>4</octave>
  110. </pitch>
  111. <duration>8</duration>
  112. <voice>1</voice>
  113. <type>half</type>
  114. <stem>down</stem>
  115. <notations>
  116. <ornaments>
  117. <trill-mark/>
  118. </ornaments>
  119. </notations>
  120. <lyric number="1" default-x="6.94" default-y="-80.00">
  121. <syllabic>single</syllabic>
  122. <text>Trill</text>
  123. </lyric>
  124. </note>
  125. <note default-x="88.45" default-y="-15.00">
  126. <pitch>
  127. <step>C</step>
  128. <octave>5</octave>
  129. </pitch>
  130. <duration>8</duration>
  131. <voice>1</voice>
  132. <type>half</type>
  133. <stem>down</stem>
  134. <notations>
  135. <ornaments>
  136. <turn/>
  137. </ornaments>
  138. </notations>
  139. <lyric number="1" default-x="6.94" default-y="-80.00">
  140. <syllabic>single</syllabic>
  141. <text>Turn</text>
  142. </lyric>
  143. </note>
  144. </measure>
  145. <measure number="3" width="94.64">
  146. <note>
  147. <rest/>
  148. <duration>16</duration>
  149. <voice>1</voice>
  150. </note>
  151. </measure>
  152. <measure number="4" width="203.76">
  153. <note default-x="62.57" default-y="-40.00">
  154. <pitch>
  155. <step>E</step>
  156. <octave>4</octave>
  157. </pitch>
  158. <duration>8</duration>
  159. <voice>1</voice>
  160. <type>half</type>
  161. <stem>up</stem>
  162. <notations>
  163. <ornaments>
  164. <inverted-turn/>
  165. </ornaments>
  166. </notations>
  167. <lyric number="1" default-x="6.22" default-y="-80.00">
  168. <syllabic>single</syllabic>
  169. <text>TurnInverted</text>
  170. </lyric>
  171. </note>
  172. <note>
  173. <rest/>
  174. <duration>8</duration>
  175. <voice>1</voice>
  176. <type>half</type>
  177. </note>
  178. </measure>
  179. <measure number="5" width="129.92">
  180. <note default-x="25.65" default-y="-5.00">
  181. <pitch>
  182. <step>E</step>
  183. <octave>5</octave>
  184. </pitch>
  185. <duration>8</duration>
  186. <voice>1</voice>
  187. <type>half</type>
  188. <stem>down</stem>
  189. <notations>
  190. <ornaments>
  191. <inverted-mordent/>
  192. </ornaments>
  193. </notations>
  194. <lyric number="1" default-x="6.94" default-y="-80.00">
  195. <syllabic>single</syllabic>
  196. <text>Prall</text>
  197. </lyric>
  198. </note>
  199. <note>
  200. <rest/>
  201. <duration>8</duration>
  202. <voice>1</voice>
  203. <type>half</type>
  204. </note>
  205. </measure>
  206. <measure number="6" width="164.24">
  207. <note default-x="42.81" default-y="-10.00">
  208. <pitch>
  209. <step>D</step>
  210. <octave>5</octave>
  211. </pitch>
  212. <duration>8</duration>
  213. <voice>1</voice>
  214. <type>half</type>
  215. <stem>down</stem>
  216. <notations>
  217. <ornaments>
  218. <mordent/>
  219. </ornaments>
  220. </notations>
  221. <lyric number="1" default-x="6.94" default-y="-80.00">
  222. <syllabic>single</syllabic>
  223. <text>Mordent</text>
  224. </lyric>
  225. </note>
  226. <note>
  227. <rest/>
  228. <duration>8</duration>
  229. <voice>1</voice>
  230. <type>half</type>
  231. </note>
  232. </measure>
  233. <measure number="7" width="94.64">
  234. <note>
  235. <rest/>
  236. <duration>16</duration>
  237. <voice>1</voice>
  238. </note>
  239. </measure>
  240. <measure number="8" width="1077.49">
  241. <print new-system="yes">
  242. <system-layout>
  243. <system-margins>
  244. <left-margin>-0.00</left-margin>
  245. <right-margin>0.00</right-margin>
  246. </system-margins>
  247. <system-distance>97.03</system-distance>
  248. </system-layout>
  249. </print>
  250. <note default-x="125.98" default-y="-20.00">
  251. <pitch>
  252. <step>B</step>
  253. <octave>4</octave>
  254. </pitch>
  255. <duration>8</duration>
  256. <voice>1</voice>
  257. <type>half</type>
  258. <stem>down</stem>
  259. <notations>
  260. <ornaments>
  261. <delayed-turn/>
  262. </ornaments>
  263. </notations>
  264. <lyric number="1" default-x="6.94" default-y="-80.00">
  265. <syllabic>single</syllabic>
  266. <text>DelayedOrnaments</text>
  267. </lyric>
  268. </note>
  269. <note default-x="600.76" default-y="-15.00">
  270. <pitch>
  271. <step>C</step>
  272. <octave>5</octave>
  273. </pitch>
  274. <duration>8</duration>
  275. <voice>1</voice>
  276. <type>half</type>
  277. <stem>down</stem>
  278. </note>
  279. </measure>
  280. <measure number="9" width="1077.49">
  281. <print new-system="yes">
  282. <system-layout>
  283. <system-margins>
  284. <left-margin>-0.00</left-margin>
  285. <right-margin>0.00</right-margin>
  286. </system-margins>
  287. <system-distance>97.03</system-distance>
  288. </system-layout>
  289. </print>
  290. <note default-x="49.08" default-y="-40.00">
  291. <pitch>
  292. <step>E</step>
  293. <octave>4</octave>
  294. </pitch>
  295. <duration>6</duration>
  296. <voice>1</voice>
  297. <type>quarter</type>
  298. <dot/>
  299. <stem>up</stem>
  300. <notations>
  301. <ornaments>
  302. <delayed-turn/>
  303. </ornaments>
  304. </notations>
  305. </note>
  306. <note default-x="341.71" default-y="-35.00">
  307. <pitch>
  308. <step>F</step>
  309. <octave>4</octave>
  310. </pitch>
  311. <duration>1</duration>
  312. <voice>1</voice>
  313. <type>16th</type>
  314. <stem>up</stem>
  315. <beam number="1">begin</beam>
  316. <beam number="2">begin</beam>
  317. </note>
  318. <note default-x="456.43" default-y="-30.00">
  319. <pitch>
  320. <step>G</step>
  321. <octave>4</octave>
  322. </pitch>
  323. <duration>1</duration>
  324. <voice>1</voice>
  325. <type>16th</type>
  326. <stem>up</stem>
  327. <beam number="1">end</beam>
  328. <beam number="2">end</beam>
  329. </note>
  330. <note default-x="571.14" default-y="-25.00">
  331. <pitch>
  332. <step>A</step>
  333. <octave>4</octave>
  334. </pitch>
  335. <duration>4</duration>
  336. <voice>1</voice>
  337. <type>quarter</type>
  338. <stem>up</stem>
  339. </note>
  340. <note>
  341. <rest/>
  342. <duration>4</duration>
  343. <voice>1</voice>
  344. <type>quarter</type>
  345. </note>
  346. </measure>
  347. <measure number="10" width="332.16">
  348. <print new-system="yes">
  349. <system-layout>
  350. <system-margins>
  351. <left-margin>-0.00</left-margin>
  352. <right-margin>0.00</right-margin>
  353. </system-margins>
  354. <system-distance>97.03</system-distance>
  355. </system-layout>
  356. </print>
  357. <note default-x="96.95" default-y="-15.00">
  358. <pitch>
  359. <step>C</step>
  360. <octave>5</octave>
  361. </pitch>
  362. <duration>16</duration>
  363. <voice>1</voice>
  364. <type>whole</type>
  365. <lyric number="1" default-x="11.65" default-y="-80.00">
  366. <syllabic>single</syllabic>
  367. <text>Articulations:</text>
  368. </lyric>
  369. </note>
  370. </measure>
  371. <measure number="11" width="313.05">
  372. <direction placement="above">
  373. <direction-type>
  374. <words default-y="40.00" relative-x="-10.51" relative-y="19.52" font-weight="bold" font-size="12">Articulations</words>
  375. </direction-type>
  376. </direction>
  377. <note default-x="37.27" default-y="-10.00">
  378. <pitch>
  379. <step>D</step>
  380. <octave>5</octave>
  381. </pitch>
  382. <duration>2</duration>
  383. <voice>1</voice>
  384. <type>eighth</type>
  385. <stem>down</stem>
  386. <beam number="1">begin</beam>
  387. <notations>
  388. <technical>
  389. <up-bow/>
  390. </technical>
  391. </notations>
  392. <lyric number="1" default-x="6.58" default-y="-80.00">
  393. <syllabic>single</syllabic>
  394. <text>Upbow</text>
  395. </lyric>
  396. </note>
  397. <note default-x="78.20" default-y="-5.00">
  398. <pitch>
  399. <step>E</step>
  400. <octave>5</octave>
  401. </pitch>
  402. <duration>2</duration>
  403. <voice>1</voice>
  404. <type>eighth</type>
  405. <stem>down</stem>
  406. <beam number="1">end</beam>
  407. <notations>
  408. <technical>
  409. <up-bow/>
  410. </technical>
  411. </notations>
  412. </note>
  413. <note>
  414. <rest/>
  415. <duration>4</duration>
  416. <voice>1</voice>
  417. <type>quarter</type>
  418. </note>
  419. <note default-x="176.02" default-y="0.00">
  420. <pitch>
  421. <step>F</step>
  422. <octave>5</octave>
  423. </pitch>
  424. <duration>2</duration>
  425. <voice>1</voice>
  426. <type>eighth</type>
  427. <stem>up</stem>
  428. <beam number="1">begin</beam>
  429. <notations>
  430. <technical>
  431. <down-bow/>
  432. </technical>
  433. </notations>
  434. <lyric number="1" default-x="6.58" default-y="-80.00">
  435. <syllabic>single</syllabic>
  436. <text>Downbow</text>
  437. </lyric>
  438. </note>
  439. <note default-x="213.64" default-y="-5.00">
  440. <pitch>
  441. <step>E</step>
  442. <octave>5</octave>
  443. </pitch>
  444. <duration>2</duration>
  445. <voice>1</voice>
  446. <type>eighth</type>
  447. <stem>up</stem>
  448. <beam number="1">end</beam>
  449. <notations>
  450. <technical>
  451. <down-bow/>
  452. </technical>
  453. </notations>
  454. </note>
  455. <note>
  456. <rest/>
  457. <duration>4</duration>
  458. <voice>1</voice>
  459. <type>quarter</type>
  460. </note>
  461. </measure>
  462. <measure number="12" width="432.28">
  463. <note default-x="45.24" default-y="-30.00">
  464. <pitch>
  465. <step>G</step>
  466. <octave>4</octave>
  467. </pitch>
  468. <duration>2</duration>
  469. <voice>1</voice>
  470. <type>eighth</type>
  471. <stem>up</stem>
  472. <beam number="1">begin</beam>
  473. <notations>
  474. <technical>
  475. <stopped/>
  476. </technical>
  477. </notations>
  478. <lyric number="1" default-x="6.58" default-y="-80.00">
  479. <syllabic>single</syllabic>
  480. <text>Pizzicato</text>
  481. </lyric>
  482. </note>
  483. <note default-x="94.14" default-y="-15.00">
  484. <pitch>
  485. <step>C</step>
  486. <octave>5</octave>
  487. </pitch>
  488. <duration>2</duration>
  489. <voice>1</voice>
  490. <type>eighth</type>
  491. <stem>up</stem>
  492. <beam number="1">continue</beam>
  493. <notations>
  494. <technical>
  495. <stopped/>
  496. </technical>
  497. </notations>
  498. </note>
  499. <note default-x="141.79" default-y="-25.00">
  500. <pitch>
  501. <step>A</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">continue</beam>
  509. </note>
  510. <note default-x="189.44" default-y="-45.00">
  511. <pitch>
  512. <step>D</step>
  513. <octave>4</octave>
  514. </pitch>
  515. <duration>2</duration>
  516. <voice>1</voice>
  517. <type>eighth</type>
  518. <stem>up</stem>
  519. <beam number="1">end</beam>
  520. </note>
  521. <note default-x="238.58" default-y="-5.00">
  522. <pitch>
  523. <step>E</step>
  524. <octave>5</octave>
  525. </pitch>
  526. <duration>2</duration>
  527. <voice>1</voice>
  528. <type>eighth</type>
  529. <stem>down</stem>
  530. <beam number="1">begin</beam>
  531. <notations>
  532. <technical>
  533. <snap-pizzicato/>
  534. </technical>
  535. </notations>
  536. <lyric number="1" default-x="6.58" default-y="-80.00" relative-y="-15.01">
  537. <syllabic>single</syllabic>
  538. <text>SnapPizz</text>
  539. </lyric>
  540. </note>
  541. <note default-x="287.73" default-y="-35.00">
  542. <pitch>
  543. <step>F</step>
  544. <octave>4</octave>
  545. </pitch>
  546. <duration>2</duration>
  547. <voice>1</voice>
  548. <type>eighth</type>
  549. <stem>down</stem>
  550. <beam number="1">continue</beam>
  551. <notations>
  552. <technical>
  553. <snap-pizzicato/>
  554. </technical>
  555. </notations>
  556. </note>
  557. <note default-x="335.38" default-y="-45.00">
  558. <pitch>
  559. <step>D</step>
  560. <octave>4</octave>
  561. </pitch>
  562. <duration>2</duration>
  563. <voice>1</voice>
  564. <type>eighth</type>
  565. <stem>down</stem>
  566. <beam number="1">continue</beam>
  567. </note>
  568. <note default-x="383.03" default-y="-15.00">
  569. <pitch>
  570. <step>C</step>
  571. <octave>5</octave>
  572. </pitch>
  573. <duration>2</duration>
  574. <voice>1</voice>
  575. <type>eighth</type>
  576. <stem>down</stem>
  577. <beam number="1">end</beam>
  578. </note>
  579. </measure>
  580. <measure number="13" width="466.57">
  581. <print new-system="yes">
  582. <system-layout>
  583. <system-margins>
  584. <left-margin>-0.00</left-margin>
  585. <right-margin>0.00</right-margin>
  586. </system-margins>
  587. <system-distance>97.03</system-distance>
  588. </system-layout>
  589. </print>
  590. <note default-x="102.03" default-y="-40.00">
  591. <pitch>
  592. <step>E</step>
  593. <octave>4</octave>
  594. </pitch>
  595. <duration>2</duration>
  596. <voice>1</voice>
  597. <type>eighth</type>
  598. <stem>up</stem>
  599. <beam number="1">begin</beam>
  600. <notations>
  601. <articulations>
  602. <staccatissimo/>
  603. </articulations>
  604. </notations>
  605. <lyric number="1" default-x="6.58" default-y="-80.00">
  606. <syllabic>single</syllabic>
  607. <text>Staccatissimo</text>
  608. </lyric>
  609. </note>
  610. <note default-x="170.65" default-y="-20.00">
  611. <pitch>
  612. <step>B</step>
  613. <octave>4</octave>
  614. </pitch>
  615. <duration>2</duration>
  616. <voice>1</voice>
  617. <type>eighth</type>
  618. <stem>up</stem>
  619. <beam number="1">continue</beam>
  620. <notations>
  621. <articulations>
  622. <staccatissimo/>
  623. </articulations>
  624. </notations>
  625. </note>
  626. <note default-x="211.18" default-y="-45.00">
  627. <pitch>
  628. <step>D</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">continue</beam>
  636. </note>
  637. <note default-x="251.70" default-y="-25.00">
  638. <pitch>
  639. <step>A</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">end</beam>
  647. </note>
  648. <note default-x="297.55" default-y="-50.00">
  649. <pitch>
  650. <step>C</step>
  651. <octave>4</octave>
  652. </pitch>
  653. <duration>2</duration>
  654. <voice>1</voice>
  655. <type>eighth</type>
  656. <stem>up</stem>
  657. <beam number="1">begin</beam>
  658. <notations>
  659. <articulations>
  660. <staccato/>
  661. </articulations>
  662. </notations>
  663. <lyric number="1" default-x="6.58" default-y="-80.00">
  664. <syllabic>single</syllabic>
  665. <text>Staccato</text>
  666. </lyric>
  667. </note>
  668. <note default-x="343.40" default-y="-30.00">
  669. <pitch>
  670. <step>G</step>
  671. <octave>4</octave>
  672. </pitch>
  673. <duration>2</duration>
  674. <voice>1</voice>
  675. <type>eighth</type>
  676. <stem>up</stem>
  677. <beam number="1">continue</beam>
  678. <notations>
  679. <articulations>
  680. <staccato/>
  681. </articulations>
  682. </notations>
  683. </note>
  684. <note default-x="383.93" default-y="-35.00">
  685. <pitch>
  686. <step>F</step>
  687. <octave>4</octave>
  688. </pitch>
  689. <duration>2</duration>
  690. <voice>1</voice>
  691. <type>eighth</type>
  692. <stem>up</stem>
  693. <beam number="1">continue</beam>
  694. </note>
  695. <note default-x="424.45" default-y="-55.00">
  696. <pitch>
  697. <step>B</step>
  698. <octave>3</octave>
  699. </pitch>
  700. <duration>2</duration>
  701. <voice>1</voice>
  702. <type>eighth</type>
  703. <stem>up</stem>
  704. <beam number="1">end</beam>
  705. </note>
  706. </measure>
  707. <measure number="14" width="292.45">
  708. <note default-x="36.26" default-y="-50.00">
  709. <pitch>
  710. <step>C</step>
  711. <octave>4</octave>
  712. </pitch>
  713. <duration>2</duration>
  714. <voice>1</voice>
  715. <type>eighth</type>
  716. <stem>up</stem>
  717. <beam number="1">begin</beam>
  718. <notations>
  719. <articulations>
  720. <tenuto/>
  721. </articulations>
  722. </notations>
  723. <lyric number="1" default-x="6.58" default-y="-80.00">
  724. <syllabic>single</syllabic>
  725. <text>Tenuto</text>
  726. </lyric>
  727. </note>
  728. <note default-x="92.20" default-y="-30.00">
  729. <pitch>
  730. <step>G</step>
  731. <octave>4</octave>
  732. </pitch>
  733. <duration>2</duration>
  734. <voice>1</voice>
  735. <type>eighth</type>
  736. <stem>up</stem>
  737. <beam number="1">end</beam>
  738. <notations>
  739. <articulations>
  740. <tenuto/>
  741. </articulations>
  742. </notations>
  743. </note>
  744. <note default-x="147.78" default-y="-30.00">
  745. <pitch>
  746. <step>G</step>
  747. <octave>4</octave>
  748. </pitch>
  749. <duration>12</duration>
  750. <voice>1</voice>
  751. <type>half</type>
  752. <dot/>
  753. <stem>up</stem>
  754. <notations>
  755. <fermata type="upright"/>
  756. </notations>
  757. <lyric number="1" default-x="6.22" default-y="-80.00">
  758. <syllabic>single</syllabic>
  759. <text>Fermata</text>
  760. </lyric>
  761. </note>
  762. </measure>
  763. <measure number="15" width="318.48">
  764. <note default-x="110.28" default-y="-30.00">
  765. <pitch>
  766. <step>G</step>
  767. <octave>4</octave>
  768. </pitch>
  769. <duration>8</duration>
  770. <voice>1</voice>
  771. <type>half</type>
  772. <stem>up</stem>
  773. <notations>
  774. <technical>
  775. <fingering>2</fingering>
  776. </technical>
  777. </notations>
  778. <lyric number="1" default-x="6.22" default-y="-80.00">
  779. <syllabic>single</syllabic>
  780. <text>Fingering</text>
  781. </lyric>
  782. </note>
  783. <note default-x="110.28" default-y="-20.00">
  784. <chord/>
  785. <pitch>
  786. <step>B</step>
  787. <octave>4</octave>
  788. </pitch>
  789. <duration>8</duration>
  790. <voice>1</voice>
  791. <type>half</type>
  792. <stem>up</stem>
  793. <notations>
  794. <technical>
  795. <fingering>3</fingering>
  796. </technical>
  797. </notations>
  798. </note>
  799. <note default-x="110.28" default-y="-10.00">
  800. <chord/>
  801. <pitch>
  802. <step>D</step>
  803. <octave>5</octave>
  804. </pitch>
  805. <duration>8</duration>
  806. <voice>1</voice>
  807. <type>half</type>
  808. <stem>up</stem>
  809. <notations>
  810. <technical>
  811. <fingering>5</fingering>
  812. </technical>
  813. </notations>
  814. </note>
  815. <note default-x="387.67" default-y="-35.00">
  816. <pitch>
  817. <step>F</step>
  818. <octave>4</octave>
  819. </pitch>
  820. <duration>2</duration>
  821. <voice>1</voice>
  822. <type>eighth</type>
  823. <stem>up</stem>
  824. <beam number="1">begin</beam>
  825. <notations>
  826. <technical>
  827. <fingering>1</fingering>
  828. </technical>
  829. </notations>
  830. </note>
  831. <note default-x="545.97" default-y="-40.00">
  832. <pitch>
  833. <step>E</step>
  834. <octave>4</octave>
  835. </pitch>
  836. <duration>2</duration>
  837. <voice>1</voice>
  838. <type>eighth</type>
  839. <stem>up</stem>
  840. <beam number="1">end</beam>
  841. <notations>
  842. <technical>
  843. <fingering>3</fingering>
  844. </technical>
  845. </notations>
  846. </note>
  847. <note default-x="704.26" default-y="-45.00">
  848. <pitch>
  849. <step>D</step>
  850. <alter>1</alter>
  851. <octave>4</octave>
  852. </pitch>
  853. <duration>1</duration>
  854. <voice>1</voice>
  855. <type>16th</type>
  856. <accidental>sharp</accidental>
  857. <stem>up</stem>
  858. <beam number="1">begin</beam>
  859. <beam number="2">begin</beam>
  860. <notations>
  861. <technical>
  862. <fingering>2</fingering>
  863. </technical>
  864. </notations>
  865. </note>
  866. <note default-x="803.20" default-y="-40.00">
  867. <pitch>
  868. <step>E</step>
  869. <octave>4</octave>
  870. </pitch>
  871. <duration>1</duration>
  872. <voice>1</voice>
  873. <type>16th</type>
  874. <stem>up</stem>
  875. <beam number="1">continue</beam>
  876. <beam number="2">continue</beam>
  877. <notations>
  878. <technical>
  879. <fingering>3</fingering>
  880. </technical>
  881. </notations>
  882. </note>
  883. <note default-x="902.14" default-y="-35.00">
  884. <pitch>
  885. <step>F</step>
  886. <octave>4</octave>
  887. </pitch>
  888. <duration>1</duration>
  889. <voice>1</voice>
  890. <type>16th</type>
  891. <stem>up</stem>
  892. <beam number="1">continue</beam>
  893. <beam number="2">continue</beam>
  894. <notations>
  895. <technical>
  896. <fingering>4</fingering>
  897. </technical>
  898. </notations>
  899. </note>
  900. <note default-x="1001.08" default-y="-45.00">
  901. <pitch>
  902. <step>D</step>
  903. <octave>4</octave>
  904. </pitch>
  905. <duration>1</duration>
  906. <voice>1</voice>
  907. <type>16th</type>
  908. <accidental>natural</accidental>
  909. <stem>up</stem>
  910. <beam number="1">end</beam>
  911. <beam number="2">end</beam>
  912. <notations>
  913. <technical>
  914. <fingering>0</fingering>
  915. </technical>
  916. </notations>
  917. </note>
  918. </measure>
  919. <measure number="16" width="126.44">
  920. <print new-system="yes">
  921. <system-layout>
  922. <system-margins>
  923. <left-margin>-0.00</left-margin>
  924. <right-margin>0.00</right-margin>
  925. </system-margins>
  926. <system-distance>97.03</system-distance>
  927. </system-layout>
  928. </print>
  929. <note>
  930. <rest/>
  931. <duration>16</duration>
  932. <voice>1</voice>
  933. </note>
  934. </measure>
  935. <measure number="17" width="295.87">
  936. <direction placement="above">
  937. <direction-type>
  938. <words default-y="40.00" font-weight="bold" font-size="12">Grace Notes</words>
  939. </direction-type>
  940. </direction>
  941. <note default-x="32.71" default-y="-35.00">
  942. <grace/>
  943. <pitch>
  944. <step>F</step>
  945. <octave>4</octave>
  946. </pitch>
  947. <voice>1</voice>
  948. <type>eighth</type>
  949. <stem>up</stem>
  950. </note>
  951. <note default-x="51.16" default-y="-30.00">
  952. <pitch>
  953. <step>G</step>
  954. <octave>4</octave>
  955. </pitch>
  956. <duration>4</duration>
  957. <voice>1</voice>
  958. <type>quarter</type>
  959. <stem>up</stem>
  960. <lyric number="1" default-x="6.58" default-y="-80.00">
  961. <syllabic>single</syllabic>
  962. <text>GraceNotes</text>
  963. </lyric>
  964. </note>
  965. <note default-x="113.73" default-y="-35.00">
  966. <grace/>
  967. <pitch>
  968. <step>F</step>
  969. <octave>4</octave>
  970. </pitch>
  971. <voice>1</voice>
  972. <type>eighth</type>
  973. <stem>up</stem>
  974. <notations>
  975. <slur type="start" number="1"/>
  976. </notations>
  977. </note>
  978. <note default-x="132.17" default-y="-30.00">
  979. <pitch>
  980. <step>G</step>
  981. <octave>4</octave>
  982. </pitch>
  983. <duration>4</duration>
  984. <voice>1</voice>
  985. <type>quarter</type>
  986. <stem>up</stem>
  987. <notations>
  988. <slur type="stop" number="1"/>
  989. </notations>
  990. </note>
  991. <note default-x="167.76" default-y="20.00">
  992. <grace/>
  993. <pitch>
  994. <step>C</step>
  995. <octave>6</octave>
  996. </pitch>
  997. <voice>1</voice>
  998. <type>eighth</type>
  999. <stem>up</stem>
  1000. <notations>
  1001. <slur type="start" number="1"/>
  1002. </notations>
  1003. </note>
  1004. <note default-x="186.21" default-y="-30.00">
  1005. <pitch>
  1006. <step>G</step>
  1007. <octave>4</octave>
  1008. </pitch>
  1009. <duration>4</duration>
  1010. <voice>1</voice>
  1011. <type>quarter</type>
  1012. <stem>up</stem>
  1013. <notations>
  1014. <slur type="stop" number="1"/>
  1015. </notations>
  1016. </note>
  1017. <note default-x="221.80" default-y="-30.00">
  1018. <grace/>
  1019. <pitch>
  1020. <step>G</step>
  1021. <alter>1</alter>
  1022. <octave>4</octave>
  1023. </pitch>
  1024. <voice>1</voice>
  1025. <type>eighth</type>
  1026. <accidental>sharp</accidental>
  1027. <stem>up</stem>
  1028. <notations>
  1029. <slur type="start" number="1"/>
  1030. </notations>
  1031. </note>
  1032. <note default-x="240.24" default-y="-25.00">
  1033. <pitch>
  1034. <step>A</step>
  1035. <octave>4</octave>
  1036. </pitch>
  1037. <duration>4</duration>
  1038. <voice>1</voice>
  1039. <type>quarter</type>
  1040. <stem>up</stem>
  1041. <notations>
  1042. <slur type="stop" number="1"/>
  1043. </notations>
  1044. </note>
  1045. </measure>
  1046. <measure number="18" width="274.50">
  1047. <note default-x="7.75" default-y="-20.00">
  1048. <grace/>
  1049. <pitch>
  1050. <step>B</step>
  1051. <octave>4</octave>
  1052. </pitch>
  1053. <voice>1</voice>
  1054. <type>eighth</type>
  1055. <stem>up</stem>
  1056. <notations>
  1057. <slur type="start" number="1"/>
  1058. </notations>
  1059. </note>
  1060. <note default-x="26.19" default-y="-25.00">
  1061. <pitch>
  1062. <step>A</step>
  1063. <octave>4</octave>
  1064. </pitch>
  1065. <duration>4</duration>
  1066. <voice>1</voice>
  1067. <type>quarter</type>
  1068. <stem>up</stem>
  1069. <notations>
  1070. <slur type="stop" number="1"/>
  1071. </notations>
  1072. </note>
  1073. <note default-x="62.64" default-y="-20.00">
  1074. <grace/>
  1075. <pitch>
  1076. <step>B</step>
  1077. <octave>4</octave>
  1078. </pitch>
  1079. <voice>1</voice>
  1080. <type>eighth</type>
  1081. <stem>up</stem>
  1082. </note>
  1083. <note default-x="81.09" default-y="-25.00">
  1084. <pitch>
  1085. <step>A</step>
  1086. <octave>4</octave>
  1087. </pitch>
  1088. <duration>4</duration>
  1089. <voice>1</voice>
  1090. <type>quarter</type>
  1091. <stem>up</stem>
  1092. </note>
  1093. <note default-x="121.01" default-y="-30.00">
  1094. <grace slash="yes"/>
  1095. <pitch>
  1096. <step>G</step>
  1097. <octave>4</octave>
  1098. </pitch>
  1099. <voice>1</voice>
  1100. <type>eighth</type>
  1101. <stem>up</stem>
  1102. <notations>
  1103. <slur type="start" number="1"/>
  1104. </notations>
  1105. </note>
  1106. <note default-x="139.45" default-y="-25.00">
  1107. <pitch>
  1108. <step>A</step>
  1109. <octave>4</octave>
  1110. </pitch>
  1111. <duration>4</duration>
  1112. <voice>1</voice>
  1113. <type>quarter</type>
  1114. <stem>up</stem>
  1115. <notations>
  1116. <slur type="stop" number="1"/>
  1117. </notations>
  1118. <lyric number="1" default-x="6.58" default-y="-80.00">
  1119. <syllabic>single</syllabic>
  1120. <text>GraceSlash</text>
  1121. </lyric>
  1122. </note>
  1123. <note default-x="199.56" default-y="-20.00">
  1124. <grace slash="yes"/>
  1125. <pitch>
  1126. <step>B</step>
  1127. <octave>4</octave>
  1128. </pitch>
  1129. <voice>1</voice>
  1130. <type>eighth</type>
  1131. <stem>up</stem>
  1132. <notations>
  1133. <slur type="start" number="1"/>
  1134. </notations>
  1135. </note>
  1136. <note default-x="218.01" default-y="-25.00">
  1137. <pitch>
  1138. <step>A</step>
  1139. <octave>4</octave>
  1140. </pitch>
  1141. <duration>4</duration>
  1142. <voice>1</voice>
  1143. <type>quarter</type>
  1144. <stem>up</stem>
  1145. <notations>
  1146. <slur type="stop" number="1"/>
  1147. </notations>
  1148. </note>
  1149. </measure>
  1150. <measure number="19" width="380.68">
  1151. <note default-x="65.79" default-y="-30.00">
  1152. <grace/>
  1153. <pitch>
  1154. <step>G</step>
  1155. <octave>4</octave>
  1156. </pitch>
  1157. <voice>1</voice>
  1158. <type>16th</type>
  1159. <stem>up</stem>
  1160. <beam number="1">begin</beam>
  1161. <beam number="2">begin</beam>
  1162. <notations>
  1163. <slur type="start" number="1"/>
  1164. </notations>
  1165. </note>
  1166. <note default-x="76.75" default-y="-25.00">
  1167. <grace/>
  1168. <pitch>
  1169. <step>A</step>
  1170. <octave>4</octave>
  1171. </pitch>
  1172. <voice>1</voice>
  1173. <type>16th</type>
  1174. <stem>up</stem>
  1175. <beam number="1">end</beam>
  1176. <beam number="2">end</beam>
  1177. </note>
  1178. <note default-x="88.47" default-y="-20.00">
  1179. <pitch>
  1180. <step>B</step>
  1181. <octave>4</octave>
  1182. </pitch>
  1183. <duration>4</duration>
  1184. <voice>1</voice>
  1185. <type>quarter</type>
  1186. <stem>down</stem>
  1187. <notations>
  1188. <slur type="stop" number="1"/>
  1189. </notations>
  1190. <lyric number="1" default-x="6.58" default-y="-80.00">
  1191. <syllabic>single</syllabic>
  1192. <text>MultipleGraceNotes</text>
  1193. </lyric>
  1194. </note>
  1195. <note default-x="186.60" default-y="-20.00">
  1196. <pitch>
  1197. <step>B</step>
  1198. <octave>4</octave>
  1199. </pitch>
  1200. <duration>8</duration>
  1201. <voice>1</voice>
  1202. <type>half</type>
  1203. <stem>down</stem>
  1204. </note>
  1205. <note default-x="204.78" default-y="-15.00">
  1206. <grace/>
  1207. <pitch>
  1208. <step>C</step>
  1209. <octave>5</octave>
  1210. </pitch>
  1211. <voice>1</voice>
  1212. <type>16th</type>
  1213. <stem>up</stem>
  1214. <beam number="1">begin</beam>
  1215. <beam number="2">begin</beam>
  1216. </note>
  1217. <note default-x="215.74" default-y="-20.00">
  1218. <grace/>
  1219. <pitch>
  1220. <step>B</step>
  1221. <octave>4</octave>
  1222. </pitch>
  1223. <voice>1</voice>
  1224. <type>16th</type>
  1225. <stem>up</stem>
  1226. <beam number="1">continue</beam>
  1227. <beam number="2">continue</beam>
  1228. </note>
  1229. <note default-x="226.71" default-y="-25.00">
  1230. <grace/>
  1231. <pitch>
  1232. <step>A</step>
  1233. <octave>4</octave>
  1234. </pitch>
  1235. <voice>1</voice>
  1236. <type>16th</type>
  1237. <stem>up</stem>
  1238. <beam number="1">continue</beam>
  1239. <beam number="2">continue</beam>
  1240. </note>
  1241. <note default-x="249.12" default-y="-15.00">
  1242. <grace/>
  1243. <pitch>
  1244. <step>C</step>
  1245. <alter>1</alter>
  1246. <octave>5</octave>
  1247. </pitch>
  1248. <voice>1</voice>
  1249. <type>16th</type>
  1250. <accidental>sharp</accidental>
  1251. <stem>up</stem>
  1252. <beam number="1">continue</beam>
  1253. <beam number="2">continue</beam>
  1254. </note>
  1255. <note default-x="260.09" default-y="-10.00">
  1256. <grace/>
  1257. <pitch>
  1258. <step>D</step>
  1259. <octave>5</octave>
  1260. </pitch>
  1261. <voice>1</voice>
  1262. <type>16th</type>
  1263. <stem>up</stem>
  1264. <beam number="1">continue</beam>
  1265. <beam number="2">continue</beam>
  1266. </note>
  1267. <note default-x="282.51" default-y="-25.00">
  1268. <grace/>
  1269. <pitch>
  1270. <step>A</step>
  1271. <alter>1</alter>
  1272. <octave>4</octave>
  1273. </pitch>
  1274. <voice>1</voice>
  1275. <type>16th</type>
  1276. <accidental>sharp</accidental>
  1277. <stem>up</stem>
  1278. <beam number="1">continue</beam>
  1279. <beam number="2">continue</beam>
  1280. </note>
  1281. <note default-x="293.47" default-y="-20.00">
  1282. <grace/>
  1283. <pitch>
  1284. <step>B</step>
  1285. <octave>4</octave>
  1286. </pitch>
  1287. <voice>1</voice>
  1288. <type>16th</type>
  1289. <stem>up</stem>
  1290. <beam number="1">end</beam>
  1291. <beam number="2">end</beam>
  1292. </note>
  1293. <note default-x="305.19" default-y="-35.00">
  1294. <pitch>
  1295. <step>F</step>
  1296. <octave>4</octave>
  1297. </pitch>
  1298. <duration>4</duration>
  1299. <voice>1</voice>
  1300. <type>quarter</type>
  1301. <stem>up</stem>
  1302. </note>
  1303. </measure>
  1304. <measure number="20" width="1077.49">
  1305. <print new-system="yes">
  1306. <system-layout>
  1307. <system-margins>
  1308. <left-margin>-0.00</left-margin>
  1309. <right-margin>0.00</right-margin>
  1310. </system-margins>
  1311. <system-distance>97.03</system-distance>
  1312. </system-layout>
  1313. </print>
  1314. <note default-x="50.82" default-y="-15.00">
  1315. <grace/>
  1316. <pitch>
  1317. <step>C</step>
  1318. <octave>5</octave>
  1319. </pitch>
  1320. <voice>1</voice>
  1321. <type>16th</type>
  1322. <stem>up</stem>
  1323. <beam number="1">begin</beam>
  1324. <beam number="2">begin</beam>
  1325. </note>
  1326. <note default-x="61.79" default-y="-20.00">
  1327. <grace/>
  1328. <pitch>
  1329. <step>B</step>
  1330. <octave>4</octave>
  1331. </pitch>
  1332. <voice>1</voice>
  1333. <type>16th</type>
  1334. <stem>up</stem>
  1335. <beam number="1">continue</beam>
  1336. <beam number="2">continue</beam>
  1337. </note>
  1338. <note default-x="72.76" default-y="-25.00">
  1339. <grace/>
  1340. <pitch>
  1341. <step>A</step>
  1342. <octave>4</octave>
  1343. </pitch>
  1344. <voice>1</voice>
  1345. <type>16th</type>
  1346. <stem>up</stem>
  1347. <beam number="1">continue</beam>
  1348. <beam number="2">continue</beam>
  1349. </note>
  1350. <note default-x="95.17" default-y="-15.00">
  1351. <grace/>
  1352. <pitch>
  1353. <step>C</step>
  1354. <alter>1</alter>
  1355. <octave>5</octave>
  1356. </pitch>
  1357. <voice>1</voice>
  1358. <type>16th</type>
  1359. <accidental>sharp</accidental>
  1360. <stem>up</stem>
  1361. <beam number="1">continue</beam>
  1362. <beam number="2">continue</beam>
  1363. </note>
  1364. <note default-x="106.14" default-y="-10.00">
  1365. <grace/>
  1366. <pitch>
  1367. <step>D</step>
  1368. <octave>5</octave>
  1369. </pitch>
  1370. <voice>1</voice>
  1371. <type>16th</type>
  1372. <stem>up</stem>
  1373. <beam number="1">continue</beam>
  1374. <beam number="2">continue</beam>
  1375. </note>
  1376. <note default-x="128.56" default-y="-25.00">
  1377. <grace/>
  1378. <pitch>
  1379. <step>A</step>
  1380. <alter>1</alter>
  1381. <octave>4</octave>
  1382. </pitch>
  1383. <voice>1</voice>
  1384. <type>16th</type>
  1385. <accidental>sharp</accidental>
  1386. <stem>up</stem>
  1387. <beam number="1">continue</beam>
  1388. <beam number="2">continue</beam>
  1389. </note>
  1390. <note default-x="139.52" default-y="-20.00">
  1391. <grace/>
  1392. <pitch>
  1393. <step>B</step>
  1394. <octave>4</octave>
  1395. </pitch>
  1396. <voice>1</voice>
  1397. <type>16th</type>
  1398. <stem>up</stem>
  1399. <beam number="1">end</beam>
  1400. <beam number="2">end</beam>
  1401. </note>
  1402. <note default-x="151.24" default-y="-35.00">
  1403. <pitch>
  1404. <step>F</step>
  1405. <octave>4</octave>
  1406. </pitch>
  1407. <duration>4</duration>
  1408. <voice>1</voice>
  1409. <type>quarter</type>
  1410. <stem>up</stem>
  1411. </note>
  1412. <note default-x="382.40" default-y="-20.00">
  1413. <pitch>
  1414. <step>B</step>
  1415. <octave>4</octave>
  1416. </pitch>
  1417. <duration>4</duration>
  1418. <voice>1</voice>
  1419. <type>quarter</type>
  1420. <stem>down</stem>
  1421. </note>
  1422. <note>
  1423. <rest/>
  1424. <duration>4</duration>
  1425. <voice>1</voice>
  1426. <type>quarter</type>
  1427. </note>
  1428. <note default-x="826.29" default-y="-35.00">
  1429. <grace/>
  1430. <pitch>
  1431. <step>F</step>
  1432. <alter>1</alter>
  1433. <octave>4</octave>
  1434. </pitch>
  1435. <voice>1</voice>
  1436. <type>eighth</type>
  1437. <accidental>sharp</accidental>
  1438. <stem>up</stem>
  1439. <notations>
  1440. <slur type="start" number="1"/>
  1441. </notations>
  1442. </note>
  1443. <note default-x="844.73" default-y="-30.00">
  1444. <pitch>
  1445. <step>G</step>
  1446. <octave>4</octave>
  1447. </pitch>
  1448. <duration>4</duration>
  1449. <voice>1</voice>
  1450. <type>quarter</type>
  1451. <stem>up</stem>
  1452. <notations>
  1453. <slur type="stop" number="1"/>
  1454. </notations>
  1455. </note>
  1456. </measure>
  1457. <measure number="21" width="1077.49">
  1458. <print new-system="yes">
  1459. <system-layout>
  1460. <system-margins>
  1461. <left-margin>-0.00</left-margin>
  1462. <right-margin>0.00</right-margin>
  1463. </system-margins>
  1464. <system-distance>97.03</system-distance>
  1465. </system-layout>
  1466. </print>
  1467. <note default-x="112.15" default-y="-40.00">
  1468. <pitch>
  1469. <step>E</step>
  1470. <octave>4</octave>
  1471. </pitch>
  1472. <duration>4</duration>
  1473. <voice>1</voice>
  1474. <type>quarter</type>
  1475. <stem>up</stem>
  1476. <lyric number="1" default-x="6.58" default-y="-80.00">
  1477. <syllabic>single</syllabic>
  1478. <text>InMeasureClefs</text>
  1479. </lyric>
  1480. </note>
  1481. <attributes>
  1482. <clef>
  1483. <sign>F</sign>
  1484. <line>4</line>
  1485. </clef>
  1486. </attributes>
  1487. <note default-x="353.09" default-y="5.00">
  1488. <pitch>
  1489. <step>B</step>
  1490. <octave>3</octave>
  1491. </pitch>
  1492. <duration>4</duration>
  1493. <voice>1</voice>
  1494. <type>quarter</type>
  1495. <stem>down</stem>
  1496. </note>
  1497. <attributes>
  1498. <clef>
  1499. <sign>G</sign>
  1500. <line>2</line>
  1501. </clef>
  1502. </attributes>
  1503. <note default-x="594.02" default-y="-30.00">
  1504. <pitch>
  1505. <step>G</step>
  1506. <octave>4</octave>
  1507. </pitch>
  1508. <duration>4</duration>
  1509. <voice>1</voice>
  1510. <type>quarter</type>
  1511. <stem>up</stem>
  1512. </note>
  1513. <attributes>
  1514. <clef>
  1515. <sign>F</sign>
  1516. <line>4</line>
  1517. </clef>
  1518. </attributes>
  1519. <note default-x="834.96" default-y="10.00">
  1520. <pitch>
  1521. <step>C</step>
  1522. <octave>4</octave>
  1523. </pitch>
  1524. <duration>4</duration>
  1525. <voice>1</voice>
  1526. <type>quarter</type>
  1527. <stem>down</stem>
  1528. </note>
  1529. </measure>
  1530. <measure number="22" width="197.87">
  1531. <print new-system="yes">
  1532. <system-layout>
  1533. <system-margins>
  1534. <left-margin>-0.00</left-margin>
  1535. <right-margin>0.00</right-margin>
  1536. </system-margins>
  1537. <system-distance>97.03</system-distance>
  1538. </system-layout>
  1539. </print>
  1540. <attributes>
  1541. <clef>
  1542. <sign>G</sign>
  1543. <line>2</line>
  1544. </clef>
  1545. </attributes>
  1546. <note>
  1547. <rest/>
  1548. <duration>16</duration>
  1549. <voice>1</voice>
  1550. </note>
  1551. </measure>
  1552. <measure number="23" width="236.55">
  1553. <direction placement="above">
  1554. <direction-type>
  1555. <words default-y="40.00" font-weight="bold" font-size="12">Slurs</words>
  1556. </direction-type>
  1557. </direction>
  1558. <note default-x="27.30" default-y="-40.00">
  1559. <pitch>
  1560. <step>E</step>
  1561. <octave>4</octave>
  1562. </pitch>
  1563. <duration>4</duration>
  1564. <voice>1</voice>
  1565. <type>quarter</type>
  1566. <stem>up</stem>
  1567. <notations>
  1568. <slur type="start" number="1"/>
  1569. </notations>
  1570. <lyric number="1" default-x="6.58" default-y="-80.00">
  1571. <syllabic>single</syllabic>
  1572. <text>Slurs</text>
  1573. </lyric>
  1574. </note>
  1575. <note default-x="79.21" default-y="-25.00">
  1576. <pitch>
  1577. <step>A</step>
  1578. <octave>4</octave>
  1579. </pitch>
  1580. <duration>4</duration>
  1581. <voice>1</voice>
  1582. <type>quarter</type>
  1583. <stem>up</stem>
  1584. </note>
  1585. <note default-x="131.12" default-y="-30.00">
  1586. <pitch>
  1587. <step>G</step>
  1588. <octave>4</octave>
  1589. </pitch>
  1590. <duration>4</duration>
  1591. <voice>1</voice>
  1592. <type>quarter</type>
  1593. <stem>up</stem>
  1594. <notations>
  1595. <slur type="start" number="2"/>
  1596. </notations>
  1597. </note>
  1598. <note default-x="183.04" default-y="-10.00">
  1599. <pitch>
  1600. <step>D</step>
  1601. <octave>5</octave>
  1602. </pitch>
  1603. <duration>4</duration>
  1604. <voice>1</voice>
  1605. <type>quarter</type>
  1606. <stem>down</stem>
  1607. </note>
  1608. </measure>
  1609. <measure number="24" width="214.36">
  1610. <note default-x="12.00" default-y="-15.00">
  1611. <pitch>
  1612. <step>C</step>
  1613. <octave>5</octave>
  1614. </pitch>
  1615. <duration>4</duration>
  1616. <voice>1</voice>
  1617. <type>quarter</type>
  1618. <stem>down</stem>
  1619. </note>
  1620. <note default-x="62.19" default-y="-25.00">
  1621. <pitch>
  1622. <step>A</step>
  1623. <octave>4</octave>
  1624. </pitch>
  1625. <duration>4</duration>
  1626. <voice>1</voice>
  1627. <type>quarter</type>
  1628. <stem>up</stem>
  1629. </note>
  1630. <note default-x="112.38" default-y="-35.00">
  1631. <pitch>
  1632. <step>F</step>
  1633. <octave>4</octave>
  1634. </pitch>
  1635. <duration>4</duration>
  1636. <voice>1</voice>
  1637. <type>quarter</type>
  1638. <stem>up</stem>
  1639. </note>
  1640. <note default-x="162.57" default-y="-55.00">
  1641. <pitch>
  1642. <step>B</step>
  1643. <octave>3</octave>
  1644. </pitch>
  1645. <duration>4</duration>
  1646. <voice>1</voice>
  1647. <type>quarter</type>
  1648. <stem>up</stem>
  1649. <notations>
  1650. <slur type="stop" number="2"/>
  1651. </notations>
  1652. </note>
  1653. </measure>
  1654. <measure number="25" width="214.36">
  1655. <note default-x="12.00" default-y="-30.00">
  1656. <pitch>
  1657. <step>G</step>
  1658. <octave>4</octave>
  1659. </pitch>
  1660. <duration>4</duration>
  1661. <voice>1</voice>
  1662. <type>quarter</type>
  1663. <stem>up</stem>
  1664. </note>
  1665. <note default-x="62.19" default-y="-10.00">
  1666. <pitch>
  1667. <step>D</step>
  1668. <octave>5</octave>
  1669. </pitch>
  1670. <duration>4</duration>
  1671. <voice>1</voice>
  1672. <type>quarter</type>
  1673. <stem>down</stem>
  1674. <notations>
  1675. <slur type="start" number="2"/>
  1676. </notations>
  1677. </note>
  1678. <note default-x="112.38" default-y="-20.00">
  1679. <pitch>
  1680. <step>B</step>
  1681. <octave>4</octave>
  1682. </pitch>
  1683. <duration>4</duration>
  1684. <voice>1</voice>
  1685. <type>quarter</type>
  1686. <stem>down</stem>
  1687. <notations>
  1688. <slur type="stop" number="2"/>
  1689. </notations>
  1690. </note>
  1691. <note default-x="162.57" default-y="-35.00">
  1692. <pitch>
  1693. <step>F</step>
  1694. <octave>4</octave>
  1695. </pitch>
  1696. <duration>4</duration>
  1697. <voice>1</voice>
  1698. <type>quarter</type>
  1699. <stem>up</stem>
  1700. </note>
  1701. </measure>
  1702. <measure number="26" width="214.36">
  1703. <note default-x="12.00" default-y="-30.00">
  1704. <pitch>
  1705. <step>G</step>
  1706. <octave>4</octave>
  1707. </pitch>
  1708. <duration>4</duration>
  1709. <voice>1</voice>
  1710. <type>quarter</type>
  1711. <stem>up</stem>
  1712. </note>
  1713. <note default-x="62.19" default-y="-15.00">
  1714. <pitch>
  1715. <step>C</step>
  1716. <octave>5</octave>
  1717. </pitch>
  1718. <duration>4</duration>
  1719. <voice>1</voice>
  1720. <type>quarter</type>
  1721. <stem>down</stem>
  1722. </note>
  1723. <note default-x="112.38" default-y="-35.00">
  1724. <pitch>
  1725. <step>F</step>
  1726. <octave>4</octave>
  1727. </pitch>
  1728. <duration>4</duration>
  1729. <voice>1</voice>
  1730. <type>quarter</type>
  1731. <stem>up</stem>
  1732. <notations>
  1733. <slur type="stop" number="1"/>
  1734. </notations>
  1735. </note>
  1736. <note default-x="162.57" default-y="-15.00">
  1737. <pitch>
  1738. <step>C</step>
  1739. <octave>5</octave>
  1740. </pitch>
  1741. <duration>4</duration>
  1742. <voice>1</voice>
  1743. <type>quarter</type>
  1744. <stem>down</stem>
  1745. </note>
  1746. </measure>
  1747. <measure number="27" width="296.88">
  1748. <print new-system="yes">
  1749. <system-layout>
  1750. <system-margins>
  1751. <left-margin>-0.00</left-margin>
  1752. <right-margin>0.00</right-margin>
  1753. </system-margins>
  1754. <system-distance>97.03</system-distance>
  1755. </system-layout>
  1756. </print>
  1757. <note default-x="49.08" default-y="-50.00">
  1758. <pitch>
  1759. <step>C</step>
  1760. <octave>4</octave>
  1761. </pitch>
  1762. <duration>4</duration>
  1763. <voice>1</voice>
  1764. <type>quarter</type>
  1765. <stem>up</stem>
  1766. </note>
  1767. <note default-x="110.63" default-y="-30.00">
  1768. <pitch>
  1769. <step>G</step>
  1770. <octave>4</octave>
  1771. </pitch>
  1772. <duration>4</duration>
  1773. <voice>1</voice>
  1774. <type>quarter</type>
  1775. <stem>up</stem>
  1776. </note>
  1777. <note default-x="172.18" default-y="-55.00">
  1778. <pitch>
  1779. <step>B</step>
  1780. <octave>3</octave>
  1781. </pitch>
  1782. <duration>4</duration>
  1783. <voice>1</voice>
  1784. <type>quarter</type>
  1785. <stem>up</stem>
  1786. </note>
  1787. <note default-x="172.18" default-y="-15.00">
  1788. <chord/>
  1789. <pitch>
  1790. <step>C</step>
  1791. <octave>5</octave>
  1792. </pitch>
  1793. <duration>4</duration>
  1794. <voice>1</voice>
  1795. <type>quarter</type>
  1796. <stem>up</stem>
  1797. </note>
  1798. <note default-x="233.73" default-y="-50.00">
  1799. <pitch>
  1800. <step>C</step>
  1801. <octave>4</octave>
  1802. </pitch>
  1803. <duration>4</duration>
  1804. <voice>1</voice>
  1805. <type>quarter</type>
  1806. <stem>up</stem>
  1807. <notations>
  1808. <slur type="start" number="1"/>
  1809. </notations>
  1810. </note>
  1811. <note default-x="233.73" default-y="-30.00">
  1812. <chord/>
  1813. <pitch>
  1814. <step>G</step>
  1815. <octave>4</octave>
  1816. </pitch>
  1817. <duration>4</duration>
  1818. <voice>1</voice>
  1819. <type>quarter</type>
  1820. <stem>up</stem>
  1821. </note>
  1822. </measure>
  1823. <measure number="28" width="260.20">
  1824. <note default-x="12.00" default-y="-25.00">
  1825. <pitch>
  1826. <step>A</step>
  1827. <octave>4</octave>
  1828. </pitch>
  1829. <duration>4</duration>
  1830. <voice>1</voice>
  1831. <type>quarter</type>
  1832. <stem>up</stem>
  1833. <notations>
  1834. <slur type="stop" number="1"/>
  1835. </notations>
  1836. </note>
  1837. <note default-x="73.65" default-y="-50.00">
  1838. <pitch>
  1839. <step>C</step>
  1840. <octave>4</octave>
  1841. </pitch>
  1842. <duration>4</duration>
  1843. <voice>1</voice>
  1844. <type>quarter</type>
  1845. <stem>up</stem>
  1846. </note>
  1847. <note default-x="73.65" default-y="-30.00">
  1848. <chord/>
  1849. <pitch>
  1850. <step>G</step>
  1851. <octave>4</octave>
  1852. </pitch>
  1853. <duration>4</duration>
  1854. <voice>1</voice>
  1855. <type>quarter</type>
  1856. <stem>up</stem>
  1857. </note>
  1858. <note default-x="135.30" default-y="-15.00">
  1859. <pitch>
  1860. <step>C</step>
  1861. <octave>5</octave>
  1862. </pitch>
  1863. <duration>4</duration>
  1864. <voice>1</voice>
  1865. <type>quarter</type>
  1866. <stem>down</stem>
  1867. </note>
  1868. <note default-x="196.95" default-y="-30.00">
  1869. <pitch>
  1870. <step>G</step>
  1871. <octave>4</octave>
  1872. </pitch>
  1873. <duration>4</duration>
  1874. <voice>1</voice>
  1875. <type>quarter</type>
  1876. <stem>up</stem>
  1877. </note>
  1878. </measure>
  1879. <measure number="29" width="260.20">
  1880. <note default-x="12.00" default-y="-15.00">
  1881. <pitch>
  1882. <step>C</step>
  1883. <octave>5</octave>
  1884. </pitch>
  1885. <duration>4</duration>
  1886. <voice>1</voice>
  1887. <type>quarter</type>
  1888. <stem>down</stem>
  1889. </note>
  1890. <note default-x="73.65" default-y="-35.00">
  1891. <pitch>
  1892. <step>F</step>
  1893. <octave>4</octave>
  1894. </pitch>
  1895. <duration>4</duration>
  1896. <voice>1</voice>
  1897. <type>quarter</type>
  1898. <stem>up</stem>
  1899. <notations>
  1900. <slur type="start" placement="above" number="1"/>
  1901. </notations>
  1902. </note>
  1903. <note default-x="135.30" default-y="-25.00">
  1904. <pitch>
  1905. <step>A</step>
  1906. <octave>4</octave>
  1907. </pitch>
  1908. <duration>4</duration>
  1909. <voice>1</voice>
  1910. <type>quarter</type>
  1911. <stem>up</stem>
  1912. </note>
  1913. <note default-x="196.95" default-y="-30.00">
  1914. <pitch>
  1915. <step>G</step>
  1916. <octave>4</octave>
  1917. </pitch>
  1918. <duration>4</duration>
  1919. <voice>1</voice>
  1920. <type>quarter</type>
  1921. <stem>up</stem>
  1922. </note>
  1923. </measure>
  1924. <measure number="30" width="260.20">
  1925. <note default-x="12.00" default-y="-20.00">
  1926. <pitch>
  1927. <step>B</step>
  1928. <octave>4</octave>
  1929. </pitch>
  1930. <duration>4</duration>
  1931. <voice>1</voice>
  1932. <type>quarter</type>
  1933. <stem>down</stem>
  1934. <notations>
  1935. <slur type="stop" number="1"/>
  1936. </notations>
  1937. </note>
  1938. <note default-x="73.65" 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="135.30" default-y="-25.00">
  1949. <pitch>
  1950. <step>A</step>
  1951. <octave>4</octave>
  1952. </pitch>
  1953. <duration>4</duration>
  1954. <voice>1</voice>
  1955. <type>quarter</type>
  1956. <stem>up</stem>
  1957. <notations>
  1958. <slur type="start" number="1"/>
  1959. </notations>
  1960. </note>
  1961. <note default-x="196.95" default-y="-25.00">
  1962. <pitch>
  1963. <step>A</step>
  1964. <octave>4</octave>
  1965. </pitch>
  1966. <duration>4</duration>
  1967. <voice>1</voice>
  1968. <type>quarter</type>
  1969. <stem>up</stem>
  1970. </note>
  1971. </measure>
  1972. <measure number="31" width="290.88">
  1973. <print new-page="yes">
  1974. <system-layout>
  1975. <system-margins>
  1976. <left-margin>-0.00</left-margin>
  1977. <right-margin>0.00</right-margin>
  1978. </system-margins>
  1979. <top-system-distance>70.00</top-system-distance>
  1980. </system-layout>
  1981. </print>
  1982. <note default-x="49.08" default-y="-20.00">
  1983. <pitch>
  1984. <step>B</step>
  1985. <octave>4</octave>
  1986. </pitch>
  1987. <duration>4</duration>
  1988. <voice>1</voice>
  1989. <type>quarter</type>
  1990. <stem>down</stem>
  1991. </note>
  1992. <note default-x="109.13" default-y="-40.00">
  1993. <pitch>
  1994. <step>E</step>
  1995. <octave>4</octave>
  1996. </pitch>
  1997. <duration>4</duration>
  1998. <voice>1</voice>
  1999. <type>quarter</type>
  2000. <stem>down</stem>
  2001. <notations>
  2002. <slur type="start" number="2"/>
  2003. <slur type="start" number="3"/>
  2004. </notations>
  2005. </note>
  2006. <note default-x="109.13" default-y="-20.00">
  2007. <chord/>
  2008. <pitch>
  2009. <step>B</step>
  2010. <octave>4</octave>
  2011. </pitch>
  2012. <duration>4</duration>
  2013. <voice>1</voice>
  2014. <type>quarter</type>
  2015. <stem>down</stem>
  2016. </note>
  2017. <note default-x="109.13" default-y="0.00">
  2018. <chord/>
  2019. <pitch>
  2020. <step>F</step>
  2021. <octave>5</octave>
  2022. </pitch>
  2023. <duration>4</duration>
  2024. <voice>1</voice>
  2025. <type>quarter</type>
  2026. <stem>down</stem>
  2027. </note>
  2028. <note default-x="169.18" default-y="-50.00">
  2029. <pitch>
  2030. <step>C</step>
  2031. <octave>4</octave>
  2032. </pitch>
  2033. <duration>4</duration>
  2034. <voice>1</voice>
  2035. <type>quarter</type>
  2036. <stem>up</stem>
  2037. <notations>
  2038. <slur type="stop" number="2"/>
  2039. </notations>
  2040. </note>
  2041. <note default-x="169.18" default-y="-35.00">
  2042. <chord/>
  2043. <pitch>
  2044. <step>F</step>
  2045. <octave>4</octave>
  2046. </pitch>
  2047. <duration>4</duration>
  2048. <voice>1</voice>
  2049. <type>quarter</type>
  2050. <stem>up</stem>
  2051. </note>
  2052. <note default-x="169.18" default-y="-25.00">
  2053. <chord/>
  2054. <pitch>
  2055. <step>A</step>
  2056. <octave>4</octave>
  2057. </pitch>
  2058. <duration>4</duration>
  2059. <voice>1</voice>
  2060. <type>quarter</type>
  2061. <stem>up</stem>
  2062. </note>
  2063. <note default-x="169.18" default-y="-10.00">
  2064. <chord/>
  2065. <pitch>
  2066. <step>D</step>
  2067. <octave>5</octave>
  2068. </pitch>
  2069. <duration>4</duration>
  2070. <voice>1</voice>
  2071. <type>quarter</type>
  2072. <stem>up</stem>
  2073. </note>
  2074. <note default-x="229.23" default-y="-30.00">
  2075. <pitch>
  2076. <step>G</step>
  2077. <octave>4</octave>
  2078. </pitch>
  2079. <duration>4</duration>
  2080. <voice>1</voice>
  2081. <type>quarter</type>
  2082. <stem>up</stem>
  2083. </note>
  2084. </measure>
  2085. <measure number="32" width="262.20">
  2086. <note default-x="12.00" default-y="-25.00">
  2087. <pitch>
  2088. <step>A</step>
  2089. <octave>4</octave>
  2090. </pitch>
  2091. <duration>4</duration>
  2092. <voice>1</voice>
  2093. <type>quarter</type>
  2094. <stem>up</stem>
  2095. <notations>
  2096. <slur type="stop" number="1"/>
  2097. <slur type="stop" number="3"/>
  2098. </notations>
  2099. </note>
  2100. <note default-x="74.15" default-y="-30.00">
  2101. <pitch>
  2102. <step>G</step>
  2103. <octave>4</octave>
  2104. </pitch>
  2105. <duration>4</duration>
  2106. <voice>1</voice>
  2107. <type>quarter</type>
  2108. <stem>down</stem>
  2109. <notations>
  2110. <slur type="start" number="1"/>
  2111. <slur type="start" number="2"/>
  2112. </notations>
  2113. </note>
  2114. <note default-x="74.15" default-y="-15.00">
  2115. <chord/>
  2116. <pitch>
  2117. <step>C</step>
  2118. <octave>5</octave>
  2119. </pitch>
  2120. <duration>4</duration>
  2121. <voice>1</voice>
  2122. <type>quarter</type>
  2123. <stem>down</stem>
  2124. </note>
  2125. <note default-x="74.15" default-y="0.00">
  2126. <chord/>
  2127. <pitch>
  2128. <step>F</step>
  2129. <octave>5</octave>
  2130. </pitch>
  2131. <duration>4</duration>
  2132. <voice>1</voice>
  2133. <type>quarter</type>
  2134. <stem>down</stem>
  2135. </note>
  2136. <note default-x="136.30" default-y="-15.00">
  2137. <pitch>
  2138. <step>C</step>
  2139. <octave>5</octave>
  2140. </pitch>
  2141. <duration>4</duration>
  2142. <voice>1</voice>
  2143. <type>quarter</type>
  2144. <stem>down</stem>
  2145. <notations>
  2146. <slur type="stop" number="1"/>
  2147. </notations>
  2148. </note>
  2149. <note default-x="136.30" default-y="-5.00">
  2150. <chord/>
  2151. <pitch>
  2152. <step>E</step>
  2153. <octave>5</octave>
  2154. </pitch>
  2155. <duration>4</duration>
  2156. <voice>1</voice>
  2157. <type>quarter</type>
  2158. <stem>down</stem>
  2159. </note>
  2160. <note default-x="136.30" default-y="10.00">
  2161. <chord/>
  2162. <pitch>
  2163. <step>A</step>
  2164. <octave>5</octave>
  2165. </pitch>
  2166. <duration>4</duration>
  2167. <voice>1</voice>
  2168. <type>quarter</type>
  2169. <stem>down</stem>
  2170. </note>
  2171. <note default-x="198.45" default-y="-25.00">
  2172. <pitch>
  2173. <step>A</step>
  2174. <octave>4</octave>
  2175. </pitch>
  2176. <duration>4</duration>
  2177. <voice>1</voice>
  2178. <type>quarter</type>
  2179. <stem>down</stem>
  2180. <notations>
  2181. <slur type="stop" number="2"/>
  2182. <slur type="start" number="1"/>
  2183. </notations>
  2184. </note>
  2185. <note default-x="198.45" default-y="-10.00">
  2186. <chord/>
  2187. <pitch>
  2188. <step>D</step>
  2189. <octave>5</octave>
  2190. </pitch>
  2191. <duration>4</duration>
  2192. <voice>1</voice>
  2193. <type>quarter</type>
  2194. <stem>down</stem>
  2195. </note>
  2196. </measure>
  2197. <measure number="33" width="262.20">
  2198. <note default-x="12.00" default-y="-40.00">
  2199. <pitch>
  2200. <step>E</step>
  2201. <octave>4</octave>
  2202. </pitch>
  2203. <duration>4</duration>
  2204. <voice>1</voice>
  2205. <type>quarter</type>
  2206. <stem>up</stem>
  2207. </note>
  2208. <note default-x="74.15" default-y="-25.00">
  2209. <pitch>
  2210. <step>A</step>
  2211. <octave>4</octave>
  2212. </pitch>
  2213. <duration>4</duration>
  2214. <voice>1</voice>
  2215. <type>quarter</type>
  2216. <stem>up</stem>
  2217. <notations>
  2218. <slur type="stop" number="1"/>
  2219. </notations>
  2220. </note>
  2221. <note default-x="136.30" default-y="-25.00">
  2222. <pitch>
  2223. <step>A</step>
  2224. <octave>4</octave>
  2225. </pitch>
  2226. <duration>4</duration>
  2227. <voice>1</voice>
  2228. <type>quarter</type>
  2229. <stem>up</stem>
  2230. </note>
  2231. <note default-x="198.45" default-y="-30.00">
  2232. <pitch>
  2233. <step>G</step>
  2234. <octave>4</octave>
  2235. </pitch>
  2236. <duration>4</duration>
  2237. <voice>1</voice>
  2238. <type>quarter</type>
  2239. <stem>down</stem>
  2240. </note>
  2241. <note default-x="198.45" default-y="-10.00">
  2242. <chord/>
  2243. <pitch>
  2244. <step>D</step>
  2245. <octave>5</octave>
  2246. </pitch>
  2247. <duration>4</duration>
  2248. <voice>1</voice>
  2249. <type>quarter</type>
  2250. <stem>down</stem>
  2251. </note>
  2252. </measure>
  2253. <measure number="34" width="262.20">
  2254. <note default-x="12.00" default-y="-20.00">
  2255. <pitch>
  2256. <step>B</step>
  2257. <octave>4</octave>
  2258. </pitch>
  2259. <duration>4</duration>
  2260. <voice>1</voice>
  2261. <type>quarter</type>
  2262. <stem>down</stem>
  2263. <notations>
  2264. <slur type="start" number="1"/>
  2265. </notations>
  2266. </note>
  2267. <note default-x="74.15" default-y="-30.00">
  2268. <pitch>
  2269. <step>G</step>
  2270. <octave>4</octave>
  2271. </pitch>
  2272. <duration>4</duration>
  2273. <voice>1</voice>
  2274. <type>quarter</type>
  2275. <stem>up</stem>
  2276. <notations>
  2277. <slur type="stop" number="1"/>
  2278. </notations>
  2279. </note>
  2280. <note default-x="136.30" default-y="-15.00">
  2281. <pitch>
  2282. <step>C</step>
  2283. <octave>5</octave>
  2284. </pitch>
  2285. <duration>4</duration>
  2286. <voice>1</voice>
  2287. <type>quarter</type>
  2288. <stem>down</stem>
  2289. </note>
  2290. <note default-x="198.45" default-y="-35.00">
  2291. <pitch>
  2292. <step>F</step>
  2293. <octave>4</octave>
  2294. </pitch>
  2295. <duration>4</duration>
  2296. <voice>1</voice>
  2297. <type>quarter</type>
  2298. <stem>up</stem>
  2299. </note>
  2300. </measure>
  2301. <measure number="35" width="132.09">
  2302. <print new-page="yes">
  2303. <system-layout>
  2304. <system-margins>
  2305. <left-margin>-0.00</left-margin>
  2306. <right-margin>626.14</right-margin>
  2307. </system-margins>
  2308. <top-system-distance>70.00</top-system-distance>
  2309. </system-layout>
  2310. </print>
  2311. <note>
  2312. <rest/>
  2313. <duration>16</duration>
  2314. <voice>1</voice>
  2315. <lyric number="1" default-x="11.65" default-y="-80.00">
  2316. <syllabic>single</syllabic>
  2317. <text>Tuplets:</text>
  2318. </lyric>
  2319. </note>
  2320. </measure>
  2321. <measure number="36" width="1110.61">
  2322. <print>
  2323. <system-layout>
  2324. <system-margins>
  2325. <left-margin>0.00</left-margin>
  2326. <right-margin>0.00</right-margin>
  2327. </system-margins>
  2328. <top-system-distance>170.00</top-system-distance>
  2329. </system-layout>
  2330. </print>
  2331. <attributes>
  2332. <divisions>480</divisions>
  2333. <key>
  2334. <fifths>0</fifths>
  2335. </key>
  2336. <time>
  2337. <beats>4</beats>
  2338. <beat-type>4</beat-type>
  2339. </time>
  2340. <clef>
  2341. <sign>G</sign>
  2342. <line>2</line>
  2343. </clef>
  2344. </attributes>
  2345. <note default-x="148.28" default-y="-35.00">
  2346. <pitch>
  2347. <step>F</step>
  2348. <octave>4</octave>
  2349. </pitch>
  2350. <duration>96</duration>
  2351. <voice>1</voice>
  2352. <type>16th</type>
  2353. <time-modification>
  2354. <actual-notes>5</actual-notes>
  2355. <normal-notes>4</normal-notes>
  2356. </time-modification>
  2357. <stem>up</stem>
  2358. <beam number="1">begin</beam>
  2359. <beam number="2">begin</beam>
  2360. <notations>
  2361. <tuplet type="start" bracket="no"/>
  2362. </notations>
  2363. <lyric number="1" default-x="6.58" default-y="-80.00">
  2364. <syllabic>single</syllabic>
  2365. <text>NoBracketsInXml</text>
  2366. </lyric>
  2367. </note>
  2368. <note default-x="237.05" default-y="-25.00">
  2369. <pitch>
  2370. <step>A</step>
  2371. <octave>4</octave>
  2372. </pitch>
  2373. <duration>96</duration>
  2374. <voice>1</voice>
  2375. <type>16th</type>
  2376. <time-modification>
  2377. <actual-notes>5</actual-notes>
  2378. <normal-notes>4</normal-notes>
  2379. </time-modification>
  2380. <stem>up</stem>
  2381. <beam number="1">continue</beam>
  2382. <beam number="2">continue</beam>
  2383. </note>
  2384. <note default-x="283.57" default-y="-15.00">
  2385. <pitch>
  2386. <step>C</step>
  2387. <octave>5</octave>
  2388. </pitch>
  2389. <duration>96</duration>
  2390. <voice>1</voice>
  2391. <type>16th</type>
  2392. <time-modification>
  2393. <actual-notes>5</actual-notes>
  2394. <normal-notes>4</normal-notes>
  2395. </time-modification>
  2396. <stem>up</stem>
  2397. <beam number="1">continue</beam>
  2398. <beam number="2">continue</beam>
  2399. </note>
  2400. <note default-x="330.08" default-y="-25.00">
  2401. <pitch>
  2402. <step>A</step>
  2403. <octave>4</octave>
  2404. </pitch>
  2405. <duration>96</duration>
  2406. <voice>1</voice>
  2407. <type>16th</type>
  2408. <time-modification>
  2409. <actual-notes>5</actual-notes>
  2410. <normal-notes>4</normal-notes>
  2411. </time-modification>
  2412. <stem>up</stem>
  2413. <beam number="1">continue</beam>
  2414. <beam number="2">continue</beam>
  2415. </note>
  2416. <note default-x="376.59" default-y="-15.00">
  2417. <pitch>
  2418. <step>C</step>
  2419. <octave>5</octave>
  2420. </pitch>
  2421. <duration>96</duration>
  2422. <voice>1</voice>
  2423. <type>16th</type>
  2424. <time-modification>
  2425. <actual-notes>5</actual-notes>
  2426. <normal-notes>4</normal-notes>
  2427. </time-modification>
  2428. <stem>up</stem>
  2429. <beam number="1">end</beam>
  2430. <beam number="2">end</beam>
  2431. <notations>
  2432. <tuplet type="stop"/>
  2433. </notations>
  2434. </note>
  2435. <note default-x="423.11" default-y="-35.00">
  2436. <pitch>
  2437. <step>F</step>
  2438. <octave>4</octave>
  2439. </pitch>
  2440. <duration>160</duration>
  2441. <voice>1</voice>
  2442. <type>eighth</type>
  2443. <time-modification>
  2444. <actual-notes>3</actual-notes>
  2445. <normal-notes>2</normal-notes>
  2446. </time-modification>
  2447. <stem>up</stem>
  2448. <beam number="1">begin</beam>
  2449. <notations>
  2450. <tuplet type="start" bracket="no"/>
  2451. </notations>
  2452. </note>
  2453. <note default-x="485.15" default-y="-25.00">
  2454. <pitch>
  2455. <step>A</step>
  2456. <octave>4</octave>
  2457. </pitch>
  2458. <duration>160</duration>
  2459. <voice>1</voice>
  2460. <type>eighth</type>
  2461. <time-modification>
  2462. <actual-notes>3</actual-notes>
  2463. <normal-notes>2</normal-notes>
  2464. </time-modification>
  2465. <stem>up</stem>
  2466. <beam number="1">continue</beam>
  2467. </note>
  2468. <note default-x="547.19" default-y="-15.00">
  2469. <pitch>
  2470. <step>C</step>
  2471. <octave>5</octave>
  2472. </pitch>
  2473. <duration>160</duration>
  2474. <voice>1</voice>
  2475. <type>eighth</type>
  2476. <time-modification>
  2477. <actual-notes>3</actual-notes>
  2478. <normal-notes>2</normal-notes>
  2479. </time-modification>
  2480. <stem>up</stem>
  2481. <beam number="1">end</beam>
  2482. <notations>
  2483. <tuplet type="stop"/>
  2484. </notations>
  2485. </note>
  2486. <note default-x="609.23" default-y="-35.00">
  2487. <pitch>
  2488. <step>F</step>
  2489. <octave>4</octave>
  2490. </pitch>
  2491. <duration>80</duration>
  2492. <voice>1</voice>
  2493. <type>16th</type>
  2494. <time-modification>
  2495. <actual-notes>6</actual-notes>
  2496. <normal-notes>4</normal-notes>
  2497. </time-modification>
  2498. <stem>up</stem>
  2499. <beam number="1">begin</beam>
  2500. <beam number="2">begin</beam>
  2501. <notations>
  2502. <tuplet type="start" bracket="no"/>
  2503. </notations>
  2504. </note>
  2505. <note default-x="650.20" default-y="-25.00">
  2506. <pitch>
  2507. <step>A</step>
  2508. <octave>4</octave>
  2509. </pitch>
  2510. <duration>80</duration>
  2511. <voice>1</voice>
  2512. <type>16th</type>
  2513. <time-modification>
  2514. <actual-notes>6</actual-notes>
  2515. <normal-notes>4</normal-notes>
  2516. </time-modification>
  2517. <stem>up</stem>
  2518. <beam number="1">continue</beam>
  2519. <beam number="2">continue</beam>
  2520. </note>
  2521. <note default-x="691.17" default-y="-15.00">
  2522. <pitch>
  2523. <step>C</step>
  2524. <octave>5</octave>
  2525. </pitch>
  2526. <duration>80</duration>
  2527. <voice>1</voice>
  2528. <type>16th</type>
  2529. <time-modification>
  2530. <actual-notes>6</actual-notes>
  2531. <normal-notes>4</normal-notes>
  2532. </time-modification>
  2533. <stem>up</stem>
  2534. <beam number="1">continue</beam>
  2535. <beam number="2">continue</beam>
  2536. </note>
  2537. <note default-x="732.14" default-y="-35.00">
  2538. <pitch>
  2539. <step>F</step>
  2540. <octave>4</octave>
  2541. </pitch>
  2542. <duration>80</duration>
  2543. <voice>1</voice>
  2544. <type>16th</type>
  2545. <time-modification>
  2546. <actual-notes>6</actual-notes>
  2547. <normal-notes>4</normal-notes>
  2548. </time-modification>
  2549. <stem>up</stem>
  2550. <beam number="1">continue</beam>
  2551. <beam number="2">continue</beam>
  2552. </note>
  2553. <note default-x="773.11" default-y="-25.00">
  2554. <pitch>
  2555. <step>A</step>
  2556. <octave>4</octave>
  2557. </pitch>
  2558. <duration>80</duration>
  2559. <voice>1</voice>
  2560. <type>16th</type>
  2561. <time-modification>
  2562. <actual-notes>6</actual-notes>
  2563. <normal-notes>4</normal-notes>
  2564. </time-modification>
  2565. <stem>up</stem>
  2566. <beam number="1">continue</beam>
  2567. <beam number="2">continue</beam>
  2568. </note>
  2569. <note default-x="814.08" default-y="-15.00">
  2570. <pitch>
  2571. <step>C</step>
  2572. <octave>5</octave>
  2573. </pitch>
  2574. <duration>80</duration>
  2575. <voice>1</voice>
  2576. <type>16th</type>
  2577. <time-modification>
  2578. <actual-notes>6</actual-notes>
  2579. <normal-notes>4</normal-notes>
  2580. </time-modification>
  2581. <stem>up</stem>
  2582. <beam number="1">end</beam>
  2583. <beam number="2">end</beam>
  2584. <notations>
  2585. <tuplet type="stop"/>
  2586. </notations>
  2587. </note>
  2588. <note default-x="855.05" default-y="-35.00">
  2589. <pitch>
  2590. <step>F</step>
  2591. <octave>4</octave>
  2592. </pitch>
  2593. <duration>69</duration>
  2594. <voice>1</voice>
  2595. <type>16th</type>
  2596. <time-modification>
  2597. <actual-notes>7</actual-notes>
  2598. <normal-notes>4</normal-notes>
  2599. </time-modification>
  2600. <stem>down</stem>
  2601. <beam number="1">begin</beam>
  2602. <beam number="2">begin</beam>
  2603. <notations>
  2604. <tuplet type="start" bracket="no"/>
  2605. </notations>
  2606. </note>
  2607. <note default-x="891.53" default-y="-30.00">
  2608. <pitch>
  2609. <step>G</step>
  2610. <octave>4</octave>
  2611. </pitch>
  2612. <duration>69</duration>
  2613. <voice>1</voice>
  2614. <type>16th</type>
  2615. <time-modification>
  2616. <actual-notes>7</actual-notes>
  2617. <normal-notes>4</normal-notes>
  2618. </time-modification>
  2619. <stem>down</stem>
  2620. <beam number="1">continue</beam>
  2621. <beam number="2">continue</beam>
  2622. </note>
  2623. <note default-x="928.00" default-y="-25.00">
  2624. <pitch>
  2625. <step>A</step>
  2626. <octave>4</octave>
  2627. </pitch>
  2628. <duration>69</duration>
  2629. <voice>1</voice>
  2630. <type>16th</type>
  2631. <time-modification>
  2632. <actual-notes>7</actual-notes>
  2633. <normal-notes>4</normal-notes>
  2634. </time-modification>
  2635. <stem>down</stem>
  2636. <beam number="1">continue</beam>
  2637. <beam number="2">continue</beam>
  2638. </note>
  2639. <note default-x="964.47" default-y="-15.00">
  2640. <pitch>
  2641. <step>C</step>
  2642. <octave>5</octave>
  2643. </pitch>
  2644. <duration>69</duration>
  2645. <voice>1</voice>
  2646. <type>16th</type>
  2647. <time-modification>
  2648. <actual-notes>7</actual-notes>
  2649. <normal-notes>4</normal-notes>
  2650. </time-modification>
  2651. <stem>down</stem>
  2652. <beam number="1">continue</beam>
  2653. <beam number="2">continue</beam>
  2654. </note>
  2655. <note default-x="1000.95" default-y="-10.00">
  2656. <pitch>
  2657. <step>D</step>
  2658. <octave>5</octave>
  2659. </pitch>
  2660. <duration>69</duration>
  2661. <voice>1</voice>
  2662. <type>16th</type>
  2663. <time-modification>
  2664. <actual-notes>7</actual-notes>
  2665. <normal-notes>4</normal-notes>
  2666. </time-modification>
  2667. <stem>down</stem>
  2668. <beam number="1">continue</beam>
  2669. <beam number="2">continue</beam>
  2670. </note>
  2671. <note default-x="1037.42" default-y="-5.00">
  2672. <pitch>
  2673. <step>E</step>
  2674. <octave>5</octave>
  2675. </pitch>
  2676. <duration>69</duration>
  2677. <voice>1</voice>
  2678. <type>16th</type>
  2679. <time-modification>
  2680. <actual-notes>7</actual-notes>
  2681. <normal-notes>4</normal-notes>
  2682. </time-modification>
  2683. <stem>down</stem>
  2684. <beam number="1">continue</beam>
  2685. <beam number="2">continue</beam>
  2686. </note>
  2687. <note default-x="1073.89" default-y="-15.00">
  2688. <pitch>
  2689. <step>C</step>
  2690. <octave>5</octave>
  2691. </pitch>
  2692. <duration>69</duration>
  2693. <voice>1</voice>
  2694. <type>16th</type>
  2695. <time-modification>
  2696. <actual-notes>7</actual-notes>
  2697. <normal-notes>4</normal-notes>
  2698. </time-modification>
  2699. <stem>down</stem>
  2700. <beam number="1">end</beam>
  2701. <beam number="2">end</beam>
  2702. <notations>
  2703. <tuplet type="stop"/>
  2704. </notations>
  2705. </note>
  2706. <backup>
  2707. <duration>3</duration>
  2708. </backup>
  2709. </measure>
  2710. <measure number="37" width="1110.61">
  2711. <print new-system="yes">
  2712. <system-layout>
  2713. <system-margins>
  2714. <left-margin>0.00</left-margin>
  2715. <right-margin>0.00</right-margin>
  2716. </system-margins>
  2717. <system-distance>150.00</system-distance>
  2718. </system-layout>
  2719. </print>
  2720. <note default-x="108.79" default-y="-35.00">
  2721. <pitch>
  2722. <step>F</step>
  2723. <octave>4</octave>
  2724. </pitch>
  2725. <duration>96</duration>
  2726. <voice>1</voice>
  2727. <type>16th</type>
  2728. <time-modification>
  2729. <actual-notes>5</actual-notes>
  2730. <normal-notes>4</normal-notes>
  2731. </time-modification>
  2732. <stem>up</stem>
  2733. <beam number="1">begin</beam>
  2734. <beam number="2">begin</beam>
  2735. <notations>
  2736. <tuplet type="start" bracket="yes"/>
  2737. </notations>
  2738. <lyric number="1" default-x="6.58" default-y="-80.00">
  2739. <syllabic>single</syllabic>
  2740. <text>BracketsInXml</text>
  2741. </lyric>
  2742. </note>
  2743. <note default-x="184.17" default-y="-25.00">
  2744. <pitch>
  2745. <step>A</step>
  2746. <octave>4</octave>
  2747. </pitch>
  2748. <duration>96</duration>
  2749. <voice>1</voice>
  2750. <type>16th</type>
  2751. <time-modification>
  2752. <actual-notes>5</actual-notes>
  2753. <normal-notes>4</normal-notes>
  2754. </time-modification>
  2755. <stem>up</stem>
  2756. <beam number="1">continue</beam>
  2757. <beam number="2">continue</beam>
  2758. </note>
  2759. <note default-x="233.03" default-y="-15.00">
  2760. <pitch>
  2761. <step>C</step>
  2762. <octave>5</octave>
  2763. </pitch>
  2764. <duration>96</duration>
  2765. <voice>1</voice>
  2766. <type>16th</type>
  2767. <time-modification>
  2768. <actual-notes>5</actual-notes>
  2769. <normal-notes>4</normal-notes>
  2770. </time-modification>
  2771. <stem>up</stem>
  2772. <beam number="1">continue</beam>
  2773. <beam number="2">continue</beam>
  2774. </note>
  2775. <note default-x="281.88" default-y="-25.00">
  2776. <pitch>
  2777. <step>A</step>
  2778. <octave>4</octave>
  2779. </pitch>
  2780. <duration>96</duration>
  2781. <voice>1</voice>
  2782. <type>16th</type>
  2783. <time-modification>
  2784. <actual-notes>5</actual-notes>
  2785. <normal-notes>4</normal-notes>
  2786. </time-modification>
  2787. <stem>up</stem>
  2788. <beam number="1">continue</beam>
  2789. <beam number="2">continue</beam>
  2790. </note>
  2791. <note default-x="330.74" default-y="-15.00">
  2792. <pitch>
  2793. <step>C</step>
  2794. <octave>5</octave>
  2795. </pitch>
  2796. <duration>96</duration>
  2797. <voice>1</voice>
  2798. <type>16th</type>
  2799. <time-modification>
  2800. <actual-notes>5</actual-notes>
  2801. <normal-notes>4</normal-notes>
  2802. </time-modification>
  2803. <stem>up</stem>
  2804. <beam number="1">end</beam>
  2805. <beam number="2">end</beam>
  2806. <notations>
  2807. <tuplet type="stop"/>
  2808. </notations>
  2809. </note>
  2810. <note default-x="379.59" default-y="-35.00">
  2811. <pitch>
  2812. <step>F</step>
  2813. <octave>4</octave>
  2814. </pitch>
  2815. <duration>160</duration>
  2816. <voice>1</voice>
  2817. <type>eighth</type>
  2818. <time-modification>
  2819. <actual-notes>3</actual-notes>
  2820. <normal-notes>2</normal-notes>
  2821. </time-modification>
  2822. <stem>up</stem>
  2823. <beam number="1">begin</beam>
  2824. <notations>
  2825. <tuplet type="start" bracket="yes"/>
  2826. </notations>
  2827. </note>
  2828. <note default-x="444.75" default-y="-25.00">
  2829. <pitch>
  2830. <step>A</step>
  2831. <octave>4</octave>
  2832. </pitch>
  2833. <duration>160</duration>
  2834. <voice>1</voice>
  2835. <type>eighth</type>
  2836. <time-modification>
  2837. <actual-notes>3</actual-notes>
  2838. <normal-notes>2</normal-notes>
  2839. </time-modification>
  2840. <stem>up</stem>
  2841. <beam number="1">continue</beam>
  2842. </note>
  2843. <note default-x="509.92" default-y="-15.00">
  2844. <pitch>
  2845. <step>C</step>
  2846. <octave>5</octave>
  2847. </pitch>
  2848. <duration>160</duration>
  2849. <voice>1</voice>
  2850. <type>eighth</type>
  2851. <time-modification>
  2852. <actual-notes>3</actual-notes>
  2853. <normal-notes>2</normal-notes>
  2854. </time-modification>
  2855. <stem>up</stem>
  2856. <beam number="1">end</beam>
  2857. <notations>
  2858. <tuplet type="stop"/>
  2859. </notations>
  2860. </note>
  2861. <note default-x="575.08" default-y="-35.00">
  2862. <pitch>
  2863. <step>F</step>
  2864. <octave>4</octave>
  2865. </pitch>
  2866. <duration>80</duration>
  2867. <voice>1</voice>
  2868. <type>16th</type>
  2869. <time-modification>
  2870. <actual-notes>6</actual-notes>
  2871. <normal-notes>4</normal-notes>
  2872. </time-modification>
  2873. <stem>up</stem>
  2874. <beam number="1">begin</beam>
  2875. <beam number="2">begin</beam>
  2876. <notations>
  2877. <tuplet type="start" bracket="yes"/>
  2878. </notations>
  2879. </note>
  2880. <note default-x="618.12" default-y="-25.00">
  2881. <pitch>
  2882. <step>A</step>
  2883. <octave>4</octave>
  2884. </pitch>
  2885. <duration>80</duration>
  2886. <voice>1</voice>
  2887. <type>16th</type>
  2888. <time-modification>
  2889. <actual-notes>6</actual-notes>
  2890. <normal-notes>4</normal-notes>
  2891. </time-modification>
  2892. <stem>up</stem>
  2893. <beam number="1">continue</beam>
  2894. <beam number="2">continue</beam>
  2895. </note>
  2896. <note default-x="661.15" default-y="-15.00">
  2897. <pitch>
  2898. <step>C</step>
  2899. <octave>5</octave>
  2900. </pitch>
  2901. <duration>80</duration>
  2902. <voice>1</voice>
  2903. <type>16th</type>
  2904. <time-modification>
  2905. <actual-notes>6</actual-notes>
  2906. <normal-notes>4</normal-notes>
  2907. </time-modification>
  2908. <stem>up</stem>
  2909. <beam number="1">continue</beam>
  2910. <beam number="2">continue</beam>
  2911. </note>
  2912. <note default-x="704.18" default-y="-35.00">
  2913. <pitch>
  2914. <step>F</step>
  2915. <octave>4</octave>
  2916. </pitch>
  2917. <duration>80</duration>
  2918. <voice>1</voice>
  2919. <type>16th</type>
  2920. <time-modification>
  2921. <actual-notes>6</actual-notes>
  2922. <normal-notes>4</normal-notes>
  2923. </time-modification>
  2924. <stem>up</stem>
  2925. <beam number="1">continue</beam>
  2926. <beam number="2">continue</beam>
  2927. </note>
  2928. <note default-x="747.21" default-y="-25.00">
  2929. <pitch>
  2930. <step>A</step>
  2931. <octave>4</octave>
  2932. </pitch>
  2933. <duration>80</duration>
  2934. <voice>1</voice>
  2935. <type>16th</type>
  2936. <time-modification>
  2937. <actual-notes>6</actual-notes>
  2938. <normal-notes>4</normal-notes>
  2939. </time-modification>
  2940. <stem>up</stem>
  2941. <beam number="1">continue</beam>
  2942. <beam number="2">continue</beam>
  2943. </note>
  2944. <note default-x="790.24" default-y="-15.00">
  2945. <pitch>
  2946. <step>C</step>
  2947. <octave>5</octave>
  2948. </pitch>
  2949. <duration>80</duration>
  2950. <voice>1</voice>
  2951. <type>16th</type>
  2952. <time-modification>
  2953. <actual-notes>6</actual-notes>
  2954. <normal-notes>4</normal-notes>
  2955. </time-modification>
  2956. <stem>up</stem>
  2957. <beam number="1">end</beam>
  2958. <beam number="2">end</beam>
  2959. <notations>
  2960. <tuplet type="stop"/>
  2961. </notations>
  2962. </note>
  2963. <note default-x="833.27" default-y="-35.00">
  2964. <pitch>
  2965. <step>F</step>
  2966. <octave>4</octave>
  2967. </pitch>
  2968. <duration>69</duration>
  2969. <voice>1</voice>
  2970. <type>16th</type>
  2971. <time-modification>
  2972. <actual-notes>7</actual-notes>
  2973. <normal-notes>4</normal-notes>
  2974. </time-modification>
  2975. <stem>down</stem>
  2976. <beam number="1">begin</beam>
  2977. <beam number="2">begin</beam>
  2978. <notations>
  2979. <tuplet type="start" bracket="yes"/>
  2980. </notations>
  2981. </note>
  2982. <note default-x="871.58" default-y="-30.00">
  2983. <pitch>
  2984. <step>G</step>
  2985. <octave>4</octave>
  2986. </pitch>
  2987. <duration>69</duration>
  2988. <voice>1</voice>
  2989. <type>16th</type>
  2990. <time-modification>
  2991. <actual-notes>7</actual-notes>
  2992. <normal-notes>4</normal-notes>
  2993. </time-modification>
  2994. <stem>down</stem>
  2995. <beam number="1">continue</beam>
  2996. <beam number="2">continue</beam>
  2997. </note>
  2998. <note default-x="909.89" default-y="-25.00">
  2999. <pitch>
  3000. <step>A</step>
  3001. <octave>4</octave>
  3002. </pitch>
  3003. <duration>69</duration>
  3004. <voice>1</voice>
  3005. <type>16th</type>
  3006. <time-modification>
  3007. <actual-notes>7</actual-notes>
  3008. <normal-notes>4</normal-notes>
  3009. </time-modification>
  3010. <stem>down</stem>
  3011. <beam number="1">continue</beam>
  3012. <beam number="2">continue</beam>
  3013. </note>
  3014. <note default-x="948.20" default-y="-15.00">
  3015. <pitch>
  3016. <step>C</step>
  3017. <octave>5</octave>
  3018. </pitch>
  3019. <duration>69</duration>
  3020. <voice>1</voice>
  3021. <type>16th</type>
  3022. <time-modification>
  3023. <actual-notes>7</actual-notes>
  3024. <normal-notes>4</normal-notes>
  3025. </time-modification>
  3026. <stem>down</stem>
  3027. <beam number="1">continue</beam>
  3028. <beam number="2">continue</beam>
  3029. </note>
  3030. <note default-x="986.51" default-y="-10.00">
  3031. <pitch>
  3032. <step>D</step>
  3033. <octave>5</octave>
  3034. </pitch>
  3035. <duration>69</duration>
  3036. <voice>1</voice>
  3037. <type>16th</type>
  3038. <time-modification>
  3039. <actual-notes>7</actual-notes>
  3040. <normal-notes>4</normal-notes>
  3041. </time-modification>
  3042. <stem>down</stem>
  3043. <beam number="1">continue</beam>
  3044. <beam number="2">continue</beam>
  3045. </note>
  3046. <note default-x="1024.82" default-y="-5.00">
  3047. <pitch>
  3048. <step>E</step>
  3049. <octave>5</octave>
  3050. </pitch>
  3051. <duration>69</duration>
  3052. <voice>1</voice>
  3053. <type>16th</type>
  3054. <time-modification>
  3055. <actual-notes>7</actual-notes>
  3056. <normal-notes>4</normal-notes>
  3057. </time-modification>
  3058. <stem>down</stem>
  3059. <beam number="1">continue</beam>
  3060. <beam number="2">continue</beam>
  3061. </note>
  3062. <note default-x="1063.12" default-y="-15.00">
  3063. <pitch>
  3064. <step>C</step>
  3065. <octave>5</octave>
  3066. </pitch>
  3067. <duration>69</duration>
  3068. <voice>1</voice>
  3069. <type>16th</type>
  3070. <time-modification>
  3071. <actual-notes>7</actual-notes>
  3072. <normal-notes>4</normal-notes>
  3073. </time-modification>
  3074. <stem>down</stem>
  3075. <beam number="1">end</beam>
  3076. <beam number="2">end</beam>
  3077. <notations>
  3078. <tuplet type="stop"/>
  3079. </notations>
  3080. </note>
  3081. <backup>
  3082. <duration>3</duration>
  3083. </backup>
  3084. <barline location="right">
  3085. <bar-style>light-heavy</bar-style>
  3086. </barline>
  3087. </measure>
  3088. <measure number="38" width="310.04">
  3089. <attributes>
  3090. <divisions>1</divisions>
  3091. </attributes>
  3092. <note default-x="110.18" default-y="-15.00">
  3093. <pitch>
  3094. <step>C</step>
  3095. <octave>5</octave>
  3096. </pitch>
  3097. <duration>4</duration>
  3098. <voice>1</voice>
  3099. <type>whole</type>
  3100. <lyric number="1" default-x="9.90" default-y="-80.00">
  3101. <syllabic>single</syllabic>
  3102. <text>Arpeggios</text>
  3103. </lyric>
  3104. </note>
  3105. </measure>
  3106. <measure number="39" width="263.63">
  3107. <note default-x="37.83" default-y="-40.00">
  3108. <pitch>
  3109. <step>E</step>
  3110. <octave>4</octave>
  3111. </pitch>
  3112. <duration>2</duration>
  3113. <voice>1</voice>
  3114. <type>half</type>
  3115. <stem>up</stem>
  3116. <notations>
  3117. <arpeggiate default-x="-13.81" default-y="-14.55"/>
  3118. </notations>
  3119. <lyric number="1" default-x="6.22" default-y="-80.00">
  3120. <syllabic>single</syllabic>
  3121. <text>Neutral</text>
  3122. </lyric>
  3123. </note>
  3124. <note default-x="37.83" default-y="-30.00">
  3125. <chord/>
  3126. <pitch>
  3127. <step>G</step>
  3128. <octave>4</octave>
  3129. </pitch>
  3130. <duration>2</duration>
  3131. <voice>1</voice>
  3132. <type>half</type>
  3133. <stem>up</stem>
  3134. <notations>
  3135. <arpeggiate default-x="-13.81" default-y="-14.55"/>
  3136. </notations>
  3137. </note>
  3138. <note default-x="37.83" default-y="-20.00">
  3139. <chord/>
  3140. <pitch>
  3141. <step>B</step>
  3142. <octave>4</octave>
  3143. </pitch>
  3144. <duration>2</duration>
  3145. <voice>1</voice>
  3146. <type>half</type>
  3147. <stem>up</stem>
  3148. <notations>
  3149. <arpeggiate default-x="-13.81" default-y="-14.55"/>
  3150. </notations>
  3151. </note>
  3152. <note default-x="149.75" default-y="-40.00">
  3153. <pitch>
  3154. <step>E</step>
  3155. <octave>4</octave>
  3156. </pitch>
  3157. <duration>2</duration>
  3158. <voice>1</voice>
  3159. <type>half</type>
  3160. <stem>up</stem>
  3161. <notations>
  3162. <arpeggiate direction="up" default-x="-18.53" default-y="-14.55"/>
  3163. </notations>
  3164. <lyric number="1" default-x="6.22" default-y="-80.00">
  3165. <syllabic>single</syllabic>
  3166. <text>Up</text>
  3167. </lyric>
  3168. </note>
  3169. <note default-x="149.75" default-y="-30.00">
  3170. <chord/>
  3171. <pitch>
  3172. <step>G</step>
  3173. <octave>4</octave>
  3174. </pitch>
  3175. <duration>2</duration>
  3176. <voice>1</voice>
  3177. <type>half</type>
  3178. <stem>up</stem>
  3179. <notations>
  3180. <arpeggiate direction="up" default-x="-18.53" default-y="-14.55"/>
  3181. </notations>
  3182. </note>
  3183. <note default-x="149.75" default-y="-20.00">
  3184. <chord/>
  3185. <pitch>
  3186. <step>B</step>
  3187. <octave>4</octave>
  3188. </pitch>
  3189. <duration>2</duration>
  3190. <voice>1</voice>
  3191. <type>half</type>
  3192. <stem>up</stem>
  3193. <notations>
  3194. <arpeggiate direction="up" default-x="-18.53" default-y="-14.55"/>
  3195. </notations>
  3196. </note>
  3197. </measure>
  3198. <measure number="40" width="226.96">
  3199. <note default-x="31.27" default-y="-40.00">
  3200. <pitch>
  3201. <step>E</step>
  3202. <octave>4</octave>
  3203. </pitch>
  3204. <duration>2</duration>
  3205. <voice>1</voice>
  3206. <type>half</type>
  3207. <stem>up</stem>
  3208. <notations>
  3209. <arpeggiate direction="down" default-x="-18.53" default-y="-14.55"/>
  3210. </notations>
  3211. <lyric number="1" default-x="6.22" default-y="-80.00">
  3212. <syllabic>single</syllabic>
  3213. <text>Down</text>
  3214. </lyric>
  3215. </note>
  3216. <note default-x="31.27" default-y="-30.00">
  3217. <chord/>
  3218. <pitch>
  3219. <step>G</step>
  3220. <octave>4</octave>
  3221. </pitch>
  3222. <duration>2</duration>
  3223. <voice>1</voice>
  3224. <type>half</type>
  3225. <stem>up</stem>
  3226. <notations>
  3227. <arpeggiate direction="down" default-x="-18.53" default-y="-14.55"/>
  3228. </notations>
  3229. </note>
  3230. <note default-x="31.27" default-y="-20.00">
  3231. <chord/>
  3232. <pitch>
  3233. <step>B</step>
  3234. <octave>4</octave>
  3235. </pitch>
  3236. <duration>2</duration>
  3237. <voice>1</voice>
  3238. <type>half</type>
  3239. <stem>up</stem>
  3240. <notations>
  3241. <arpeggiate direction="down" default-x="-18.53" default-y="-14.55"/>
  3242. </notations>
  3243. </note>
  3244. <note>
  3245. <rest/>
  3246. <duration>2</duration>
  3247. <voice>1</voice>
  3248. <type>half</type>
  3249. </note>
  3250. </measure>
  3251. <measure number="41" width="309.98">
  3252. <note default-x="8.11" default-y="-5.00">
  3253. <grace/>
  3254. <pitch>
  3255. <step>E</step>
  3256. <octave>5</octave>
  3257. </pitch>
  3258. <voice>1</voice>
  3259. <type>eighth</type>
  3260. <stem>up</stem>
  3261. <beam number="1">begin</beam>
  3262. </note>
  3263. <note default-x="30.53" default-y="0.00">
  3264. <grace/>
  3265. <pitch>
  3266. <step>F</step>
  3267. <alter>1</alter>
  3268. <octave>5</octave>
  3269. </pitch>
  3270. <voice>1</voice>
  3271. <type>eighth</type>
  3272. <accidental>sharp</accidental>
  3273. <stem>up</stem>
  3274. <beam number="1">continue</beam>
  3275. </note>
  3276. <note default-x="41.49" default-y="5.00">
  3277. <grace/>
  3278. <pitch>
  3279. <step>G</step>
  3280. <octave>5</octave>
  3281. </pitch>
  3282. <voice>1</voice>
  3283. <type>eighth</type>
  3284. <stem>up</stem>
  3285. <beam number="1">end</beam>
  3286. </note>
  3287. <note default-x="66.66" default-y="-40.00">
  3288. <pitch>
  3289. <step>E</step>
  3290. <octave>4</octave>
  3291. </pitch>
  3292. <duration>2</duration>
  3293. <voice>1</voice>
  3294. <type>half</type>
  3295. <stem>up</stem>
  3296. <notations>
  3297. <arpeggiate default-x="-13.81" default-y="0.45"/>
  3298. </notations>
  3299. </note>
  3300. <note default-x="66.66" default-y="-30.00">
  3301. <chord/>
  3302. <pitch>
  3303. <step>G</step>
  3304. <octave>4</octave>
  3305. </pitch>
  3306. <duration>2</duration>
  3307. <voice>1</voice>
  3308. <type>half</type>
  3309. <stem>up</stem>
  3310. <notations>
  3311. <arpeggiate default-x="-13.81" default-y="0.45"/>
  3312. </notations>
  3313. </note>
  3314. <note default-x="66.66" default-y="-20.00">
  3315. <chord/>
  3316. <pitch>
  3317. <step>B</step>
  3318. <octave>4</octave>
  3319. </pitch>
  3320. <duration>2</duration>
  3321. <voice>1</voice>
  3322. <type>half</type>
  3323. <stem>up</stem>
  3324. <notations>
  3325. <arpeggiate default-x="-13.81" default-y="0.45"/>
  3326. </notations>
  3327. </note>
  3328. <note default-x="66.66" default-y="-5.00">
  3329. <chord/>
  3330. <pitch>
  3331. <step>E</step>
  3332. <octave>5</octave>
  3333. </pitch>
  3334. <duration>2</duration>
  3335. <voice>1</voice>
  3336. <type>half</type>
  3337. <stem>up</stem>
  3338. <notations>
  3339. <arpeggiate default-x="-13.81" default-y="0.45"/>
  3340. </notations>
  3341. </note>
  3342. <attributes>
  3343. <clef>
  3344. <sign>G</sign>
  3345. <line>2</line>
  3346. <clef-octave-change>1</clef-octave-change>
  3347. </clef>
  3348. </attributes>
  3349. <note default-x="182.84" default-y="-40.00">
  3350. <pitch>
  3351. <step>E</step>
  3352. <octave>5</octave>
  3353. </pitch>
  3354. <duration>2</duration>
  3355. <voice>1</voice>
  3356. <type>half</type>
  3357. <stem>up</stem>
  3358. <notations>
  3359. <arpeggiate default-x="-29.22" default-y="0.45"/>
  3360. </notations>
  3361. </note>
  3362. <note default-x="182.84" default-y="-30.00">
  3363. <chord/>
  3364. <pitch>
  3365. <step>G</step>
  3366. <alter>1</alter>
  3367. <octave>5</octave>
  3368. </pitch>
  3369. <duration>2</duration>
  3370. <voice>1</voice>
  3371. <type>half</type>
  3372. <accidental>sharp</accidental>
  3373. <stem>up</stem>
  3374. <notations>
  3375. <arpeggiate default-x="-29.22" default-y="0.45"/>
  3376. </notations>
  3377. </note>
  3378. <note default-x="182.84" default-y="-20.00">
  3379. <chord/>
  3380. <pitch>
  3381. <step>B</step>
  3382. <octave>5</octave>
  3383. </pitch>
  3384. <duration>2</duration>
  3385. <voice>1</voice>
  3386. <type>half</type>
  3387. <stem>up</stem>
  3388. <notations>
  3389. <arpeggiate default-x="-29.22" default-y="0.45"/>
  3390. </notations>
  3391. </note>
  3392. <note default-x="182.84" default-y="-5.00">
  3393. <chord/>
  3394. <pitch>
  3395. <step>E</step>
  3396. <octave>6</octave>
  3397. </pitch>
  3398. <duration>2</duration>
  3399. <voice>1</voice>
  3400. <type>half</type>
  3401. <stem>up</stem>
  3402. <notations>
  3403. <arpeggiate default-x="-29.22" default-y="0.45"/>
  3404. </notations>
  3405. </note>
  3406. <barline location="right">
  3407. <bar-style>light-heavy</bar-style>
  3408. </barline>
  3409. </measure>
  3410. </part>
  3411. </score-partwise>