xml.xml 60 KB

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