Schubert_An_die_Musik.xml 239 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516
  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. <identification>
  5. <rights>Franz Schubert: An die Musik
  6. (Mélisande on http://www.musescore.com)</rights>
  7. <encoding>
  8. <software>MuseScore 2.3.1</software>
  9. <encoding-date>2018-07-24</encoding-date>
  10. <supports element="accidental" type="yes"/>
  11. <supports element="beam" type="yes"/>
  12. <supports element="print" attribute="new-page" type="yes" value="yes"/>
  13. <supports element="print" attribute="new-system" type="yes" value="yes"/>
  14. <supports element="stem" type="yes"/>
  15. </encoding>
  16. <source>http://musescore.com/score/547256</source>
  17. </identification>
  18. <defaults>
  19. <scaling>
  20. <millimeters>7.056</millimeters>
  21. <tenths>40</tenths>
  22. </scaling>
  23. <page-layout>
  24. <page-height>1683.67</page-height>
  25. <page-width>1190.48</page-width>
  26. <page-margins type="even">
  27. <left-margin>56.6893</left-margin>
  28. <right-margin>56.6893</right-margin>
  29. <top-margin>56.6893</top-margin>
  30. <bottom-margin>113.379</bottom-margin>
  31. </page-margins>
  32. <page-margins type="odd">
  33. <left-margin>56.6893</left-margin>
  34. <right-margin>56.6893</right-margin>
  35. <top-margin>56.6893</top-margin>
  36. <bottom-margin>113.379</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.238" default-y="1626.98" justify="center" valign="top" font-family="Times New Roman" font-size="24">An die Musik</credit-words>
  44. </credit>
  45. <credit page="1">
  46. <credit-words default-x="1133.79" default-y="1526.98" justify="right" valign="bottom" font-family="Times New Roman" font-size="12">Franz Schubert</credit-words>
  47. </credit>
  48. <credit page="1">
  49. <credit-words default-x="595.238" default-y="113.379" justify="center" valign="bottom" font-size="8">Franz Schubert: An die Musik
  50. (Mélisande on http://www.musescore.com)</credit-words>
  51. </credit>
  52. <part-list>
  53. <score-part id="P1">
  54. <part-name>Voice</part-name>
  55. <part-abbreviation>Voice
  56. </part-abbreviation>
  57. <score-instrument id="P1-I1">
  58. <instrument-name>Flute</instrument-name>
  59. </score-instrument>
  60. <midi-device id="P1-I1" port="1"></midi-device>
  61. <midi-instrument id="P1-I1">
  62. <midi-channel>1</midi-channel>
  63. <midi-program>74</midi-program>
  64. <volume>78.7402</volume>
  65. <pan>0</pan>
  66. </midi-instrument>
  67. </score-part>
  68. <part-group type="start" number="1">
  69. <group-symbol>brace</group-symbol>
  70. </part-group>
  71. <score-part id="P2">
  72. <part-name>Piano</part-name>
  73. <part-abbreviation>Pno.</part-abbreviation>
  74. <score-instrument id="P2-I1">
  75. <instrument-name>Piano</instrument-name>
  76. </score-instrument>
  77. <midi-device id="P2-I1" port="1"></midi-device>
  78. <midi-instrument id="P2-I1">
  79. <midi-channel>2</midi-channel>
  80. <midi-program>1</midi-program>
  81. <volume>78.7402</volume>
  82. <pan>0</pan>
  83. </midi-instrument>
  84. </score-part>
  85. <score-part id="P3">
  86. <part-name print-object="no">Piano</part-name>
  87. <score-instrument id="P3-I1">
  88. <instrument-name>Piano</instrument-name>
  89. </score-instrument>
  90. <midi-device id="P3-I1" port="1"></midi-device>
  91. <midi-instrument id="P3-I1">
  92. <midi-channel>3</midi-channel>
  93. <midi-program>1</midi-program>
  94. <volume>78.7402</volume>
  95. <pan>0</pan>
  96. </midi-instrument>
  97. </score-part>
  98. <part-group type="stop" number="1"/>
  99. </part-list>
  100. <part id="P1">
  101. <measure number="1" width="368.47">
  102. <print>
  103. <system-layout>
  104. <system-margins>
  105. <left-margin>86.66</left-margin>
  106. <right-margin>0.00</right-margin>
  107. </system-margins>
  108. <top-system-distance>160.00</top-system-distance>
  109. </system-layout>
  110. </print>
  111. <attributes>
  112. <divisions>2</divisions>
  113. <key>
  114. <fifths>2</fifths>
  115. <mode>major</mode>
  116. </key>
  117. <time symbol="cut">
  118. <beats>2</beats>
  119. <beat-type>2</beat-type>
  120. </time>
  121. <clef>
  122. <sign>G</sign>
  123. <line>2</line>
  124. </clef>
  125. </attributes>
  126. <direction placement="above">
  127. <direction-type>
  128. <words default-x="-35.74" default-y="40.00" relative-x="28.64" relative-y="-15.00" font-weight="bold" font-family="Times New Roman" font-size="12">Mäßig</words>
  129. </direction-type>
  130. <sound tempo="112"/>
  131. </direction>
  132. <note>
  133. <rest/>
  134. <duration>8</duration>
  135. <voice>1</voice>
  136. <type>whole</type>
  137. </note>
  138. </measure>
  139. <measure number="2" width="330.62">
  140. <note>
  141. <rest/>
  142. <duration>8</duration>
  143. <voice>1</voice>
  144. <type>whole</type>
  145. </note>
  146. </measure>
  147. <measure number="3" width="291.36">
  148. <barline location="left">
  149. <bar-style>heavy-light</bar-style>
  150. <repeat direction="forward"/>
  151. </barline>
  152. <note>
  153. <rest/>
  154. <duration>2</duration>
  155. <voice>1</voice>
  156. <type>quarter</type>
  157. </note>
  158. <note default-x="82.14" default-y="-25.00" dynamics="141.11">
  159. <pitch>
  160. <step>A</step>
  161. <octave>4</octave>
  162. </pitch>
  163. <duration>2</duration>
  164. <voice>1</voice>
  165. <type>quarter</type>
  166. <stem>up</stem>
  167. <lyric number="1" default-x="6.58" default-y="-80.00">
  168. <syllabic>single</syllabic>
  169. <text font-family="Times New Roman">Du</text>
  170. </lyric>
  171. <lyric number="2" default-x="6.58" default-y="-106.00">
  172. <syllabic>single</syllabic>
  173. <text font-family="Times New Roman">Oft</text>
  174. </lyric>
  175. </note>
  176. <note default-x="151.35" default-y="-10.00" dynamics="141.11">
  177. <pitch>
  178. <step>D</step>
  179. <octave>5</octave>
  180. </pitch>
  181. <duration>2</duration>
  182. <voice>1</voice>
  183. <type>quarter</type>
  184. <stem>down</stem>
  185. <lyric number="1" default-x="6.58" default-y="-80.00">
  186. <syllabic>begin</syllabic>
  187. <text font-family="Times New Roman">hol</text>
  188. </lyric>
  189. <lyric number="2" default-x="6.58" default-y="-106.00">
  190. <syllabic>single</syllabic>
  191. <text font-family="Times New Roman">hat</text>
  192. </lyric>
  193. </note>
  194. <note default-x="220.55" default-y="-10.00" dynamics="141.11">
  195. <pitch>
  196. <step>D</step>
  197. <octave>5</octave>
  198. </pitch>
  199. <duration>2</duration>
  200. <voice>1</voice>
  201. <type>quarter</type>
  202. <stem>down</stem>
  203. <lyric number="1" default-x="6.58" default-y="-80.00">
  204. <syllabic>end</syllabic>
  205. <text font-family="Times New Roman">de</text>
  206. </lyric>
  207. <lyric number="2" default-x="6.58" default-y="-106.00">
  208. <syllabic>single</syllabic>
  209. <text font-family="Times New Roman">ein</text>
  210. </lyric>
  211. </note>
  212. </measure>
  213. <measure number="4" width="372.07">
  214. <print new-system="yes">
  215. <system-layout>
  216. <system-margins>
  217. <left-margin>86.22</left-margin>
  218. <right-margin>0.00</right-margin>
  219. </system-margins>
  220. <system-distance>150.00</system-distance>
  221. </system-layout>
  222. </print>
  223. <note default-x="96.20" default-y="-35.00">
  224. <pitch>
  225. <step>F</step>
  226. <alter>1</alter>
  227. <octave>4</octave>
  228. </pitch>
  229. <duration>6</duration>
  230. <voice>1</voice>
  231. <type>half</type>
  232. <dot/>
  233. <stem>up</stem>
  234. <lyric number="1" default-x="7.97" default-y="-80.00">
  235. <syllabic>single</syllabic>
  236. <text font-family="Times New Roman">Kunst,</text>
  237. </lyric>
  238. <lyric number="2" default-x="6.22" default-y="-106.00">
  239. <syllabic>begin</syllabic>
  240. <text font-family="Times New Roman">Seuf</text>
  241. </lyric>
  242. </note>
  243. <note default-x="302.00" default-y="-20.00" dynamics="141.11">
  244. <pitch>
  245. <step>B</step>
  246. <octave>4</octave>
  247. </pitch>
  248. <duration>2</duration>
  249. <voice>1</voice>
  250. <type>quarter</type>
  251. <stem>down</stem>
  252. <lyric number="1" default-x="6.58" default-y="-80.00">
  253. <syllabic>single</syllabic>
  254. <text font-family="Times New Roman">in</text>
  255. </lyric>
  256. <lyric number="2" default-x="8.33" default-y="-106.00">
  257. <syllabic>end</syllabic>
  258. <text font-family="Times New Roman">zer,</text>
  259. </lyric>
  260. </note>
  261. </measure>
  262. <measure number="5" width="323.31">
  263. <note default-x="8.80" default-y="-20.00">
  264. <grace/>
  265. <pitch>
  266. <step>B</step>
  267. <octave>4</octave>
  268. </pitch>
  269. <voice>1</voice>
  270. <type>eighth</type>
  271. <stem>up</stem>
  272. </note>
  273. <note default-x="28.74" default-y="-45.00">
  274. <pitch>
  275. <step>D</step>
  276. <octave>4</octave>
  277. </pitch>
  278. <duration>3</duration>
  279. <voice>1</voice>
  280. <type>quarter</type>
  281. <dot/>
  282. <stem>up</stem>
  283. <lyric number="1" default-x="6.58" default-y="-80.00">
  284. <syllabic>single</syllabic>
  285. <text font-family="Times New Roman">wie</text>
  286. </lyric>
  287. <lyric number="2" default-x="6.58" default-y="-106.00">
  288. <syllabic>begin</syllabic>
  289. <text font-family="Times New Roman">dei</text>
  290. </lyric>
  291. </note>
  292. <note default-x="134.48" default-y="-45.00" dynamics="141.11">
  293. <pitch>
  294. <step>D</step>
  295. <octave>4</octave>
  296. </pitch>
  297. <duration>1</duration>
  298. <voice>1</voice>
  299. <type>eighth</type>
  300. <stem>up</stem>
  301. <lyric number="1" default-x="6.58" default-y="-80.00">
  302. <syllabic>single</syllabic>
  303. <text font-family="Times New Roman">viel</text>
  304. </lyric>
  305. <lyric number="2" default-x="6.58" default-y="-106.00">
  306. <syllabic>end</syllabic>
  307. <text font-family="Times New Roman">ner</text>
  308. </lyric>
  309. </note>
  310. <note default-x="169.73" default-y="-35.00" dynamics="141.11">
  311. <pitch>
  312. <step>F</step>
  313. <alter>1</alter>
  314. <octave>4</octave>
  315. </pitch>
  316. <duration>1</duration>
  317. <voice>1</voice>
  318. <type>eighth</type>
  319. <stem>up</stem>
  320. <beam number="1">begin</beam>
  321. <lyric number="1" default-x="17.54" default-y="-80.00">
  322. <syllabic>begin</syllabic>
  323. <text font-family="Times New Roman">grau</text>
  324. </lyric>
  325. <lyric number="2" default-x="20.12" default-y="-106.00">
  326. <syllabic>single</syllabic>
  327. <text font-family="Times New Roman">Harf'</text>
  328. <extend/>
  329. </lyric>
  330. </note>
  331. <note default-x="215.97" default-y="-40.00" dynamics="141.11">
  332. <pitch>
  333. <step>E</step>
  334. <octave>4</octave>
  335. </pitch>
  336. <duration>1</duration>
  337. <voice>1</voice>
  338. <type>eighth</type>
  339. <stem>up</stem>
  340. <beam number="1">end</beam>
  341. </note>
  342. <note default-x="251.21" default-y="-45.00" dynamics="141.11">
  343. <pitch>
  344. <step>D</step>
  345. <octave>4</octave>
  346. </pitch>
  347. <duration>1</duration>
  348. <voice>1</voice>
  349. <type>eighth</type>
  350. <stem>up</stem>
  351. <beam number="1">begin</beam>
  352. <lyric number="1" default-x="8.38" default-y="-80.00">
  353. <syllabic>end</syllabic>
  354. <text font-family="Times New Roman">en</text>
  355. <extend/>
  356. </lyric>
  357. <lyric number="2" default-x="11.44" default-y="-106.00">
  358. <syllabic>begin</syllabic>
  359. <text font-family="Times New Roman">ent</text>
  360. </lyric>
  361. </note>
  362. <note default-x="286.46" default-y="-40.00" dynamics="141.11">
  363. <pitch>
  364. <step>E</step>
  365. <octave>4</octave>
  366. </pitch>
  367. <duration>1</duration>
  368. <voice>1</voice>
  369. <type>eighth</type>
  370. <stem>up</stem>
  371. <beam number="1">end</beam>
  372. </note>
  373. </measure>
  374. <measure number="6" width="295.49">
  375. <note default-x="25.60" default-y="-35.00" dynamics="141.11">
  376. <pitch>
  377. <step>F</step>
  378. <alter>1</alter>
  379. <octave>4</octave>
  380. </pitch>
  381. <duration>2</duration>
  382. <voice>1</voice>
  383. <type>quarter</type>
  384. <stem>up</stem>
  385. <lyric number="1" default-x="6.58" default-y="-80.00">
  386. <syllabic>begin</syllabic>
  387. <text font-family="Times New Roman">Stun</text>
  388. </lyric>
  389. <lyric number="2" default-x="6.58" default-y="-106.00">
  390. <syllabic>middle</syllabic>
  391. <text font-family="Times New Roman">flo</text>
  392. </lyric>
  393. </note>
  394. <note default-x="92.67" default-y="-45.00" dynamics="141.11">
  395. <pitch>
  396. <step>D</step>
  397. <octave>4</octave>
  398. </pitch>
  399. <duration>2</duration>
  400. <voice>1</voice>
  401. <type>quarter</type>
  402. <stem>up</stem>
  403. <lyric number="1" default-x="8.33" default-y="-80.00">
  404. <syllabic>end</syllabic>
  405. <text font-family="Times New Roman">den,</text>
  406. </lyric>
  407. <lyric number="2" default-x="6.58" default-y="-106.00">
  408. <syllabic>end</syllabic>
  409. <text font-family="Times New Roman">ssen</text>
  410. </lyric>
  411. </note>
  412. <note>
  413. <rest/>
  414. <duration>4</duration>
  415. <voice>1</voice>
  416. <type>half</type>
  417. </note>
  418. </measure>
  419. <measure number="7" width="349.82">
  420. <print new-system="yes">
  421. <system-layout>
  422. <system-margins>
  423. <left-margin>86.22</left-margin>
  424. <right-margin>0.00</right-margin>
  425. </system-margins>
  426. <system-distance>150.00</system-distance>
  427. </system-layout>
  428. </print>
  429. <note>
  430. <rest/>
  431. <duration>2</duration>
  432. <voice>1</voice>
  433. <type>quarter</type>
  434. </note>
  435. <note default-x="144.66" default-y="-25.00" dynamics="141.11">
  436. <pitch>
  437. <step>A</step>
  438. <octave>4</octave>
  439. </pitch>
  440. <duration>2</duration>
  441. <voice>1</voice>
  442. <type>quarter</type>
  443. <stem>up</stem>
  444. <lyric number="1" default-x="6.58" default-y="-80.00">
  445. <syllabic>single</syllabic>
  446. <text font-family="Times New Roman">wo</text>
  447. </lyric>
  448. <lyric number="2" default-x="6.58" default-y="-106.00">
  449. <syllabic>single</syllabic>
  450. <text font-family="Times New Roman">ein</text>
  451. </lyric>
  452. </note>
  453. <note default-x="212.51" default-y="-20.00" dynamics="141.11">
  454. <pitch>
  455. <step>B</step>
  456. <octave>4</octave>
  457. </pitch>
  458. <duration>2</duration>
  459. <voice>1</voice>
  460. <type>quarter</type>
  461. <stem>down</stem>
  462. <lyric number="1" default-x="6.58" default-y="-80.00">
  463. <syllabic>single</syllabic>
  464. <text font-family="Times New Roman">mich</text>
  465. </lyric>
  466. <lyric number="2" default-x="6.58" default-y="-106.00">
  467. <syllabic>begin</syllabic>
  468. <text font-family="Times New Roman">sü</text>
  469. </lyric>
  470. </note>
  471. <note default-x="280.36" default-y="-20.00" dynamics="141.11">
  472. <pitch>
  473. <step>B</step>
  474. <octave>4</octave>
  475. </pitch>
  476. <duration>2</duration>
  477. <voice>1</voice>
  478. <type>quarter</type>
  479. <stem>down</stem>
  480. <lyric number="1" default-x="6.58" default-y="-80.00">
  481. <syllabic>single</syllabic>
  482. <text font-family="Times New Roman">des</text>
  483. </lyric>
  484. <lyric number="2" default-x="6.58" default-y="-106.00">
  485. <syllabic>end</syllabic>
  486. <text font-family="Times New Roman">sser</text>
  487. </lyric>
  488. </note>
  489. </measure>
  490. <measure number="8" width="295.18">
  491. <note default-x="18.86" default-y="-50.00">
  492. <pitch>
  493. <step>C</step>
  494. <alter>1</alter>
  495. <octave>4</octave>
  496. </pitch>
  497. <duration>3</duration>
  498. <voice>1</voice>
  499. <type>quarter</type>
  500. <dot/>
  501. <stem>up</stem>
  502. <lyric number="1" default-x="6.58" default-y="-80.00">
  503. <syllabic>begin</syllabic>
  504. <text font-family="Times New Roman">Le</text>
  505. </lyric>
  506. <lyric number="2" default-x="6.58" default-y="-106.00">
  507. <syllabic>begin</syllabic>
  508. <text font-family="Times New Roman">hei</text>
  509. </lyric>
  510. </note>
  511. <note default-x="120.21" default-y="-50.00" dynamics="141.11">
  512. <pitch>
  513. <step>C</step>
  514. <alter>1</alter>
  515. <octave>4</octave>
  516. </pitch>
  517. <duration>1</duration>
  518. <voice>1</voice>
  519. <type>eighth</type>
  520. <stem>up</stem>
  521. <lyric number="1" default-x="6.58" default-y="-80.00">
  522. <syllabic>end</syllabic>
  523. <text font-family="Times New Roman">bens</text>
  524. </lyric>
  525. <lyric number="2" default-x="6.58" default-y="-106.00">
  526. <syllabic>middle</syllabic>
  527. <text font-family="Times New Roman">li</text>
  528. </lyric>
  529. </note>
  530. <note default-x="158.43" default-y="-45.00">
  531. <pitch>
  532. <step>D</step>
  533. <octave>4</octave>
  534. </pitch>
  535. <duration>3</duration>
  536. <voice>1</voice>
  537. <type>quarter</type>
  538. <dot/>
  539. <stem>up</stem>
  540. <lyric number="1" default-x="6.58" default-y="-80.00">
  541. <syllabic>begin</syllabic>
  542. <text font-family="Times New Roman">wil</text>
  543. </lyric>
  544. <lyric number="2" default-x="6.58" default-y="-106.00">
  545. <syllabic>end</syllabic>
  546. <text font-family="Times New Roman">ger</text>
  547. </lyric>
  548. </note>
  549. <note default-x="259.79" default-y="-45.00" dynamics="141.11">
  550. <pitch>
  551. <step>D</step>
  552. <octave>4</octave>
  553. </pitch>
  554. <duration>1</duration>
  555. <voice>1</voice>
  556. <type>eighth</type>
  557. <stem>up</stem>
  558. <lyric number="1" default-x="6.58" default-y="-80.00">
  559. <syllabic>end</syllabic>
  560. <text font-family="Times New Roman">der</text>
  561. </lyric>
  562. <lyric number="2" default-x="6.58" default-y="-106.00">
  563. <syllabic>begin</syllabic>
  564. <text font-family="Times New Roman">Ac</text>
  565. </lyric>
  566. </note>
  567. </measure>
  568. <measure number="9" width="345.88">
  569. <note default-x="14.00" default-y="-35.00" dynamics="141.11">
  570. <pitch>
  571. <step>F</step>
  572. <alter>1</alter>
  573. <octave>4</octave>
  574. </pitch>
  575. <duration>1</duration>
  576. <voice>1</voice>
  577. <type>eighth</type>
  578. <stem>up</stem>
  579. <beam number="1">begin</beam>
  580. <lyric number="1" default-x="21.82" default-y="-80.00">
  581. <syllabic>single</syllabic>
  582. <text font-family="Times New Roman">Kreis</text>
  583. <extend/>
  584. </lyric>
  585. <lyric number="2" default-x="17.54" default-y="-106.00">
  586. <syllabic>end</syllabic>
  587. <text font-family="Times New Roman">cord</text>
  588. <extend/>
  589. </lyric>
  590. </note>
  591. <note default-x="63.64" default-y="-40.00" dynamics="141.11">
  592. <pitch>
  593. <step>E</step>
  594. <octave>4</octave>
  595. </pitch>
  596. <duration>1</duration>
  597. <voice>1</voice>
  598. <type>eighth</type>
  599. <stem>up</stem>
  600. <beam number="1">end</beam>
  601. </note>
  602. <note default-x="103.73" default-y="-45.00" dynamics="141.11">
  603. <pitch>
  604. <step>D</step>
  605. <octave>4</octave>
  606. </pitch>
  607. <duration>1</duration>
  608. <voice>1</voice>
  609. <type>eighth</type>
  610. <stem>up</stem>
  611. <beam number="1">begin</beam>
  612. <lyric number="1" default-x="12.06" default-y="-80.00">
  613. <syllabic>begin</syllabic>
  614. <text font-family="Times New Roman">um</text>
  615. </lyric>
  616. <lyric number="2" default-x="14.50" default-y="-106.00">
  617. <syllabic>single</syllabic>
  618. <text font-family="Times New Roman">von</text>
  619. <extend/>
  620. </lyric>
  621. </note>
  622. <note default-x="143.82" default-y="-40.00" dynamics="141.11">
  623. <pitch>
  624. <step>E</step>
  625. <octave>4</octave>
  626. </pitch>
  627. <duration>1</duration>
  628. <voice>1</voice>
  629. <type>eighth</type>
  630. <stem>up</stem>
  631. <beam number="1">end</beam>
  632. </note>
  633. <note default-x="183.55" default-y="-35.00" dynamics="141.11">
  634. <pitch>
  635. <step>F</step>
  636. <alter>1</alter>
  637. <octave>4</octave>
  638. </pitch>
  639. <duration>4</duration>
  640. <voice>1</voice>
  641. <type>half</type>
  642. <stem>up</stem>
  643. <lyric number="1" default-x="7.97" default-y="-80.00">
  644. <syllabic>end</syllabic>
  645. <text font-family="Times New Roman">strickt,</text>
  646. </lyric>
  647. <lyric number="2" default-x="7.97" default-y="-106.00">
  648. <syllabic>single</syllabic>
  649. <text font-family="Times New Roman">dir,</text>
  650. </lyric>
  651. </note>
  652. </measure>
  653. <measure number="10" width="364.42">
  654. <print new-page="yes">
  655. <system-layout>
  656. <system-margins>
  657. <left-margin>86.22</left-margin>
  658. <right-margin>0.00</right-margin>
  659. </system-margins>
  660. <top-system-distance>50.00</top-system-distance>
  661. </system-layout>
  662. </print>
  663. <note>
  664. <rest/>
  665. <duration>8</duration>
  666. <voice>1</voice>
  667. <type>whole</type>
  668. </note>
  669. </measure>
  670. <measure number="11" width="312.51">
  671. <note>
  672. <rest/>
  673. <duration>2</duration>
  674. <voice>1</voice>
  675. <type>quarter</type>
  676. </note>
  677. <note default-x="87.05" default-y="-10.00" dynamics="141.11">
  678. <pitch>
  679. <step>D</step>
  680. <octave>5</octave>
  681. </pitch>
  682. <duration>2</duration>
  683. <voice>1</voice>
  684. <type>quarter</type>
  685. <stem>down</stem>
  686. <lyric number="1" default-x="6.58" default-y="-80.00">
  687. <syllabic>single</syllabic>
  688. <text font-family="Times New Roman">hast</text>
  689. </lyric>
  690. <lyric number="2" default-x="6.58" default-y="-106.00">
  691. <syllabic>single</syllabic>
  692. <text font-family="Times New Roman">den</text>
  693. </lyric>
  694. </note>
  695. <note default-x="161.16" default-y="-5.00">
  696. <pitch>
  697. <step>E</step>
  698. <octave>5</octave>
  699. </pitch>
  700. <duration>3</duration>
  701. <voice>1</voice>
  702. <type>quarter</type>
  703. <dot/>
  704. <stem>down</stem>
  705. <lyric number="1" default-x="6.58" default-y="-80.00">
  706. <syllabic>single</syllabic>
  707. <text font-family="Times New Roman">du</text>
  708. </lyric>
  709. <lyric number="2" default-x="6.58" default-y="-106.00">
  710. <syllabic>begin</syllabic>
  711. <text font-family="Times New Roman">Him</text>
  712. </lyric>
  713. </note>
  714. <note default-x="272.33" default-y="-30.00" dynamics="141.11">
  715. <pitch>
  716. <step>G</step>
  717. <octave>4</octave>
  718. </pitch>
  719. <duration>1</duration>
  720. <voice>1</voice>
  721. <type>eighth</type>
  722. <stem>up</stem>
  723. <lyric number="1" default-x="6.58" default-y="-80.00">
  724. <syllabic>single</syllabic>
  725. <text font-family="Times New Roman">mein</text>
  726. </lyric>
  727. <lyric number="2" default-x="6.58" default-y="-106.00">
  728. <syllabic>end</syllabic>
  729. <text font-family="Times New Roman">mel</text>
  730. </lyric>
  731. </note>
  732. </measure>
  733. <measure number="12" width="313.95">
  734. <note default-x="14.00" default-y="-35.00" dynamics="141.11">
  735. <pitch>
  736. <step>F</step>
  737. <alter>1</alter>
  738. <octave>4</octave>
  739. </pitch>
  740. <duration>2</duration>
  741. <voice>1</voice>
  742. <type>quarter</type>
  743. <stem>up</stem>
  744. <notations>
  745. <slur type="start" number="1"/>
  746. </notations>
  747. <lyric number="1" default-x="19.36" default-y="-80.00">
  748. <syllabic>single</syllabic>
  749. <text font-family="Times New Roman">Herz</text>
  750. <extend/>
  751. </lyric>
  752. <lyric number="2" default-x="18.92" default-y="-106.00">
  753. <syllabic>begin</syllabic>
  754. <text font-family="Times New Roman">bess'</text>
  755. </lyric>
  756. </note>
  757. <note default-x="88.23" default-y="-25.00" dynamics="141.11">
  758. <pitch>
  759. <step>A</step>
  760. <octave>4</octave>
  761. </pitch>
  762. <duration>4</duration>
  763. <voice>1</voice>
  764. <type>half</type>
  765. <stem>up</stem>
  766. <notations>
  767. <slur type="stop" number="1"/>
  768. </notations>
  769. </note>
  770. <note default-x="237.76" default-y="-20.00" dynamics="141.11">
  771. <pitch>
  772. <step>B</step>
  773. <octave>4</octave>
  774. </pitch>
  775. <duration>1</duration>
  776. <voice>1</voice>
  777. <type>eighth</type>
  778. <stem>down</stem>
  779. <beam number="1">begin</beam>
  780. <lyric number="1" default-x="8.38" default-y="-80.00">
  781. <syllabic>single</syllabic>
  782. <text font-family="Times New Roman">zu</text>
  783. <extend/>
  784. </lyric>
  785. <lyric number="2" default-x="10.20" default-y="-106.00">
  786. <syllabic>end</syllabic>
  787. <text font-family="Times New Roman">rer</text>
  788. <extend/>
  789. </lyric>
  790. </note>
  791. <note default-x="275.05" default-y="-15.00" dynamics="141.11">
  792. <pitch>
  793. <step>C</step>
  794. <alter>1</alter>
  795. <octave>5</octave>
  796. </pitch>
  797. <duration>1</duration>
  798. <voice>1</voice>
  799. <type>eighth</type>
  800. <stem>down</stem>
  801. <beam number="1">end</beam>
  802. </note>
  803. </measure>
  804. <measure number="13" width="374.36">
  805. <print new-system="yes">
  806. <system-layout>
  807. <system-margins>
  808. <left-margin>86.22</left-margin>
  809. <right-margin>0.00</right-margin>
  810. </system-margins>
  811. <system-distance>141.87</system-distance>
  812. </system-layout>
  813. </print>
  814. <note default-x="85.76" default-y="-10.00">
  815. <pitch>
  816. <step>D</step>
  817. <octave>5</octave>
  818. </pitch>
  819. <duration>3</duration>
  820. <voice>1</voice>
  821. <type>quarter</type>
  822. <dot/>
  823. <stem>down</stem>
  824. <lyric number="1" default-x="6.58" default-y="-80.00">
  825. <syllabic>begin</syllabic>
  826. <text font-family="Times New Roman">war</text>
  827. </lyric>
  828. <lyric number="2" default-x="6.58" default-y="-106.00">
  829. <syllabic>begin</syllabic>
  830. <text font-family="Times New Roman">Zei</text>
  831. </lyric>
  832. </note>
  833. <note default-x="190.73" default-y="0.00" dynamics="141.11">
  834. <pitch>
  835. <step>F</step>
  836. <alter>1</alter>
  837. <octave>5</octave>
  838. </pitch>
  839. <duration>1</duration>
  840. <voice>1</voice>
  841. <type>eighth</type>
  842. <stem>down</stem>
  843. <lyric number="1" default-x="6.58" default-y="-80.00">
  844. <syllabic>end</syllabic>
  845. <text font-family="Times New Roman">mer</text>
  846. </lyric>
  847. <lyric number="2" default-x="6.58" default-y="-106.00">
  848. <syllabic>end</syllabic>
  849. <text font-family="Times New Roman">ten</text>
  850. </lyric>
  851. </note>
  852. <note default-x="232.77" default-y="-5.00" dynamics="141.11">
  853. <pitch>
  854. <step>E</step>
  855. <octave>5</octave>
  856. </pitch>
  857. <duration>1</duration>
  858. <voice>1</voice>
  859. <type>eighth</type>
  860. <stem>down</stem>
  861. <beam number="1">begin</beam>
  862. <lyric number="1" default-x="7.78" default-y="-80.00">
  863. <syllabic>single</syllabic>
  864. <text font-family="Times New Roman">Lieb'</text>
  865. </lyric>
  866. <lyric number="2" default-x="13.28" default-y="-106.00">
  867. <syllabic>single</syllabic>
  868. <text font-family="Times New Roman">mir</text>
  869. <extend/>
  870. </lyric>
  871. </note>
  872. <note default-x="267.76" default-y="-15.00" dynamics="141.11">
  873. <pitch>
  874. <step>C</step>
  875. <alter>1</alter>
  876. <octave>5</octave>
  877. </pitch>
  878. <duration>1</duration>
  879. <voice>1</voice>
  880. <type>eighth</type>
  881. <stem>down</stem>
  882. <beam number="1">end</beam>
  883. </note>
  884. <note default-x="302.74" default-y="-25.00" dynamics="141.11">
  885. <pitch>
  886. <step>A</step>
  887. <octave>4</octave>
  888. </pitch>
  889. <duration>1</duration>
  890. <voice>1</voice>
  891. <type>eighth</type>
  892. <stem>up</stem>
  893. <beam number="1">begin</beam>
  894. <lyric number="1" default-x="11.44" default-y="-80.00">
  895. <syllabic>begin</syllabic>
  896. <text font-family="Times New Roman">ent</text>
  897. </lyric>
  898. <lyric number="2" default-x="6.54" default-y="-106.00">
  899. <syllabic>begin</syllabic>
  900. <text font-family="Times New Roman">er</text>
  901. </lyric>
  902. </note>
  903. <note default-x="337.73" default-y="-30.00" dynamics="141.11">
  904. <pitch>
  905. <step>G</step>
  906. <octave>4</octave>
  907. </pitch>
  908. <duration>1</duration>
  909. <voice>1</voice>
  910. <type>eighth</type>
  911. <stem>up</stem>
  912. <beam number="1">end</beam>
  913. </note>
  914. </measure>
  915. <measure number="14" width="323.63">
  916. <note default-x="8.80" default-y="-30.00">
  917. <grace/>
  918. <pitch>
  919. <step>G</step>
  920. <octave>4</octave>
  921. </pitch>
  922. <voice>1</voice>
  923. <type>eighth</type>
  924. <stem>up</stem>
  925. </note>
  926. <note default-x="28.74" default-y="-35.00" dynamics="141.11">
  927. <pitch>
  928. <step>F</step>
  929. <alter>1</alter>
  930. <octave>4</octave>
  931. </pitch>
  932. <duration>2</duration>
  933. <voice>1</voice>
  934. <type>quarter</type>
  935. <stem>up</stem>
  936. <lyric number="1" default-x="6.58" default-y="-80.00">
  937. <syllabic>middle</syllabic>
  938. <text font-family="Times New Roman">zun</text>
  939. </lyric>
  940. <lyric number="2" default-x="6.58" default-y="-106.00">
  941. <syllabic>middle</syllabic>
  942. <text font-family="Times New Roman">schlo</text>
  943. </lyric>
  944. </note>
  945. <note default-x="101.96" default-y="-35.00" dynamics="141.11">
  946. <pitch>
  947. <step>F</step>
  948. <alter>1</alter>
  949. <octave>4</octave>
  950. </pitch>
  951. <duration>2</duration>
  952. <voice>1</voice>
  953. <type>quarter</type>
  954. <stem>up</stem>
  955. <lyric number="1" default-x="8.33" default-y="-80.00">
  956. <syllabic>end</syllabic>
  957. <text font-family="Times New Roman">den,</text>
  958. </lyric>
  959. <lyric number="2" default-x="8.33" default-y="-106.00">
  960. <syllabic>end</syllabic>
  961. <text font-family="Times New Roman">ssen,</text>
  962. </lyric>
  963. </note>
  964. <note>
  965. <rest/>
  966. <duration>2</duration>
  967. <voice>1</voice>
  968. <type>quarter</type>
  969. </note>
  970. <note default-x="248.39" default-y="-25.00" dynamics="141.11">
  971. <pitch>
  972. <step>A</step>
  973. <octave>4</octave>
  974. </pitch>
  975. <duration>2</duration>
  976. <voice>1</voice>
  977. <type>quarter</type>
  978. <stem>up</stem>
  979. <lyric number="1" default-x="6.58" default-y="-80.00">
  980. <syllabic>single</syllabic>
  981. <text font-family="Times New Roman">hast</text>
  982. </lyric>
  983. <lyric number="2" default-x="6.58" default-y="-106.00">
  984. <syllabic>single</syllabic>
  985. <text font-family="Times New Roman">du</text>
  986. </lyric>
  987. </note>
  988. </measure>
  989. <measure number="15" width="292.88">
  990. <note default-x="27.42" default-y="-20.00">
  991. <pitch>
  992. <step>B</step>
  993. <octave>4</octave>
  994. </pitch>
  995. <duration>3</duration>
  996. <voice>1</voice>
  997. <type>quarter</type>
  998. <dot/>
  999. <stem>down</stem>
  1000. <lyric number="1" default-x="6.58" default-y="-80.00">
  1001. <syllabic>single</syllabic>
  1002. <text font-family="Times New Roman">mich</text>
  1003. </lyric>
  1004. <lyric number="2" default-x="6.58" default-y="-106.00">
  1005. <syllabic>begin</syllabic>
  1006. <text font-family="Times New Roman">hol</text>
  1007. </lyric>
  1008. </note>
  1009. <note default-x="123.08" default-y="-20.00" dynamics="141.11">
  1010. <pitch>
  1011. <step>B</step>
  1012. <octave>4</octave>
  1013. </pitch>
  1014. <duration>1</duration>
  1015. <voice>1</voice>
  1016. <type>eighth</type>
  1017. <stem>down</stem>
  1018. <lyric number="1" default-x="6.58" default-y="-80.00">
  1019. <syllabic>single</syllabic>
  1020. <text font-family="Times New Roman">in</text>
  1021. </lyric>
  1022. <lyric number="2" default-x="6.58" default-y="-106.00">
  1023. <syllabic>end</syllabic>
  1024. <text font-family="Times New Roman">de</text>
  1025. </lyric>
  1026. </note>
  1027. <note default-x="163.73" default-y="-20.00" dynamics="141.11">
  1028. <pitch>
  1029. <step>B</step>
  1030. <octave>4</octave>
  1031. </pitch>
  1032. <duration>2</duration>
  1033. <voice>1</voice>
  1034. <type>quarter</type>
  1035. <stem>down</stem>
  1036. <lyric number="1" default-x="6.58" default-y="-80.00">
  1037. <syllabic>begin</syllabic>
  1038. <text font-family="Times New Roman">ei</text>
  1039. </lyric>
  1040. <lyric number="2" default-x="6.58" default-y="-106.00">
  1041. <syllabic>single</syllabic>
  1042. <text font-family="Times New Roman">Kunst</text>
  1043. </lyric>
  1044. </note>
  1045. <note default-x="227.51" default-y="-15.00" dynamics="141.11">
  1046. <pitch>
  1047. <step>C</step>
  1048. <alter>1</alter>
  1049. <octave>5</octave>
  1050. </pitch>
  1051. <duration>1</duration>
  1052. <voice>1</voice>
  1053. <type>eighth</type>
  1054. <stem>down</stem>
  1055. <beam number="1">begin</beam>
  1056. <lyric number="1" default-x="8.38" default-y="-80.00">
  1057. <syllabic>end</syllabic>
  1058. <text font-family="Times New Roman">ne</text>
  1059. <extend/>
  1060. </lyric>
  1061. <lyric number="2" default-x="11.44" default-y="-106.00">
  1062. <syllabic>single</syllabic>
  1063. <text font-family="Times New Roman">ich</text>
  1064. <extend/>
  1065. </lyric>
  1066. </note>
  1067. <note default-x="259.39" default-y="-10.00" dynamics="141.11">
  1068. <pitch>
  1069. <step>D</step>
  1070. <octave>5</octave>
  1071. </pitch>
  1072. <duration>1</duration>
  1073. <voice>1</voice>
  1074. <type>eighth</type>
  1075. <stem>down</stem>
  1076. <beam number="1">end</beam>
  1077. </note>
  1078. </measure>
  1079. <measure number="16" width="298.00">
  1080. <print new-system="yes">
  1081. <system-layout>
  1082. <system-margins>
  1083. <left-margin>86.22</left-margin>
  1084. <right-margin>0.00</right-margin>
  1085. </system-margins>
  1086. <system-distance>141.87</system-distance>
  1087. </system-layout>
  1088. </print>
  1089. <note default-x="89.00" default-y="-10.00">
  1090. <pitch>
  1091. <step>D</step>
  1092. <octave>5</octave>
  1093. </pitch>
  1094. <duration>3</duration>
  1095. <voice>1</voice>
  1096. <type>quarter</type>
  1097. <dot/>
  1098. <stem>down</stem>
  1099. <lyric number="1" default-x="7.78" default-y="-80.00">
  1100. <syllabic>begin</syllabic>
  1101. <text font-family="Times New Roman">bess'</text>
  1102. </lyric>
  1103. <lyric number="2" default-x="6.58" default-y="-106.00">
  1104. <syllabic>begin</syllabic>
  1105. <text font-family="Times New Roman">dan</text>
  1106. </lyric>
  1107. </note>
  1108. <note default-x="148.57" default-y="-10.00" dynamics="141.11">
  1109. <pitch>
  1110. <step>D</step>
  1111. <octave>5</octave>
  1112. </pitch>
  1113. <duration>1</duration>
  1114. <voice>1</voice>
  1115. <type>eighth</type>
  1116. <stem>down</stem>
  1117. <lyric number="1" default-x="6.58" default-y="-80.00">
  1118. <syllabic>end</syllabic>
  1119. <text font-family="Times New Roman">re</text>
  1120. </lyric>
  1121. <lyric number="2" default-x="6.58" default-y="-106.00">
  1122. <syllabic>end</syllabic>
  1123. <text font-family="Times New Roman">ke</text>
  1124. </lyric>
  1125. </note>
  1126. <note default-x="183.45" default-y="0.00">
  1127. <pitch>
  1128. <step>F</step>
  1129. <alter>1</alter>
  1130. <octave>5</octave>
  1131. </pitch>
  1132. <duration>3</duration>
  1133. <voice>1</voice>
  1134. <type>quarter</type>
  1135. <dot/>
  1136. <stem>down</stem>
  1137. <lyric number="1" default-x="6.58" default-y="-80.00">
  1138. <syllabic>single</syllabic>
  1139. <text font-family="Times New Roman">Welt</text>
  1140. </lyric>
  1141. <lyric number="2" default-x="6.58" default-y="-106.00">
  1142. <syllabic>single</syllabic>
  1143. <text font-family="Times New Roman">dir</text>
  1144. </lyric>
  1145. </note>
  1146. <note default-x="261.37" default-y="-5.00" dynamics="141.11">
  1147. <pitch>
  1148. <step>E</step>
  1149. <octave>5</octave>
  1150. </pitch>
  1151. <duration>1</duration>
  1152. <voice>1</voice>
  1153. <type>eighth</type>
  1154. <stem>down</stem>
  1155. <lyric number="1" default-x="6.58" default-y="-80.00">
  1156. <syllabic>begin</syllabic>
  1157. <text font-family="Times New Roman">ent</text>
  1158. </lyric>
  1159. <lyric number="2" default-x="6.58" default-y="-106.00">
  1160. <syllabic>begin</syllabic>
  1161. <text font-family="Times New Roman">da</text>
  1162. </lyric>
  1163. </note>
  1164. </measure>
  1165. <measure number="17" width="223.18">
  1166. <note default-x="8.44" default-y="-5.00">
  1167. <grace/>
  1168. <pitch>
  1169. <step>E</step>
  1170. <octave>5</octave>
  1171. </pitch>
  1172. <voice>1</voice>
  1173. <type>eighth</type>
  1174. <stem>up</stem>
  1175. </note>
  1176. <note default-x="28.38" default-y="-10.00">
  1177. <pitch>
  1178. <step>D</step>
  1179. <octave>5</octave>
  1180. </pitch>
  1181. <duration>4</duration>
  1182. <voice>1</voice>
  1183. <type>half</type>
  1184. <stem>down</stem>
  1185. <lyric number="1" default-x="8.69" default-y="-80.00">
  1186. <syllabic>end</syllabic>
  1187. <text font-family="Times New Roman">rückt,</text>
  1188. </lyric>
  1189. <lyric number="2" default-x="8.69" default-y="-106.00">
  1190. <syllabic>end</syllabic>
  1191. <text font-family="Times New Roman">für,</text>
  1192. </lyric>
  1193. </note>
  1194. <note>
  1195. <rest/>
  1196. <duration>1</duration>
  1197. <voice>1</voice>
  1198. <type>eighth</type>
  1199. </note>
  1200. <note default-x="137.13" default-y="-20.00" dynamics="141.11">
  1201. <pitch>
  1202. <step>B</step>
  1203. <octave>4</octave>
  1204. </pitch>
  1205. <duration>1</duration>
  1206. <voice>1</voice>
  1207. <type>eighth</type>
  1208. <stem>down</stem>
  1209. <lyric number="1" default-x="6.58" default-y="-80.00">
  1210. <syllabic>single</syllabic>
  1211. <text font-family="Times New Roman">in</text>
  1212. </lyric>
  1213. <lyric number="2" default-x="6.58" default-y="-106.00">
  1214. <syllabic>single</syllabic>
  1215. <text font-family="Times New Roman">du</text>
  1216. </lyric>
  1217. </note>
  1218. <note default-x="166.18" default-y="-15.00" dynamics="141.11">
  1219. <pitch>
  1220. <step>C</step>
  1221. <alter>1</alter>
  1222. <octave>5</octave>
  1223. </pitch>
  1224. <duration>1</duration>
  1225. <voice>1</voice>
  1226. <type>eighth</type>
  1227. <stem>down</stem>
  1228. <lyric number="1" default-x="6.58" default-y="-80.00">
  1229. <syllabic>begin</syllabic>
  1230. <text font-family="Times New Roman">ei</text>
  1231. </lyric>
  1232. <lyric number="2" default-x="6.58" default-y="-106.00">
  1233. <syllabic>begin</syllabic>
  1234. <text font-family="Times New Roman">hol</text>
  1235. </lyric>
  1236. </note>
  1237. <note default-x="194.62" default-y="-10.00" dynamics="141.11">
  1238. <pitch>
  1239. <step>D</step>
  1240. <octave>5</octave>
  1241. </pitch>
  1242. <duration>1</duration>
  1243. <voice>1</voice>
  1244. <type>eighth</type>
  1245. <stem>down</stem>
  1246. <lyric number="1" default-x="6.58" default-y="-80.00">
  1247. <syllabic>end</syllabic>
  1248. <text font-family="Times New Roman">ne</text>
  1249. </lyric>
  1250. <lyric number="2" default-x="6.58" default-y="-106.00">
  1251. <syllabic>end</syllabic>
  1252. <text font-family="Times New Roman">de</text>
  1253. </lyric>
  1254. </note>
  1255. </measure>
  1256. <measure number="18" width="280.67">
  1257. <note default-x="14.00" default-y="-10.00" dynamics="141.11">
  1258. <pitch>
  1259. <step>D</step>
  1260. <octave>5</octave>
  1261. </pitch>
  1262. <duration>2</duration>
  1263. <voice>1</voice>
  1264. <type>quarter</type>
  1265. <stem>down</stem>
  1266. <notations>
  1267. <slur type="start" number="1"/>
  1268. </notations>
  1269. <lyric number="1" default-x="18.92" default-y="-80.00">
  1270. <syllabic>begin</syllabic>
  1271. <text font-family="Times New Roman">bess'</text>
  1272. </lyric>
  1273. <lyric number="2" default-x="27.03" default-y="-106.00">
  1274. <syllabic>single</syllabic>
  1275. <text font-family="Times New Roman">Kunst,</text>
  1276. <extend/>
  1277. </lyric>
  1278. </note>
  1279. <note default-x="75.26" default-y="-35.00" dynamics="141.11">
  1280. <pitch>
  1281. <step>F</step>
  1282. <alter>1</alter>
  1283. <octave>4</octave>
  1284. </pitch>
  1285. <duration>1</duration>
  1286. <voice>1</voice>
  1287. <type>eighth</type>
  1288. <stem>up</stem>
  1289. <notations>
  1290. <slur type="stop" number="1"/>
  1291. </notations>
  1292. </note>
  1293. <note default-x="108.89" default-y="-35.00" dynamics="141.11">
  1294. <pitch>
  1295. <step>F</step>
  1296. <alter>1</alter>
  1297. <octave>4</octave>
  1298. </pitch>
  1299. <duration>1</duration>
  1300. <voice>1</voice>
  1301. <type>eighth</type>
  1302. <stem>up</stem>
  1303. <lyric number="1" default-x="6.58" default-y="-80.00">
  1304. <syllabic>end</syllabic>
  1305. <text font-family="Times New Roman">re</text>
  1306. </lyric>
  1307. <lyric number="2" default-x="6.58" default-y="-106.00">
  1308. <syllabic>single</syllabic>
  1309. <text font-family="Times New Roman">ich</text>
  1310. </lyric>
  1311. </note>
  1312. <note default-x="139.44" default-y="-25.00" dynamics="141.11">
  1313. <pitch>
  1314. <step>A</step>
  1315. <octave>4</octave>
  1316. </pitch>
  1317. <duration>2</duration>
  1318. <voice>1</voice>
  1319. <type>quarter</type>
  1320. <stem>up</stem>
  1321. <notations>
  1322. <slur type="start" number="1"/>
  1323. </notations>
  1324. <lyric number="1" default-x="18.50" default-y="-80.00">
  1325. <syllabic>begin</syllabic>
  1326. <text font-family="Times New Roman">Welt</text>
  1327. </lyric>
  1328. <lyric number="2" default-x="13.88" default-y="-106.00">
  1329. <syllabic>begin</syllabic>
  1330. <text font-family="Times New Roman">dan</text>
  1331. </lyric>
  1332. </note>
  1333. <note default-x="207.01" default-y="-50.00" dynamics="141.11">
  1334. <pitch>
  1335. <step>C</step>
  1336. <alter>1</alter>
  1337. <octave>4</octave>
  1338. </pitch>
  1339. <duration>1</duration>
  1340. <voice>1</voice>
  1341. <type>eighth</type>
  1342. <stem>up</stem>
  1343. <notations>
  1344. <slur type="stop" number="1"/>
  1345. </notations>
  1346. </note>
  1347. <note default-x="244.04" default-y="-50.00" dynamics="141.11">
  1348. <pitch>
  1349. <step>C</step>
  1350. <alter>1</alter>
  1351. <octave>4</octave>
  1352. </pitch>
  1353. <duration>1</duration>
  1354. <voice>1</voice>
  1355. <type>eighth</type>
  1356. <stem>up</stem>
  1357. <lyric number="1" default-x="6.58" default-y="-80.00">
  1358. <syllabic>middle</syllabic>
  1359. <text font-family="Times New Roman">ent</text>
  1360. </lyric>
  1361. <lyric number="2" default-x="6.58" default-y="-106.00">
  1362. <syllabic>end</syllabic>
  1363. <text font-family="Times New Roman">ke</text>
  1364. </lyric>
  1365. </note>
  1366. </measure>
  1367. <measure number="19" width="189.02">
  1368. <note default-x="28.65" default-y="-45.00" dynamics="141.11">
  1369. <pitch>
  1370. <step>D</step>
  1371. <octave>4</octave>
  1372. </pitch>
  1373. <duration>4</duration>
  1374. <voice>1</voice>
  1375. <type>half</type>
  1376. <stem>up</stem>
  1377. <lyric number="1" default-x="7.97" default-y="-80.00">
  1378. <syllabic>end</syllabic>
  1379. <text font-family="Times New Roman">rückt.</text>
  1380. </lyric>
  1381. <lyric number="2" default-x="7.97" default-y="-106.00">
  1382. <syllabic>single</syllabic>
  1383. <text font-family="Times New Roman">dir.</text>
  1384. </lyric>
  1385. </note>
  1386. <note>
  1387. <rest/>
  1388. <duration>4</duration>
  1389. <voice>1</voice>
  1390. <type>half</type>
  1391. </note>
  1392. </measure>
  1393. <measure number="20" width="256.63">
  1394. <print new-system="yes">
  1395. <system-layout>
  1396. <system-margins>
  1397. <left-margin>86.22</left-margin>
  1398. <right-margin>0.00</right-margin>
  1399. </system-margins>
  1400. <system-distance>141.87</system-distance>
  1401. </system-layout>
  1402. </print>
  1403. <forward>
  1404. <duration>8</duration>
  1405. </forward>
  1406. </measure>
  1407. <measure number="21" width="242.40">
  1408. <forward>
  1409. <duration>8</duration>
  1410. </forward>
  1411. </measure>
  1412. <measure number="22" width="293.53">
  1413. <forward>
  1414. <duration>8</duration>
  1415. </forward>
  1416. <barline location="right">
  1417. <bar-style>light-heavy</bar-style>
  1418. <repeat direction="backward"/>
  1419. </barline>
  1420. </measure>
  1421. <measure number="23" width="198.31">
  1422. <forward>
  1423. <duration>8</duration>
  1424. </forward>
  1425. </measure>
  1426. </part>
  1427. <part id="P2">
  1428. <measure number="1" width="368.47">
  1429. <print>
  1430. <staff-layout number="1">
  1431. <staff-distance>106.00</staff-distance>
  1432. </staff-layout>
  1433. </print>
  1434. <attributes>
  1435. <divisions>2</divisions>
  1436. <key>
  1437. <fifths>2</fifths>
  1438. <mode>major</mode>
  1439. </key>
  1440. <time symbol="cut">
  1441. <beats>2</beats>
  1442. <beat-type>2</beat-type>
  1443. </time>
  1444. <clef>
  1445. <sign>G</sign>
  1446. <line>2</line>
  1447. </clef>
  1448. </attributes>
  1449. <note default-x="99.11" default-y="-206.00" dynamics="141.11">
  1450. <pitch>
  1451. <step>A</step>
  1452. <octave>3</octave>
  1453. </pitch>
  1454. <duration>1</duration>
  1455. <voice>1</voice>
  1456. <type>eighth</type>
  1457. <stem>up</stem>
  1458. <beam number="1">begin</beam>
  1459. </note>
  1460. <note default-x="99.11" default-y="-191.00" dynamics="141.11">
  1461. <chord/>
  1462. <pitch>
  1463. <step>D</step>
  1464. <octave>4</octave>
  1465. </pitch>
  1466. <duration>1</duration>
  1467. <voice>1</voice>
  1468. <type>eighth</type>
  1469. <stem>up</stem>
  1470. </note>
  1471. <note default-x="99.11" default-y="-181.00" dynamics="141.11">
  1472. <chord/>
  1473. <pitch>
  1474. <step>F</step>
  1475. <alter>1</alter>
  1476. <octave>4</octave>
  1477. </pitch>
  1478. <duration>1</duration>
  1479. <voice>1</voice>
  1480. <type>eighth</type>
  1481. <stem>up</stem>
  1482. </note>
  1483. <note default-x="132.58" default-y="-206.00" dynamics="141.11">
  1484. <pitch>
  1485. <step>A</step>
  1486. <octave>3</octave>
  1487. </pitch>
  1488. <duration>1</duration>
  1489. <voice>1</voice>
  1490. <type>eighth</type>
  1491. <stem>up</stem>
  1492. <beam number="1">continue</beam>
  1493. </note>
  1494. <note default-x="132.58" default-y="-191.00" dynamics="141.11">
  1495. <chord/>
  1496. <pitch>
  1497. <step>D</step>
  1498. <octave>4</octave>
  1499. </pitch>
  1500. <duration>1</duration>
  1501. <voice>1</voice>
  1502. <type>eighth</type>
  1503. <stem>up</stem>
  1504. </note>
  1505. <note default-x="132.58" default-y="-181.00" dynamics="141.11">
  1506. <chord/>
  1507. <pitch>
  1508. <step>F</step>
  1509. <alter>1</alter>
  1510. <octave>4</octave>
  1511. </pitch>
  1512. <duration>1</duration>
  1513. <voice>1</voice>
  1514. <type>eighth</type>
  1515. <stem>up</stem>
  1516. </note>
  1517. <note default-x="166.05" default-y="-206.00" dynamics="141.11">
  1518. <pitch>
  1519. <step>A</step>
  1520. <octave>3</octave>
  1521. </pitch>
  1522. <duration>1</duration>
  1523. <voice>1</voice>
  1524. <type>eighth</type>
  1525. <stem>up</stem>
  1526. <beam number="1">continue</beam>
  1527. </note>
  1528. <note default-x="166.05" default-y="-191.00" dynamics="141.11">
  1529. <chord/>
  1530. <pitch>
  1531. <step>D</step>
  1532. <octave>4</octave>
  1533. </pitch>
  1534. <duration>1</duration>
  1535. <voice>1</voice>
  1536. <type>eighth</type>
  1537. <stem>up</stem>
  1538. </note>
  1539. <note default-x="166.05" default-y="-181.00" dynamics="141.11">
  1540. <chord/>
  1541. <pitch>
  1542. <step>F</step>
  1543. <alter>1</alter>
  1544. <octave>4</octave>
  1545. </pitch>
  1546. <duration>1</duration>
  1547. <voice>1</voice>
  1548. <type>eighth</type>
  1549. <stem>up</stem>
  1550. </note>
  1551. <note default-x="199.52" default-y="-206.00" dynamics="141.11">
  1552. <pitch>
  1553. <step>A</step>
  1554. <octave>3</octave>
  1555. </pitch>
  1556. <duration>1</duration>
  1557. <voice>1</voice>
  1558. <type>eighth</type>
  1559. <stem>up</stem>
  1560. <beam number="1">end</beam>
  1561. </note>
  1562. <note default-x="199.52" default-y="-191.00" dynamics="141.11">
  1563. <chord/>
  1564. <pitch>
  1565. <step>D</step>
  1566. <octave>4</octave>
  1567. </pitch>
  1568. <duration>1</duration>
  1569. <voice>1</voice>
  1570. <type>eighth</type>
  1571. <stem>up</stem>
  1572. </note>
  1573. <note default-x="199.52" default-y="-181.00" dynamics="141.11">
  1574. <chord/>
  1575. <pitch>
  1576. <step>F</step>
  1577. <alter>1</alter>
  1578. <octave>4</octave>
  1579. </pitch>
  1580. <duration>1</duration>
  1581. <voice>1</voice>
  1582. <type>eighth</type>
  1583. <stem>up</stem>
  1584. </note>
  1585. <note default-x="232.99" default-y="-206.00" dynamics="141.11">
  1586. <pitch>
  1587. <step>A</step>
  1588. <octave>3</octave>
  1589. </pitch>
  1590. <duration>1</duration>
  1591. <voice>1</voice>
  1592. <type>eighth</type>
  1593. <stem>up</stem>
  1594. <beam number="1">begin</beam>
  1595. </note>
  1596. <note default-x="232.99" default-y="-191.00" dynamics="141.11">
  1597. <chord/>
  1598. <pitch>
  1599. <step>D</step>
  1600. <octave>4</octave>
  1601. </pitch>
  1602. <duration>1</duration>
  1603. <voice>1</voice>
  1604. <type>eighth</type>
  1605. <stem>up</stem>
  1606. </note>
  1607. <note default-x="232.99" default-y="-181.00" dynamics="141.11">
  1608. <chord/>
  1609. <pitch>
  1610. <step>F</step>
  1611. <alter>1</alter>
  1612. <octave>4</octave>
  1613. </pitch>
  1614. <duration>1</duration>
  1615. <voice>1</voice>
  1616. <type>eighth</type>
  1617. <stem>up</stem>
  1618. </note>
  1619. <note default-x="266.46" default-y="-206.00" dynamics="141.11">
  1620. <pitch>
  1621. <step>A</step>
  1622. <octave>3</octave>
  1623. </pitch>
  1624. <duration>1</duration>
  1625. <voice>1</voice>
  1626. <type>eighth</type>
  1627. <stem>up</stem>
  1628. <beam number="1">continue</beam>
  1629. </note>
  1630. <note default-x="266.46" default-y="-191.00" dynamics="141.11">
  1631. <chord/>
  1632. <pitch>
  1633. <step>D</step>
  1634. <octave>4</octave>
  1635. </pitch>
  1636. <duration>1</duration>
  1637. <voice>1</voice>
  1638. <type>eighth</type>
  1639. <stem>up</stem>
  1640. </note>
  1641. <note default-x="266.46" default-y="-181.00" dynamics="141.11">
  1642. <chord/>
  1643. <pitch>
  1644. <step>F</step>
  1645. <alter>1</alter>
  1646. <octave>4</octave>
  1647. </pitch>
  1648. <duration>1</duration>
  1649. <voice>1</voice>
  1650. <type>eighth</type>
  1651. <stem>up</stem>
  1652. </note>
  1653. <note default-x="299.93" default-y="-206.00" dynamics="141.11">
  1654. <pitch>
  1655. <step>A</step>
  1656. <octave>3</octave>
  1657. </pitch>
  1658. <duration>1</duration>
  1659. <voice>1</voice>
  1660. <type>eighth</type>
  1661. <stem>up</stem>
  1662. <beam number="1">continue</beam>
  1663. </note>
  1664. <note default-x="299.93" default-y="-191.00" dynamics="141.11">
  1665. <chord/>
  1666. <pitch>
  1667. <step>D</step>
  1668. <octave>4</octave>
  1669. </pitch>
  1670. <duration>1</duration>
  1671. <voice>1</voice>
  1672. <type>eighth</type>
  1673. <stem>up</stem>
  1674. </note>
  1675. <note default-x="299.93" default-y="-181.00" dynamics="141.11">
  1676. <chord/>
  1677. <pitch>
  1678. <step>F</step>
  1679. <alter>1</alter>
  1680. <octave>4</octave>
  1681. </pitch>
  1682. <duration>1</duration>
  1683. <voice>1</voice>
  1684. <type>eighth</type>
  1685. <stem>up</stem>
  1686. </note>
  1687. <note default-x="333.40" default-y="-206.00" dynamics="141.11">
  1688. <pitch>
  1689. <step>A</step>
  1690. <octave>3</octave>
  1691. </pitch>
  1692. <duration>1</duration>
  1693. <voice>1</voice>
  1694. <type>eighth</type>
  1695. <stem>up</stem>
  1696. <beam number="1">end</beam>
  1697. </note>
  1698. <note default-x="333.40" default-y="-191.00" dynamics="141.11">
  1699. <chord/>
  1700. <pitch>
  1701. <step>D</step>
  1702. <octave>4</octave>
  1703. </pitch>
  1704. <duration>1</duration>
  1705. <voice>1</voice>
  1706. <type>eighth</type>
  1707. <stem>up</stem>
  1708. </note>
  1709. <note default-x="333.40" default-y="-181.00" dynamics="141.11">
  1710. <chord/>
  1711. <pitch>
  1712. <step>F</step>
  1713. <alter>1</alter>
  1714. <octave>4</octave>
  1715. </pitch>
  1716. <duration>1</duration>
  1717. <voice>1</voice>
  1718. <type>eighth</type>
  1719. <stem>up</stem>
  1720. </note>
  1721. </measure>
  1722. <measure number="2" width="330.62">
  1723. <note default-x="12.36" default-y="-206.00" dynamics="141.11">
  1724. <pitch>
  1725. <step>A</step>
  1726. <octave>3</octave>
  1727. </pitch>
  1728. <duration>1</duration>
  1729. <voice>1</voice>
  1730. <type>eighth</type>
  1731. <stem>up</stem>
  1732. <beam number="1">begin</beam>
  1733. </note>
  1734. <note default-x="12.36" default-y="-191.00" dynamics="141.11">
  1735. <chord/>
  1736. <pitch>
  1737. <step>D</step>
  1738. <octave>4</octave>
  1739. </pitch>
  1740. <duration>1</duration>
  1741. <voice>1</voice>
  1742. <type>eighth</type>
  1743. <stem>up</stem>
  1744. </note>
  1745. <note default-x="12.36" default-y="-171.00" dynamics="141.11">
  1746. <chord/>
  1747. <pitch>
  1748. <step>A</step>
  1749. <octave>4</octave>
  1750. </pitch>
  1751. <duration>1</duration>
  1752. <voice>1</voice>
  1753. <type>eighth</type>
  1754. <stem>up</stem>
  1755. </note>
  1756. <note default-x="50.00" default-y="-206.00" dynamics="141.11">
  1757. <pitch>
  1758. <step>A</step>
  1759. <octave>3</octave>
  1760. </pitch>
  1761. <duration>1</duration>
  1762. <voice>1</voice>
  1763. <type>eighth</type>
  1764. <stem>up</stem>
  1765. <beam number="1">continue</beam>
  1766. </note>
  1767. <note default-x="50.00" default-y="-191.00" dynamics="141.11">
  1768. <chord/>
  1769. <pitch>
  1770. <step>D</step>
  1771. <octave>4</octave>
  1772. </pitch>
  1773. <duration>1</duration>
  1774. <voice>1</voice>
  1775. <type>eighth</type>
  1776. <stem>up</stem>
  1777. </note>
  1778. <note default-x="50.00" default-y="-171.00" dynamics="141.11">
  1779. <chord/>
  1780. <pitch>
  1781. <step>A</step>
  1782. <octave>4</octave>
  1783. </pitch>
  1784. <duration>1</duration>
  1785. <voice>1</voice>
  1786. <type>eighth</type>
  1787. <stem>up</stem>
  1788. </note>
  1789. <note default-x="87.64" default-y="-206.00" dynamics="141.11">
  1790. <pitch>
  1791. <step>A</step>
  1792. <octave>3</octave>
  1793. </pitch>
  1794. <duration>1</duration>
  1795. <voice>1</voice>
  1796. <type>eighth</type>
  1797. <stem>up</stem>
  1798. <beam number="1">continue</beam>
  1799. </note>
  1800. <note default-x="87.64" default-y="-191.00" dynamics="141.11">
  1801. <chord/>
  1802. <pitch>
  1803. <step>D</step>
  1804. <octave>4</octave>
  1805. </pitch>
  1806. <duration>1</duration>
  1807. <voice>1</voice>
  1808. <type>eighth</type>
  1809. <stem>up</stem>
  1810. </note>
  1811. <note default-x="87.64" default-y="-171.00" dynamics="141.11">
  1812. <chord/>
  1813. <pitch>
  1814. <step>A</step>
  1815. <octave>4</octave>
  1816. </pitch>
  1817. <duration>1</duration>
  1818. <voice>1</voice>
  1819. <type>eighth</type>
  1820. <stem>up</stem>
  1821. </note>
  1822. <note default-x="125.28" default-y="-206.00" dynamics="141.11">
  1823. <pitch>
  1824. <step>A</step>
  1825. <octave>3</octave>
  1826. </pitch>
  1827. <duration>1</duration>
  1828. <voice>1</voice>
  1829. <type>eighth</type>
  1830. <stem>up</stem>
  1831. <beam number="1">end</beam>
  1832. </note>
  1833. <note default-x="125.28" default-y="-191.00" dynamics="141.11">
  1834. <chord/>
  1835. <pitch>
  1836. <step>D</step>
  1837. <octave>4</octave>
  1838. </pitch>
  1839. <duration>1</duration>
  1840. <voice>1</voice>
  1841. <type>eighth</type>
  1842. <stem>up</stem>
  1843. </note>
  1844. <note default-x="125.28" default-y="-171.00" dynamics="141.11">
  1845. <chord/>
  1846. <pitch>
  1847. <step>A</step>
  1848. <octave>4</octave>
  1849. </pitch>
  1850. <duration>1</duration>
  1851. <voice>1</voice>
  1852. <type>eighth</type>
  1853. <stem>up</stem>
  1854. </note>
  1855. <note default-x="162.92" default-y="-206.00" dynamics="141.11">
  1856. <pitch>
  1857. <step>A</step>
  1858. <octave>3</octave>
  1859. </pitch>
  1860. <duration>1</duration>
  1861. <voice>1</voice>
  1862. <type>eighth</type>
  1863. <stem>up</stem>
  1864. <beam number="1">begin</beam>
  1865. </note>
  1866. <note default-x="162.92" default-y="-196.00" dynamics="141.11">
  1867. <chord/>
  1868. <pitch>
  1869. <step>C</step>
  1870. <alter>1</alter>
  1871. <octave>4</octave>
  1872. </pitch>
  1873. <duration>1</duration>
  1874. <voice>1</voice>
  1875. <type>eighth</type>
  1876. <stem>up</stem>
  1877. </note>
  1878. <note default-x="162.92" default-y="-176.00" dynamics="141.11">
  1879. <chord/>
  1880. <pitch>
  1881. <step>G</step>
  1882. <octave>4</octave>
  1883. </pitch>
  1884. <duration>1</duration>
  1885. <voice>1</voice>
  1886. <type>eighth</type>
  1887. <stem>up</stem>
  1888. </note>
  1889. <note default-x="200.56" default-y="-206.00" dynamics="141.11">
  1890. <pitch>
  1891. <step>A</step>
  1892. <octave>3</octave>
  1893. </pitch>
  1894. <duration>1</duration>
  1895. <voice>1</voice>
  1896. <type>eighth</type>
  1897. <stem>up</stem>
  1898. <beam number="1">continue</beam>
  1899. </note>
  1900. <note default-x="200.56" default-y="-196.00" dynamics="141.11">
  1901. <chord/>
  1902. <pitch>
  1903. <step>C</step>
  1904. <alter>1</alter>
  1905. <octave>4</octave>
  1906. </pitch>
  1907. <duration>1</duration>
  1908. <voice>1</voice>
  1909. <type>eighth</type>
  1910. <stem>up</stem>
  1911. </note>
  1912. <note default-x="200.56" default-y="-176.00" dynamics="141.11">
  1913. <chord/>
  1914. <pitch>
  1915. <step>G</step>
  1916. <octave>4</octave>
  1917. </pitch>
  1918. <duration>1</duration>
  1919. <voice>1</voice>
  1920. <type>eighth</type>
  1921. <stem>up</stem>
  1922. </note>
  1923. <note default-x="238.21" default-y="-211.00" dynamics="141.11">
  1924. <pitch>
  1925. <step>G</step>
  1926. <octave>3</octave>
  1927. </pitch>
  1928. <duration>1</duration>
  1929. <voice>1</voice>
  1930. <type>eighth</type>
  1931. <stem>up</stem>
  1932. <beam number="1">continue</beam>
  1933. </note>
  1934. <note default-x="250.07" default-y="-206.00" dynamics="141.11">
  1935. <chord/>
  1936. <pitch>
  1937. <step>A</step>
  1938. <octave>3</octave>
  1939. </pitch>
  1940. <duration>1</duration>
  1941. <voice>1</voice>
  1942. <type>eighth</type>
  1943. <stem>up</stem>
  1944. </note>
  1945. <note default-x="238.21" default-y="-196.00" dynamics="141.11">
  1946. <chord/>
  1947. <pitch>
  1948. <step>C</step>
  1949. <alter>1</alter>
  1950. <octave>4</octave>
  1951. </pitch>
  1952. <duration>1</duration>
  1953. <voice>1</voice>
  1954. <type>eighth</type>
  1955. <stem>up</stem>
  1956. </note>
  1957. <note default-x="238.21" default-y="-186.00" dynamics="141.11">
  1958. <chord/>
  1959. <pitch>
  1960. <step>E</step>
  1961. <octave>4</octave>
  1962. </pitch>
  1963. <duration>1</duration>
  1964. <voice>1</voice>
  1965. <type>eighth</type>
  1966. <stem>up</stem>
  1967. </note>
  1968. <note default-x="275.85" default-y="-211.00" dynamics="141.11">
  1969. <pitch>
  1970. <step>G</step>
  1971. <octave>3</octave>
  1972. </pitch>
  1973. <duration>1</duration>
  1974. <voice>1</voice>
  1975. <type>eighth</type>
  1976. <stem>up</stem>
  1977. <beam number="1">end</beam>
  1978. </note>
  1979. <note default-x="287.71" default-y="-206.00" dynamics="141.11">
  1980. <chord/>
  1981. <pitch>
  1982. <step>A</step>
  1983. <octave>3</octave>
  1984. </pitch>
  1985. <duration>1</duration>
  1986. <voice>1</voice>
  1987. <type>eighth</type>
  1988. <stem>up</stem>
  1989. </note>
  1990. <note default-x="275.85" default-y="-196.00" dynamics="141.11">
  1991. <chord/>
  1992. <pitch>
  1993. <step>C</step>
  1994. <alter>1</alter>
  1995. <octave>4</octave>
  1996. </pitch>
  1997. <duration>1</duration>
  1998. <voice>1</voice>
  1999. <type>eighth</type>
  2000. <stem>up</stem>
  2001. </note>
  2002. <note default-x="275.85" default-y="-186.00" dynamics="141.11">
  2003. <chord/>
  2004. <pitch>
  2005. <step>E</step>
  2006. <octave>4</octave>
  2007. </pitch>
  2008. <duration>1</duration>
  2009. <voice>1</voice>
  2010. <type>eighth</type>
  2011. <stem>up</stem>
  2012. </note>
  2013. </measure>
  2014. <measure number="3" width="291.36">
  2015. <barline location="left">
  2016. <bar-style>heavy-light</bar-style>
  2017. <repeat direction="forward"/>
  2018. </barline>
  2019. <note default-x="12.94" default-y="-216.00" dynamics="141.11">
  2020. <pitch>
  2021. <step>F</step>
  2022. <alter>1</alter>
  2023. <octave>3</octave>
  2024. </pitch>
  2025. <duration>1</duration>
  2026. <voice>1</voice>
  2027. <type>eighth</type>
  2028. <stem>up</stem>
  2029. <beam number="1">begin</beam>
  2030. </note>
  2031. <note default-x="12.94" default-y="-206.00" dynamics="141.11">
  2032. <chord/>
  2033. <pitch>
  2034. <step>A</step>
  2035. <octave>3</octave>
  2036. </pitch>
  2037. <duration>1</duration>
  2038. <voice>1</voice>
  2039. <type>eighth</type>
  2040. <stem>up</stem>
  2041. </note>
  2042. <note default-x="12.94" default-y="-191.00" dynamics="141.11">
  2043. <chord/>
  2044. <pitch>
  2045. <step>D</step>
  2046. <octave>4</octave>
  2047. </pitch>
  2048. <duration>1</duration>
  2049. <voice>1</voice>
  2050. <type>eighth</type>
  2051. <stem>up</stem>
  2052. </note>
  2053. <note default-x="47.54" default-y="-206.00" dynamics="141.11">
  2054. <pitch>
  2055. <step>A</step>
  2056. <octave>3</octave>
  2057. </pitch>
  2058. <duration>1</duration>
  2059. <voice>1</voice>
  2060. <type>eighth</type>
  2061. <stem>up</stem>
  2062. <beam number="1">continue</beam>
  2063. </note>
  2064. <note default-x="47.54" default-y="-191.00" dynamics="141.11">
  2065. <chord/>
  2066. <pitch>
  2067. <step>D</step>
  2068. <octave>4</octave>
  2069. </pitch>
  2070. <duration>1</duration>
  2071. <voice>1</voice>
  2072. <type>eighth</type>
  2073. <stem>up</stem>
  2074. </note>
  2075. <note default-x="47.54" default-y="-181.00" dynamics="141.11">
  2076. <chord/>
  2077. <pitch>
  2078. <step>F</step>
  2079. <alter>1</alter>
  2080. <octave>4</octave>
  2081. </pitch>
  2082. <duration>1</duration>
  2083. <voice>1</voice>
  2084. <type>eighth</type>
  2085. <stem>up</stem>
  2086. </note>
  2087. <note default-x="82.14" default-y="-206.00" dynamics="141.11">
  2088. <pitch>
  2089. <step>A</step>
  2090. <octave>3</octave>
  2091. </pitch>
  2092. <duration>1</duration>
  2093. <voice>1</voice>
  2094. <type>eighth</type>
  2095. <stem>up</stem>
  2096. <beam number="1">continue</beam>
  2097. </note>
  2098. <note default-x="82.14" default-y="-191.00" dynamics="141.11">
  2099. <chord/>
  2100. <pitch>
  2101. <step>D</step>
  2102. <octave>4</octave>
  2103. </pitch>
  2104. <duration>1</duration>
  2105. <voice>1</voice>
  2106. <type>eighth</type>
  2107. <stem>up</stem>
  2108. </note>
  2109. <note default-x="82.14" default-y="-181.00" dynamics="141.11">
  2110. <chord/>
  2111. <pitch>
  2112. <step>F</step>
  2113. <alter>1</alter>
  2114. <octave>4</octave>
  2115. </pitch>
  2116. <duration>1</duration>
  2117. <voice>1</voice>
  2118. <type>eighth</type>
  2119. <stem>up</stem>
  2120. </note>
  2121. <note default-x="116.74" default-y="-206.00" dynamics="141.11">
  2122. <pitch>
  2123. <step>A</step>
  2124. <octave>3</octave>
  2125. </pitch>
  2126. <duration>1</duration>
  2127. <voice>1</voice>
  2128. <type>eighth</type>
  2129. <stem>up</stem>
  2130. <beam number="1">end</beam>
  2131. </note>
  2132. <note default-x="116.74" default-y="-191.00" dynamics="141.11">
  2133. <chord/>
  2134. <pitch>
  2135. <step>D</step>
  2136. <octave>4</octave>
  2137. </pitch>
  2138. <duration>1</duration>
  2139. <voice>1</voice>
  2140. <type>eighth</type>
  2141. <stem>up</stem>
  2142. </note>
  2143. <note default-x="116.74" default-y="-181.00" dynamics="141.11">
  2144. <chord/>
  2145. <pitch>
  2146. <step>F</step>
  2147. <alter>1</alter>
  2148. <octave>4</octave>
  2149. </pitch>
  2150. <duration>1</duration>
  2151. <voice>1</voice>
  2152. <type>eighth</type>
  2153. <stem>up</stem>
  2154. </note>
  2155. <note default-x="151.35" default-y="-206.00" dynamics="141.11">
  2156. <pitch>
  2157. <step>A</step>
  2158. <octave>3</octave>
  2159. </pitch>
  2160. <duration>1</duration>
  2161. <voice>1</voice>
  2162. <type>eighth</type>
  2163. <stem>up</stem>
  2164. <beam number="1">begin</beam>
  2165. </note>
  2166. <note default-x="151.35" default-y="-191.00" dynamics="141.11">
  2167. <chord/>
  2168. <pitch>
  2169. <step>D</step>
  2170. <octave>4</octave>
  2171. </pitch>
  2172. <duration>1</duration>
  2173. <voice>1</voice>
  2174. <type>eighth</type>
  2175. <stem>up</stem>
  2176. </note>
  2177. <note default-x="151.35" default-y="-181.00" dynamics="141.11">
  2178. <chord/>
  2179. <pitch>
  2180. <step>F</step>
  2181. <alter>1</alter>
  2182. <octave>4</octave>
  2183. </pitch>
  2184. <duration>1</duration>
  2185. <voice>1</voice>
  2186. <type>eighth</type>
  2187. <stem>up</stem>
  2188. </note>
  2189. <note default-x="185.95" default-y="-206.00" dynamics="141.11">
  2190. <pitch>
  2191. <step>A</step>
  2192. <octave>3</octave>
  2193. </pitch>
  2194. <duration>1</duration>
  2195. <voice>1</voice>
  2196. <type>eighth</type>
  2197. <stem>up</stem>
  2198. <beam number="1">continue</beam>
  2199. </note>
  2200. <note default-x="185.95" default-y="-191.00" dynamics="141.11">
  2201. <chord/>
  2202. <pitch>
  2203. <step>D</step>
  2204. <octave>4</octave>
  2205. </pitch>
  2206. <duration>1</duration>
  2207. <voice>1</voice>
  2208. <type>eighth</type>
  2209. <stem>up</stem>
  2210. </note>
  2211. <note default-x="185.95" default-y="-181.00" dynamics="141.11">
  2212. <chord/>
  2213. <pitch>
  2214. <step>F</step>
  2215. <alter>1</alter>
  2216. <octave>4</octave>
  2217. </pitch>
  2218. <duration>1</duration>
  2219. <voice>1</voice>
  2220. <type>eighth</type>
  2221. <stem>up</stem>
  2222. </note>
  2223. <note default-x="220.55" default-y="-206.00" dynamics="141.11">
  2224. <pitch>
  2225. <step>A</step>
  2226. <octave>3</octave>
  2227. </pitch>
  2228. <duration>1</duration>
  2229. <voice>1</voice>
  2230. <type>eighth</type>
  2231. <stem>up</stem>
  2232. <beam number="1">continue</beam>
  2233. </note>
  2234. <note default-x="220.55" default-y="-191.00" dynamics="141.11">
  2235. <chord/>
  2236. <pitch>
  2237. <step>D</step>
  2238. <octave>4</octave>
  2239. </pitch>
  2240. <duration>1</duration>
  2241. <voice>1</voice>
  2242. <type>eighth</type>
  2243. <stem>up</stem>
  2244. </note>
  2245. <note default-x="220.55" default-y="-181.00" dynamics="141.11">
  2246. <chord/>
  2247. <pitch>
  2248. <step>F</step>
  2249. <alter>1</alter>
  2250. <octave>4</octave>
  2251. </pitch>
  2252. <duration>1</duration>
  2253. <voice>1</voice>
  2254. <type>eighth</type>
  2255. <stem>up</stem>
  2256. </note>
  2257. <note default-x="255.15" default-y="-206.00" dynamics="141.11">
  2258. <pitch>
  2259. <step>A</step>
  2260. <octave>3</octave>
  2261. </pitch>
  2262. <duration>1</duration>
  2263. <voice>1</voice>
  2264. <type>eighth</type>
  2265. <stem>up</stem>
  2266. <beam number="1">end</beam>
  2267. </note>
  2268. <note default-x="255.15" default-y="-191.00" dynamics="141.11">
  2269. <chord/>
  2270. <pitch>
  2271. <step>D</step>
  2272. <octave>4</octave>
  2273. </pitch>
  2274. <duration>1</duration>
  2275. <voice>1</voice>
  2276. <type>eighth</type>
  2277. <stem>up</stem>
  2278. </note>
  2279. <note default-x="255.15" default-y="-181.00" dynamics="141.11">
  2280. <chord/>
  2281. <pitch>
  2282. <step>F</step>
  2283. <alter>1</alter>
  2284. <octave>4</octave>
  2285. </pitch>
  2286. <duration>1</duration>
  2287. <voice>1</voice>
  2288. <type>eighth</type>
  2289. <stem>up</stem>
  2290. </note>
  2291. </measure>
  2292. <measure number="4" width="372.07">
  2293. <print new-system="yes">
  2294. <staff-layout number="1">
  2295. <staff-distance>106.00</staff-distance>
  2296. </staff-layout>
  2297. </print>
  2298. <note default-x="96.56" default-y="-206.00" dynamics="141.11">
  2299. <pitch>
  2300. <step>A</step>
  2301. <octave>3</octave>
  2302. </pitch>
  2303. <duration>1</duration>
  2304. <voice>1</voice>
  2305. <type>eighth</type>
  2306. <stem>up</stem>
  2307. <beam number="1">begin</beam>
  2308. </note>
  2309. <note default-x="96.56" default-y="-191.00" dynamics="141.11">
  2310. <chord/>
  2311. <pitch>
  2312. <step>D</step>
  2313. <octave>4</octave>
  2314. </pitch>
  2315. <duration>1</duration>
  2316. <voice>1</voice>
  2317. <type>eighth</type>
  2318. <stem>up</stem>
  2319. </note>
  2320. <note default-x="96.56" default-y="-181.00" dynamics="141.11">
  2321. <chord/>
  2322. <pitch>
  2323. <step>F</step>
  2324. <alter>1</alter>
  2325. <octave>4</octave>
  2326. </pitch>
  2327. <duration>1</duration>
  2328. <voice>1</voice>
  2329. <type>eighth</type>
  2330. <stem>up</stem>
  2331. </note>
  2332. <note default-x="130.80" default-y="-206.00" dynamics="141.11">
  2333. <pitch>
  2334. <step>A</step>
  2335. <octave>3</octave>
  2336. </pitch>
  2337. <duration>1</duration>
  2338. <voice>1</voice>
  2339. <type>eighth</type>
  2340. <stem>up</stem>
  2341. <beam number="1">continue</beam>
  2342. </note>
  2343. <note default-x="130.80" default-y="-191.00" dynamics="141.11">
  2344. <chord/>
  2345. <pitch>
  2346. <step>D</step>
  2347. <octave>4</octave>
  2348. </pitch>
  2349. <duration>1</duration>
  2350. <voice>1</voice>
  2351. <type>eighth</type>
  2352. <stem>up</stem>
  2353. </note>
  2354. <note default-x="130.80" default-y="-181.00" dynamics="141.11">
  2355. <chord/>
  2356. <pitch>
  2357. <step>F</step>
  2358. <alter>1</alter>
  2359. <octave>4</octave>
  2360. </pitch>
  2361. <duration>1</duration>
  2362. <voice>1</voice>
  2363. <type>eighth</type>
  2364. <stem>up</stem>
  2365. </note>
  2366. <note default-x="165.04" default-y="-206.00" dynamics="141.11">
  2367. <pitch>
  2368. <step>A</step>
  2369. <octave>3</octave>
  2370. </pitch>
  2371. <duration>1</duration>
  2372. <voice>1</voice>
  2373. <type>eighth</type>
  2374. <stem>up</stem>
  2375. <beam number="1">continue</beam>
  2376. </note>
  2377. <note default-x="165.04" default-y="-191.00" dynamics="141.11">
  2378. <chord/>
  2379. <pitch>
  2380. <step>D</step>
  2381. <octave>4</octave>
  2382. </pitch>
  2383. <duration>1</duration>
  2384. <voice>1</voice>
  2385. <type>eighth</type>
  2386. <stem>up</stem>
  2387. </note>
  2388. <note default-x="165.04" default-y="-181.00" dynamics="141.11">
  2389. <chord/>
  2390. <pitch>
  2391. <step>F</step>
  2392. <alter>1</alter>
  2393. <octave>4</octave>
  2394. </pitch>
  2395. <duration>1</duration>
  2396. <voice>1</voice>
  2397. <type>eighth</type>
  2398. <stem>up</stem>
  2399. </note>
  2400. <note default-x="199.28" default-y="-206.00" dynamics="141.11">
  2401. <pitch>
  2402. <step>A</step>
  2403. <octave>3</octave>
  2404. </pitch>
  2405. <duration>1</duration>
  2406. <voice>1</voice>
  2407. <type>eighth</type>
  2408. <stem>up</stem>
  2409. <beam number="1">end</beam>
  2410. </note>
  2411. <note default-x="199.28" default-y="-191.00" dynamics="141.11">
  2412. <chord/>
  2413. <pitch>
  2414. <step>D</step>
  2415. <octave>4</octave>
  2416. </pitch>
  2417. <duration>1</duration>
  2418. <voice>1</voice>
  2419. <type>eighth</type>
  2420. <stem>up</stem>
  2421. </note>
  2422. <note default-x="199.28" default-y="-181.00" dynamics="141.11">
  2423. <chord/>
  2424. <pitch>
  2425. <step>F</step>
  2426. <alter>1</alter>
  2427. <octave>4</octave>
  2428. </pitch>
  2429. <duration>1</duration>
  2430. <voice>1</voice>
  2431. <type>eighth</type>
  2432. <stem>up</stem>
  2433. </note>
  2434. <note default-x="233.52" default-y="-216.00" dynamics="141.11">
  2435. <pitch>
  2436. <step>F</step>
  2437. <alter>1</alter>
  2438. <octave>3</octave>
  2439. </pitch>
  2440. <duration>1</duration>
  2441. <voice>1</voice>
  2442. <type>eighth</type>
  2443. <stem>up</stem>
  2444. <beam number="1">begin</beam>
  2445. </note>
  2446. <note default-x="233.52" default-y="-191.00" dynamics="141.11">
  2447. <chord/>
  2448. <pitch>
  2449. <step>D</step>
  2450. <octave>4</octave>
  2451. </pitch>
  2452. <duration>1</duration>
  2453. <voice>1</voice>
  2454. <type>eighth</type>
  2455. <stem>up</stem>
  2456. </note>
  2457. <note default-x="233.52" default-y="-181.00" dynamics="141.11">
  2458. <chord/>
  2459. <pitch>
  2460. <step>F</step>
  2461. <alter>1</alter>
  2462. <octave>4</octave>
  2463. </pitch>
  2464. <duration>1</duration>
  2465. <voice>1</voice>
  2466. <type>eighth</type>
  2467. <stem>up</stem>
  2468. </note>
  2469. <note default-x="267.76" default-y="-216.00" dynamics="141.11">
  2470. <pitch>
  2471. <step>F</step>
  2472. <alter>1</alter>
  2473. <octave>3</octave>
  2474. </pitch>
  2475. <duration>1</duration>
  2476. <voice>1</voice>
  2477. <type>eighth</type>
  2478. <stem>up</stem>
  2479. <beam number="1">continue</beam>
  2480. </note>
  2481. <note default-x="267.76" default-y="-181.00" dynamics="141.11">
  2482. <chord/>
  2483. <pitch>
  2484. <step>F</step>
  2485. <alter>1</alter>
  2486. <octave>4</octave>
  2487. </pitch>
  2488. <duration>1</duration>
  2489. <voice>1</voice>
  2490. <type>eighth</type>
  2491. <stem>up</stem>
  2492. </note>
  2493. <note default-x="302.00" default-y="-201.00" dynamics="141.11">
  2494. <pitch>
  2495. <step>B</step>
  2496. <octave>3</octave>
  2497. </pitch>
  2498. <duration>1</duration>
  2499. <voice>1</voice>
  2500. <type>eighth</type>
  2501. <stem>up</stem>
  2502. <beam number="1">continue</beam>
  2503. </note>
  2504. <note default-x="302.00" default-y="-191.00" dynamics="141.11">
  2505. <chord/>
  2506. <pitch>
  2507. <step>D</step>
  2508. <octave>4</octave>
  2509. </pitch>
  2510. <duration>1</duration>
  2511. <voice>1</voice>
  2512. <type>eighth</type>
  2513. <stem>up</stem>
  2514. </note>
  2515. <note default-x="302.00" default-y="-181.00" dynamics="141.11">
  2516. <chord/>
  2517. <pitch>
  2518. <step>F</step>
  2519. <alter>1</alter>
  2520. <octave>4</octave>
  2521. </pitch>
  2522. <duration>1</duration>
  2523. <voice>1</voice>
  2524. <type>eighth</type>
  2525. <stem>up</stem>
  2526. </note>
  2527. <note default-x="336.24" default-y="-201.00" dynamics="141.11">
  2528. <pitch>
  2529. <step>B</step>
  2530. <octave>3</octave>
  2531. </pitch>
  2532. <duration>1</duration>
  2533. <voice>1</voice>
  2534. <type>eighth</type>
  2535. <stem>up</stem>
  2536. <beam number="1">end</beam>
  2537. </note>
  2538. <note default-x="336.24" default-y="-191.00" dynamics="141.11">
  2539. <chord/>
  2540. <pitch>
  2541. <step>D</step>
  2542. <octave>4</octave>
  2543. </pitch>
  2544. <duration>1</duration>
  2545. <voice>1</voice>
  2546. <type>eighth</type>
  2547. <stem>up</stem>
  2548. </note>
  2549. <note default-x="336.24" default-y="-181.00" dynamics="141.11">
  2550. <chord/>
  2551. <pitch>
  2552. <step>F</step>
  2553. <alter>1</alter>
  2554. <octave>4</octave>
  2555. </pitch>
  2556. <duration>1</duration>
  2557. <voice>1</voice>
  2558. <type>eighth</type>
  2559. <stem>up</stem>
  2560. </note>
  2561. </measure>
  2562. <measure number="5" width="323.31">
  2563. <note>
  2564. <rest/>
  2565. <duration>1</duration>
  2566. <voice>1</voice>
  2567. <type>eighth</type>
  2568. </note>
  2569. <note default-x="63.99" default-y="-206.00" dynamics="141.11">
  2570. <pitch>
  2571. <step>A</step>
  2572. <octave>3</octave>
  2573. </pitch>
  2574. <duration>1</duration>
  2575. <voice>1</voice>
  2576. <type>eighth</type>
  2577. <stem>up</stem>
  2578. <beam number="1">begin</beam>
  2579. </note>
  2580. <note default-x="63.99" default-y="-191.00" dynamics="141.11">
  2581. <chord/>
  2582. <pitch>
  2583. <step>D</step>
  2584. <octave>4</octave>
  2585. </pitch>
  2586. <duration>1</duration>
  2587. <voice>1</voice>
  2588. <type>eighth</type>
  2589. <stem>up</stem>
  2590. </note>
  2591. <note default-x="63.99" default-y="-181.00" dynamics="141.11">
  2592. <chord/>
  2593. <pitch>
  2594. <step>F</step>
  2595. <alter>1</alter>
  2596. <octave>4</octave>
  2597. </pitch>
  2598. <duration>1</duration>
  2599. <voice>1</voice>
  2600. <type>eighth</type>
  2601. <stem>up</stem>
  2602. </note>
  2603. <note default-x="99.24" default-y="-206.00" dynamics="141.11">
  2604. <pitch>
  2605. <step>A</step>
  2606. <octave>3</octave>
  2607. </pitch>
  2608. <duration>1</duration>
  2609. <voice>1</voice>
  2610. <type>eighth</type>
  2611. <stem>up</stem>
  2612. <beam number="1">continue</beam>
  2613. </note>
  2614. <note default-x="99.24" default-y="-191.00" dynamics="141.11">
  2615. <chord/>
  2616. <pitch>
  2617. <step>D</step>
  2618. <octave>4</octave>
  2619. </pitch>
  2620. <duration>1</duration>
  2621. <voice>1</voice>
  2622. <type>eighth</type>
  2623. <stem>up</stem>
  2624. </note>
  2625. <note default-x="99.24" default-y="-181.00" dynamics="141.11">
  2626. <chord/>
  2627. <pitch>
  2628. <step>F</step>
  2629. <alter>1</alter>
  2630. <octave>4</octave>
  2631. </pitch>
  2632. <duration>1</duration>
  2633. <voice>1</voice>
  2634. <type>eighth</type>
  2635. <stem>up</stem>
  2636. </note>
  2637. <note default-x="134.48" default-y="-206.00" dynamics="141.11">
  2638. <pitch>
  2639. <step>A</step>
  2640. <octave>3</octave>
  2641. </pitch>
  2642. <duration>1</duration>
  2643. <voice>1</voice>
  2644. <type>eighth</type>
  2645. <stem>up</stem>
  2646. <beam number="1">end</beam>
  2647. </note>
  2648. <note default-x="134.48" default-y="-191.00" dynamics="141.11">
  2649. <chord/>
  2650. <pitch>
  2651. <step>D</step>
  2652. <octave>4</octave>
  2653. </pitch>
  2654. <duration>1</duration>
  2655. <voice>1</voice>
  2656. <type>eighth</type>
  2657. <stem>up</stem>
  2658. </note>
  2659. <note default-x="134.48" default-y="-181.00" dynamics="141.11">
  2660. <chord/>
  2661. <pitch>
  2662. <step>F</step>
  2663. <alter>1</alter>
  2664. <octave>4</octave>
  2665. </pitch>
  2666. <duration>1</duration>
  2667. <voice>1</voice>
  2668. <type>eighth</type>
  2669. <stem>up</stem>
  2670. </note>
  2671. <note>
  2672. <rest/>
  2673. <duration>1</duration>
  2674. <voice>1</voice>
  2675. <type>eighth</type>
  2676. </note>
  2677. <note default-x="215.97" default-y="-206.00" dynamics="141.11">
  2678. <pitch>
  2679. <step>A</step>
  2680. <octave>3</octave>
  2681. </pitch>
  2682. <duration>1</duration>
  2683. <voice>1</voice>
  2684. <type>eighth</type>
  2685. <stem>up</stem>
  2686. <beam number="1">begin</beam>
  2687. </note>
  2688. <note default-x="215.97" default-y="-196.00" dynamics="141.11">
  2689. <chord/>
  2690. <pitch>
  2691. <step>C</step>
  2692. <alter>1</alter>
  2693. <octave>4</octave>
  2694. </pitch>
  2695. <duration>1</duration>
  2696. <voice>1</voice>
  2697. <type>eighth</type>
  2698. <stem>up</stem>
  2699. </note>
  2700. <note default-x="215.97" default-y="-176.00" dynamics="141.11">
  2701. <chord/>
  2702. <pitch>
  2703. <step>G</step>
  2704. <octave>4</octave>
  2705. </pitch>
  2706. <duration>1</duration>
  2707. <voice>1</voice>
  2708. <type>eighth</type>
  2709. <stem>up</stem>
  2710. </note>
  2711. <note default-x="251.21" default-y="-206.00" dynamics="141.11">
  2712. <pitch>
  2713. <step>A</step>
  2714. <octave>3</octave>
  2715. </pitch>
  2716. <duration>1</duration>
  2717. <voice>1</voice>
  2718. <type>eighth</type>
  2719. <stem>up</stem>
  2720. <beam number="1">continue</beam>
  2721. </note>
  2722. <note default-x="251.21" default-y="-196.00" dynamics="141.11">
  2723. <chord/>
  2724. <pitch>
  2725. <step>C</step>
  2726. <alter>1</alter>
  2727. <octave>4</octave>
  2728. </pitch>
  2729. <duration>1</duration>
  2730. <voice>1</voice>
  2731. <type>eighth</type>
  2732. <stem>up</stem>
  2733. </note>
  2734. <note default-x="251.21" default-y="-176.00" dynamics="141.11">
  2735. <chord/>
  2736. <pitch>
  2737. <step>G</step>
  2738. <octave>4</octave>
  2739. </pitch>
  2740. <duration>1</duration>
  2741. <voice>1</voice>
  2742. <type>eighth</type>
  2743. <stem>up</stem>
  2744. </note>
  2745. <note default-x="286.46" default-y="-206.00" dynamics="141.11">
  2746. <pitch>
  2747. <step>A</step>
  2748. <octave>3</octave>
  2749. </pitch>
  2750. <duration>1</duration>
  2751. <voice>1</voice>
  2752. <type>eighth</type>
  2753. <stem>up</stem>
  2754. <beam number="1">end</beam>
  2755. </note>
  2756. <note default-x="286.46" default-y="-196.00" dynamics="141.11">
  2757. <chord/>
  2758. <pitch>
  2759. <step>C</step>
  2760. <alter>1</alter>
  2761. <octave>4</octave>
  2762. </pitch>
  2763. <duration>1</duration>
  2764. <voice>1</voice>
  2765. <type>eighth</type>
  2766. <stem>up</stem>
  2767. </note>
  2768. <note default-x="286.46" default-y="-176.00" dynamics="141.11">
  2769. <chord/>
  2770. <pitch>
  2771. <step>G</step>
  2772. <octave>4</octave>
  2773. </pitch>
  2774. <duration>1</duration>
  2775. <voice>1</voice>
  2776. <type>eighth</type>
  2777. <stem>up</stem>
  2778. </note>
  2779. </measure>
  2780. <measure number="6" width="295.49">
  2781. <note>
  2782. <rest/>
  2783. <duration>1</duration>
  2784. <voice>1</voice>
  2785. <type>eighth</type>
  2786. </note>
  2787. <note default-x="59.13" default-y="-206.00" dynamics="141.11">
  2788. <pitch>
  2789. <step>A</step>
  2790. <octave>3</octave>
  2791. </pitch>
  2792. <duration>1</duration>
  2793. <voice>1</voice>
  2794. <type>eighth</type>
  2795. <stem>up</stem>
  2796. <beam number="1">begin</beam>
  2797. </note>
  2798. <note default-x="59.13" default-y="-191.00" dynamics="141.11">
  2799. <chord/>
  2800. <pitch>
  2801. <step>D</step>
  2802. <octave>4</octave>
  2803. </pitch>
  2804. <duration>1</duration>
  2805. <voice>1</voice>
  2806. <type>eighth</type>
  2807. <stem>up</stem>
  2808. </note>
  2809. <note default-x="59.13" default-y="-181.00" dynamics="141.11">
  2810. <chord/>
  2811. <pitch>
  2812. <step>F</step>
  2813. <alter>1</alter>
  2814. <octave>4</octave>
  2815. </pitch>
  2816. <duration>1</duration>
  2817. <voice>1</voice>
  2818. <type>eighth</type>
  2819. <stem>up</stem>
  2820. </note>
  2821. <note default-x="92.67" default-y="-206.00" dynamics="141.11">
  2822. <pitch>
  2823. <step>A</step>
  2824. <octave>3</octave>
  2825. </pitch>
  2826. <duration>1</duration>
  2827. <voice>1</voice>
  2828. <type>eighth</type>
  2829. <stem>up</stem>
  2830. <beam number="1">continue</beam>
  2831. </note>
  2832. <note default-x="92.67" default-y="-191.00" dynamics="141.11">
  2833. <chord/>
  2834. <pitch>
  2835. <step>D</step>
  2836. <octave>4</octave>
  2837. </pitch>
  2838. <duration>1</duration>
  2839. <voice>1</voice>
  2840. <type>eighth</type>
  2841. <stem>up</stem>
  2842. </note>
  2843. <note default-x="92.67" default-y="-181.00" dynamics="141.11">
  2844. <chord/>
  2845. <pitch>
  2846. <step>F</step>
  2847. <alter>1</alter>
  2848. <octave>4</octave>
  2849. </pitch>
  2850. <duration>1</duration>
  2851. <voice>1</voice>
  2852. <type>eighth</type>
  2853. <stem>up</stem>
  2854. </note>
  2855. <note default-x="126.21" default-y="-206.00" dynamics="141.11">
  2856. <pitch>
  2857. <step>A</step>
  2858. <octave>3</octave>
  2859. </pitch>
  2860. <duration>1</duration>
  2861. <voice>1</voice>
  2862. <type>eighth</type>
  2863. <stem>up</stem>
  2864. <beam number="1">end</beam>
  2865. </note>
  2866. <note default-x="126.21" default-y="-191.00" dynamics="141.11">
  2867. <chord/>
  2868. <pitch>
  2869. <step>D</step>
  2870. <octave>4</octave>
  2871. </pitch>
  2872. <duration>1</duration>
  2873. <voice>1</voice>
  2874. <type>eighth</type>
  2875. <stem>up</stem>
  2876. </note>
  2877. <note default-x="126.21" default-y="-181.00" dynamics="141.11">
  2878. <chord/>
  2879. <pitch>
  2880. <step>F</step>
  2881. <alter>1</alter>
  2882. <octave>4</octave>
  2883. </pitch>
  2884. <duration>1</duration>
  2885. <voice>1</voice>
  2886. <type>eighth</type>
  2887. <stem>up</stem>
  2888. </note>
  2889. <note default-x="159.74" default-y="-206.00" dynamics="141.11">
  2890. <pitch>
  2891. <step>A</step>
  2892. <octave>3</octave>
  2893. </pitch>
  2894. <duration>1</duration>
  2895. <voice>1</voice>
  2896. <type>eighth</type>
  2897. <stem>up</stem>
  2898. <beam number="1">begin</beam>
  2899. </note>
  2900. <note default-x="159.74" default-y="-191.00" dynamics="141.11">
  2901. <chord/>
  2902. <pitch>
  2903. <step>D</step>
  2904. <octave>4</octave>
  2905. </pitch>
  2906. <duration>1</duration>
  2907. <voice>1</voice>
  2908. <type>eighth</type>
  2909. <stem>up</stem>
  2910. </note>
  2911. <note default-x="159.74" default-y="-181.00" dynamics="141.11">
  2912. <chord/>
  2913. <pitch>
  2914. <step>F</step>
  2915. <alter>1</alter>
  2916. <octave>4</octave>
  2917. </pitch>
  2918. <duration>1</duration>
  2919. <voice>1</voice>
  2920. <type>eighth</type>
  2921. <stem>up</stem>
  2922. </note>
  2923. <note default-x="193.28" default-y="-206.00" dynamics="141.11">
  2924. <pitch>
  2925. <step>A</step>
  2926. <octave>3</octave>
  2927. </pitch>
  2928. <duration>1</duration>
  2929. <voice>1</voice>
  2930. <type>eighth</type>
  2931. <stem>up</stem>
  2932. <beam number="1">continue</beam>
  2933. </note>
  2934. <note default-x="193.28" default-y="-191.00" dynamics="141.11">
  2935. <chord/>
  2936. <pitch>
  2937. <step>D</step>
  2938. <octave>4</octave>
  2939. </pitch>
  2940. <duration>1</duration>
  2941. <voice>1</voice>
  2942. <type>eighth</type>
  2943. <stem>up</stem>
  2944. </note>
  2945. <note default-x="193.28" default-y="-181.00" dynamics="141.11">
  2946. <chord/>
  2947. <pitch>
  2948. <step>F</step>
  2949. <alter>1</alter>
  2950. <octave>4</octave>
  2951. </pitch>
  2952. <duration>1</duration>
  2953. <voice>1</voice>
  2954. <type>eighth</type>
  2955. <stem>up</stem>
  2956. </note>
  2957. <note default-x="226.82" default-y="-206.00" dynamics="141.11">
  2958. <pitch>
  2959. <step>A</step>
  2960. <octave>3</octave>
  2961. </pitch>
  2962. <duration>1</duration>
  2963. <voice>1</voice>
  2964. <type>eighth</type>
  2965. <stem>up</stem>
  2966. <beam number="1">continue</beam>
  2967. </note>
  2968. <note default-x="226.82" default-y="-191.00" dynamics="141.11">
  2969. <chord/>
  2970. <pitch>
  2971. <step>D</step>
  2972. <octave>4</octave>
  2973. </pitch>
  2974. <duration>1</duration>
  2975. <voice>1</voice>
  2976. <type>eighth</type>
  2977. <stem>up</stem>
  2978. </note>
  2979. <note default-x="226.82" default-y="-181.00" dynamics="141.11">
  2980. <chord/>
  2981. <pitch>
  2982. <step>F</step>
  2983. <alter>1</alter>
  2984. <octave>4</octave>
  2985. </pitch>
  2986. <duration>1</duration>
  2987. <voice>1</voice>
  2988. <type>eighth</type>
  2989. <stem>up</stem>
  2990. </note>
  2991. <note default-x="260.36" default-y="-206.00" dynamics="141.11">
  2992. <pitch>
  2993. <step>A</step>
  2994. <octave>3</octave>
  2995. </pitch>
  2996. <duration>1</duration>
  2997. <voice>1</voice>
  2998. <type>eighth</type>
  2999. <stem>up</stem>
  3000. <beam number="1">end</beam>
  3001. </note>
  3002. <note default-x="260.36" default-y="-191.00" dynamics="141.11">
  3003. <chord/>
  3004. <pitch>
  3005. <step>D</step>
  3006. <octave>4</octave>
  3007. </pitch>
  3008. <duration>1</duration>
  3009. <voice>1</voice>
  3010. <type>eighth</type>
  3011. <stem>up</stem>
  3012. </note>
  3013. <note default-x="260.36" default-y="-181.00" dynamics="141.11">
  3014. <chord/>
  3015. <pitch>
  3016. <step>F</step>
  3017. <alter>1</alter>
  3018. <octave>4</octave>
  3019. </pitch>
  3020. <duration>1</duration>
  3021. <voice>1</voice>
  3022. <type>eighth</type>
  3023. <stem>up</stem>
  3024. </note>
  3025. </measure>
  3026. <measure number="7" width="349.82">
  3027. <print new-system="yes">
  3028. <staff-layout number="1">
  3029. <staff-distance>106.00</staff-distance>
  3030. </staff-layout>
  3031. </print>
  3032. <note default-x="76.81" default-y="-206.00" dynamics="141.11">
  3033. <pitch>
  3034. <step>A</step>
  3035. <octave>3</octave>
  3036. </pitch>
  3037. <duration>1</duration>
  3038. <voice>1</voice>
  3039. <type>eighth</type>
  3040. <stem>up</stem>
  3041. <beam number="1">begin</beam>
  3042. </note>
  3043. <note default-x="76.81" default-y="-191.00" dynamics="141.11">
  3044. <chord/>
  3045. <pitch>
  3046. <step>D</step>
  3047. <octave>4</octave>
  3048. </pitch>
  3049. <duration>1</duration>
  3050. <voice>1</voice>
  3051. <type>eighth</type>
  3052. <stem>up</stem>
  3053. </note>
  3054. <note default-x="76.81" default-y="-171.00" dynamics="141.11">
  3055. <chord/>
  3056. <pitch>
  3057. <step>A</step>
  3058. <octave>4</octave>
  3059. </pitch>
  3060. <duration>1</duration>
  3061. <voice>1</voice>
  3062. <type>eighth</type>
  3063. <stem>up</stem>
  3064. </note>
  3065. <note default-x="110.73" default-y="-206.00" dynamics="141.11">
  3066. <pitch>
  3067. <step>A</step>
  3068. <octave>3</octave>
  3069. </pitch>
  3070. <duration>1</duration>
  3071. <voice>1</voice>
  3072. <type>eighth</type>
  3073. <stem>up</stem>
  3074. <beam number="1">continue</beam>
  3075. </note>
  3076. <note default-x="110.73" default-y="-191.00" dynamics="141.11">
  3077. <chord/>
  3078. <pitch>
  3079. <step>D</step>
  3080. <octave>4</octave>
  3081. </pitch>
  3082. <duration>1</duration>
  3083. <voice>1</voice>
  3084. <type>eighth</type>
  3085. <stem>up</stem>
  3086. </note>
  3087. <note default-x="110.73" default-y="-171.00" dynamics="141.11">
  3088. <chord/>
  3089. <pitch>
  3090. <step>A</step>
  3091. <octave>4</octave>
  3092. </pitch>
  3093. <duration>1</duration>
  3094. <voice>1</voice>
  3095. <type>eighth</type>
  3096. <stem>up</stem>
  3097. </note>
  3098. <note default-x="144.66" default-y="-206.00" dynamics="141.11">
  3099. <pitch>
  3100. <step>A</step>
  3101. <octave>3</octave>
  3102. </pitch>
  3103. <duration>1</duration>
  3104. <voice>1</voice>
  3105. <type>eighth</type>
  3106. <stem>up</stem>
  3107. <beam number="1">continue</beam>
  3108. </note>
  3109. <note default-x="144.66" default-y="-191.00" dynamics="141.11">
  3110. <chord/>
  3111. <pitch>
  3112. <step>D</step>
  3113. <octave>4</octave>
  3114. </pitch>
  3115. <duration>1</duration>
  3116. <voice>1</voice>
  3117. <type>eighth</type>
  3118. <stem>up</stem>
  3119. </note>
  3120. <note default-x="144.66" default-y="-171.00" dynamics="141.11">
  3121. <chord/>
  3122. <pitch>
  3123. <step>A</step>
  3124. <octave>4</octave>
  3125. </pitch>
  3126. <duration>1</duration>
  3127. <voice>1</voice>
  3128. <type>eighth</type>
  3129. <stem>up</stem>
  3130. </note>
  3131. <note default-x="178.58" default-y="-206.00" dynamics="141.11">
  3132. <pitch>
  3133. <step>A</step>
  3134. <octave>3</octave>
  3135. </pitch>
  3136. <duration>1</duration>
  3137. <voice>1</voice>
  3138. <type>eighth</type>
  3139. <stem>up</stem>
  3140. <beam number="1">end</beam>
  3141. </note>
  3142. <note default-x="178.58" default-y="-191.00" dynamics="141.11">
  3143. <chord/>
  3144. <pitch>
  3145. <step>D</step>
  3146. <octave>4</octave>
  3147. </pitch>
  3148. <duration>1</duration>
  3149. <voice>1</voice>
  3150. <type>eighth</type>
  3151. <stem>up</stem>
  3152. </note>
  3153. <note default-x="178.58" default-y="-171.00" dynamics="141.11">
  3154. <chord/>
  3155. <pitch>
  3156. <step>A</step>
  3157. <octave>4</octave>
  3158. </pitch>
  3159. <duration>1</duration>
  3160. <voice>1</voice>
  3161. <type>eighth</type>
  3162. <stem>up</stem>
  3163. </note>
  3164. <note default-x="212.51" default-y="-201.00" dynamics="141.11">
  3165. <pitch>
  3166. <step>B</step>
  3167. <octave>3</octave>
  3168. </pitch>
  3169. <duration>1</duration>
  3170. <voice>1</voice>
  3171. <type>eighth</type>
  3172. <stem>up</stem>
  3173. <beam number="1">begin</beam>
  3174. </note>
  3175. <note default-x="212.51" default-y="-191.00" dynamics="141.11">
  3176. <chord/>
  3177. <pitch>
  3178. <step>D</step>
  3179. <octave>4</octave>
  3180. </pitch>
  3181. <duration>1</duration>
  3182. <voice>1</voice>
  3183. <type>eighth</type>
  3184. <stem>up</stem>
  3185. </note>
  3186. <note default-x="212.51" default-y="-166.00" dynamics="141.11">
  3187. <chord/>
  3188. <pitch>
  3189. <step>B</step>
  3190. <octave>4</octave>
  3191. </pitch>
  3192. <duration>1</duration>
  3193. <voice>1</voice>
  3194. <type>eighth</type>
  3195. <stem>up</stem>
  3196. </note>
  3197. <note default-x="246.44" default-y="-201.00" dynamics="141.11">
  3198. <pitch>
  3199. <step>B</step>
  3200. <octave>3</octave>
  3201. </pitch>
  3202. <duration>1</duration>
  3203. <voice>1</voice>
  3204. <type>eighth</type>
  3205. <stem>up</stem>
  3206. <beam number="1">continue</beam>
  3207. </note>
  3208. <note default-x="246.44" default-y="-191.00" dynamics="141.11">
  3209. <chord/>
  3210. <pitch>
  3211. <step>D</step>
  3212. <octave>4</octave>
  3213. </pitch>
  3214. <duration>1</duration>
  3215. <voice>1</voice>
  3216. <type>eighth</type>
  3217. <stem>up</stem>
  3218. </note>
  3219. <note default-x="246.44" default-y="-166.00" dynamics="141.11">
  3220. <chord/>
  3221. <pitch>
  3222. <step>B</step>
  3223. <octave>4</octave>
  3224. </pitch>
  3225. <duration>1</duration>
  3226. <voice>1</voice>
  3227. <type>eighth</type>
  3228. <stem>up</stem>
  3229. </note>
  3230. <note default-x="280.36" default-y="-201.00" dynamics="141.11">
  3231. <pitch>
  3232. <step>B</step>
  3233. <octave>3</octave>
  3234. </pitch>
  3235. <duration>1</duration>
  3236. <voice>1</voice>
  3237. <type>eighth</type>
  3238. <stem>up</stem>
  3239. <beam number="1">continue</beam>
  3240. </note>
  3241. <note default-x="280.36" default-y="-191.00" dynamics="141.11">
  3242. <chord/>
  3243. <pitch>
  3244. <step>D</step>
  3245. <octave>4</octave>
  3246. </pitch>
  3247. <duration>1</duration>
  3248. <voice>1</voice>
  3249. <type>eighth</type>
  3250. <stem>up</stem>
  3251. </note>
  3252. <note default-x="280.36" default-y="-166.00" dynamics="141.11">
  3253. <chord/>
  3254. <pitch>
  3255. <step>B</step>
  3256. <octave>4</octave>
  3257. </pitch>
  3258. <duration>1</duration>
  3259. <voice>1</voice>
  3260. <type>eighth</type>
  3261. <stem>up</stem>
  3262. </note>
  3263. <note default-x="314.29" default-y="-201.00" dynamics="141.11">
  3264. <pitch>
  3265. <step>B</step>
  3266. <octave>3</octave>
  3267. </pitch>
  3268. <duration>1</duration>
  3269. <voice>1</voice>
  3270. <type>eighth</type>
  3271. <stem>up</stem>
  3272. <beam number="1">end</beam>
  3273. </note>
  3274. <note default-x="314.29" default-y="-191.00" dynamics="141.11">
  3275. <chord/>
  3276. <pitch>
  3277. <step>D</step>
  3278. <octave>4</octave>
  3279. </pitch>
  3280. <duration>1</duration>
  3281. <voice>1</voice>
  3282. <type>eighth</type>
  3283. <stem>up</stem>
  3284. </note>
  3285. <note default-x="314.29" default-y="-166.00" dynamics="141.11">
  3286. <chord/>
  3287. <pitch>
  3288. <step>B</step>
  3289. <octave>4</octave>
  3290. </pitch>
  3291. <duration>1</duration>
  3292. <voice>1</voice>
  3293. <type>eighth</type>
  3294. <stem>up</stem>
  3295. </note>
  3296. </measure>
  3297. <measure number="8" width="295.18">
  3298. <note>
  3299. <rest/>
  3300. <duration>1</duration>
  3301. <voice>1</voice>
  3302. <type>eighth</type>
  3303. </note>
  3304. <note default-x="52.64" default-y="-221.00" dynamics="141.11">
  3305. <pitch>
  3306. <step>E</step>
  3307. <octave>3</octave>
  3308. </pitch>
  3309. <duration>1</duration>
  3310. <voice>1</voice>
  3311. <type>eighth</type>
  3312. <stem>up</stem>
  3313. <beam number="1">begin</beam>
  3314. </note>
  3315. <note default-x="52.64" default-y="-211.00" dynamics="141.11">
  3316. <chord/>
  3317. <pitch>
  3318. <step>G</step>
  3319. <octave>3</octave>
  3320. </pitch>
  3321. <duration>1</duration>
  3322. <voice>1</voice>
  3323. <type>eighth</type>
  3324. <stem>up</stem>
  3325. </note>
  3326. <note default-x="52.64" default-y="-196.00" dynamics="141.11">
  3327. <chord/>
  3328. <pitch>
  3329. <step>C</step>
  3330. <alter>1</alter>
  3331. <octave>4</octave>
  3332. </pitch>
  3333. <duration>1</duration>
  3334. <voice>1</voice>
  3335. <type>eighth</type>
  3336. <stem>up</stem>
  3337. </note>
  3338. <note default-x="86.43" default-y="-221.00" dynamics="141.11">
  3339. <pitch>
  3340. <step>E</step>
  3341. <octave>3</octave>
  3342. </pitch>
  3343. <duration>1</duration>
  3344. <voice>1</voice>
  3345. <type>eighth</type>
  3346. <stem>up</stem>
  3347. <beam number="1">continue</beam>
  3348. </note>
  3349. <note default-x="86.43" default-y="-211.00" dynamics="141.11">
  3350. <chord/>
  3351. <pitch>
  3352. <step>G</step>
  3353. <octave>3</octave>
  3354. </pitch>
  3355. <duration>1</duration>
  3356. <voice>1</voice>
  3357. <type>eighth</type>
  3358. <stem>up</stem>
  3359. </note>
  3360. <note default-x="86.43" default-y="-196.00" dynamics="141.11">
  3361. <chord/>
  3362. <pitch>
  3363. <step>C</step>
  3364. <alter>1</alter>
  3365. <octave>4</octave>
  3366. </pitch>
  3367. <duration>1</duration>
  3368. <voice>1</voice>
  3369. <type>eighth</type>
  3370. <stem>up</stem>
  3371. </note>
  3372. <note default-x="120.21" default-y="-221.00" dynamics="141.11">
  3373. <pitch>
  3374. <step>E</step>
  3375. <octave>3</octave>
  3376. </pitch>
  3377. <duration>1</duration>
  3378. <voice>1</voice>
  3379. <type>eighth</type>
  3380. <stem>up</stem>
  3381. <beam number="1">end</beam>
  3382. </note>
  3383. <note default-x="120.21" default-y="-211.00" dynamics="141.11">
  3384. <chord/>
  3385. <pitch>
  3386. <step>G</step>
  3387. <octave>3</octave>
  3388. </pitch>
  3389. <duration>1</duration>
  3390. <voice>1</voice>
  3391. <type>eighth</type>
  3392. <stem>up</stem>
  3393. </note>
  3394. <note default-x="120.21" default-y="-196.00" dynamics="141.11">
  3395. <chord/>
  3396. <pitch>
  3397. <step>C</step>
  3398. <alter>1</alter>
  3399. <octave>4</octave>
  3400. </pitch>
  3401. <duration>1</duration>
  3402. <voice>1</voice>
  3403. <type>eighth</type>
  3404. <stem>up</stem>
  3405. </note>
  3406. <note>
  3407. <rest/>
  3408. <duration>1</duration>
  3409. <voice>1</voice>
  3410. <type>eighth</type>
  3411. </note>
  3412. <note default-x="192.22" default-y="-226.00" dynamics="141.11">
  3413. <pitch>
  3414. <step>D</step>
  3415. <octave>3</octave>
  3416. </pitch>
  3417. <duration>1</duration>
  3418. <voice>1</voice>
  3419. <type>eighth</type>
  3420. <stem>up</stem>
  3421. <beam number="1">begin</beam>
  3422. </note>
  3423. <note default-x="192.22" default-y="-216.00" dynamics="141.11">
  3424. <chord/>
  3425. <pitch>
  3426. <step>F</step>
  3427. <alter>1</alter>
  3428. <octave>3</octave>
  3429. </pitch>
  3430. <duration>1</duration>
  3431. <voice>1</voice>
  3432. <type>eighth</type>
  3433. <stem>up</stem>
  3434. </note>
  3435. <note default-x="192.22" default-y="-191.00" dynamics="141.11">
  3436. <chord/>
  3437. <pitch>
  3438. <step>D</step>
  3439. <octave>4</octave>
  3440. </pitch>
  3441. <duration>1</duration>
  3442. <voice>1</voice>
  3443. <type>eighth</type>
  3444. <stem>up</stem>
  3445. </note>
  3446. <note default-x="226.01" default-y="-226.00" dynamics="141.11">
  3447. <pitch>
  3448. <step>D</step>
  3449. <octave>3</octave>
  3450. </pitch>
  3451. <duration>1</duration>
  3452. <voice>1</voice>
  3453. <type>eighth</type>
  3454. <stem>up</stem>
  3455. <beam number="1">continue</beam>
  3456. </note>
  3457. <note default-x="226.01" default-y="-216.00" dynamics="141.11">
  3458. <chord/>
  3459. <pitch>
  3460. <step>F</step>
  3461. <alter>1</alter>
  3462. <octave>3</octave>
  3463. </pitch>
  3464. <duration>1</duration>
  3465. <voice>1</voice>
  3466. <type>eighth</type>
  3467. <stem>up</stem>
  3468. </note>
  3469. <note default-x="226.01" default-y="-191.00" dynamics="141.11">
  3470. <chord/>
  3471. <pitch>
  3472. <step>D</step>
  3473. <octave>4</octave>
  3474. </pitch>
  3475. <duration>1</duration>
  3476. <voice>1</voice>
  3477. <type>eighth</type>
  3478. <stem>up</stem>
  3479. </note>
  3480. <note default-x="259.79" default-y="-226.00" dynamics="141.11">
  3481. <pitch>
  3482. <step>D</step>
  3483. <octave>3</octave>
  3484. </pitch>
  3485. <duration>1</duration>
  3486. <voice>1</voice>
  3487. <type>eighth</type>
  3488. <stem>up</stem>
  3489. <beam number="1">end</beam>
  3490. </note>
  3491. <note default-x="259.79" default-y="-216.00" dynamics="141.11">
  3492. <chord/>
  3493. <pitch>
  3494. <step>F</step>
  3495. <alter>1</alter>
  3496. <octave>3</octave>
  3497. </pitch>
  3498. <duration>1</duration>
  3499. <voice>1</voice>
  3500. <type>eighth</type>
  3501. <stem>up</stem>
  3502. </note>
  3503. <note default-x="259.79" default-y="-191.00" dynamics="141.11">
  3504. <chord/>
  3505. <pitch>
  3506. <step>D</step>
  3507. <octave>4</octave>
  3508. </pitch>
  3509. <duration>1</duration>
  3510. <voice>1</voice>
  3511. <type>eighth</type>
  3512. <stem>up</stem>
  3513. </note>
  3514. </measure>
  3515. <measure number="9" width="345.88">
  3516. <note>
  3517. <rest/>
  3518. <duration>1</duration>
  3519. <voice>1</voice>
  3520. <type>eighth</type>
  3521. </note>
  3522. <note default-x="63.64" default-y="-211.00" dynamics="141.11">
  3523. <pitch>
  3524. <step>G</step>
  3525. <octave>3</octave>
  3526. </pitch>
  3527. <duration>1</duration>
  3528. <voice>1</voice>
  3529. <type>eighth</type>
  3530. <stem>up</stem>
  3531. <beam number="1">begin</beam>
  3532. </note>
  3533. <note default-x="75.50" default-y="-206.00" dynamics="141.11">
  3534. <chord/>
  3535. <pitch>
  3536. <step>A</step>
  3537. <octave>3</octave>
  3538. </pitch>
  3539. <duration>1</duration>
  3540. <voice>1</voice>
  3541. <type>eighth</type>
  3542. <stem>up</stem>
  3543. </note>
  3544. <note default-x="63.64" default-y="-186.00" dynamics="141.11">
  3545. <chord/>
  3546. <pitch>
  3547. <step>E</step>
  3548. <octave>4</octave>
  3549. </pitch>
  3550. <duration>1</duration>
  3551. <voice>1</voice>
  3552. <type>eighth</type>
  3553. <stem>up</stem>
  3554. </note>
  3555. <note default-x="103.73" default-y="-211.00" dynamics="141.11">
  3556. <pitch>
  3557. <step>G</step>
  3558. <octave>3</octave>
  3559. </pitch>
  3560. <duration>1</duration>
  3561. <voice>1</voice>
  3562. <type>eighth</type>
  3563. <stem>up</stem>
  3564. <beam number="1">continue</beam>
  3565. </note>
  3566. <note default-x="115.59" default-y="-206.00" dynamics="141.11">
  3567. <chord/>
  3568. <pitch>
  3569. <step>A</step>
  3570. <octave>3</octave>
  3571. </pitch>
  3572. <duration>1</duration>
  3573. <voice>1</voice>
  3574. <type>eighth</type>
  3575. <stem>up</stem>
  3576. </note>
  3577. <note default-x="103.73" default-y="-186.00" dynamics="141.11">
  3578. <chord/>
  3579. <pitch>
  3580. <step>E</step>
  3581. <octave>4</octave>
  3582. </pitch>
  3583. <duration>1</duration>
  3584. <voice>1</voice>
  3585. <type>eighth</type>
  3586. <stem>up</stem>
  3587. </note>
  3588. <note default-x="143.82" default-y="-211.00" dynamics="141.11">
  3589. <pitch>
  3590. <step>G</step>
  3591. <octave>3</octave>
  3592. </pitch>
  3593. <duration>1</duration>
  3594. <voice>1</voice>
  3595. <type>eighth</type>
  3596. <stem>up</stem>
  3597. <beam number="1">end</beam>
  3598. </note>
  3599. <note default-x="155.69" default-y="-206.00" dynamics="141.11">
  3600. <chord/>
  3601. <pitch>
  3602. <step>A</step>
  3603. <octave>3</octave>
  3604. </pitch>
  3605. <duration>1</duration>
  3606. <voice>1</voice>
  3607. <type>eighth</type>
  3608. <stem>up</stem>
  3609. </note>
  3610. <note default-x="143.82" default-y="-186.00" dynamics="141.11">
  3611. <chord/>
  3612. <pitch>
  3613. <step>E</step>
  3614. <octave>4</octave>
  3615. </pitch>
  3616. <duration>1</duration>
  3617. <voice>1</voice>
  3618. <type>eighth</type>
  3619. <stem>up</stem>
  3620. </note>
  3621. <note>
  3622. <rest/>
  3623. <duration>1</duration>
  3624. <voice>1</voice>
  3625. <type>eighth</type>
  3626. </note>
  3627. <note default-x="224.01" default-y="-216.00" dynamics="141.11">
  3628. <pitch>
  3629. <step>F</step>
  3630. <alter>1</alter>
  3631. <octave>3</octave>
  3632. </pitch>
  3633. <duration>1</duration>
  3634. <voice>1</voice>
  3635. <type>eighth</type>
  3636. <stem>up</stem>
  3637. <beam number="1">begin</beam>
  3638. </note>
  3639. <note default-x="224.01" default-y="-206.00" dynamics="141.11">
  3640. <chord/>
  3641. <pitch>
  3642. <step>A</step>
  3643. <octave>3</octave>
  3644. </pitch>
  3645. <duration>1</duration>
  3646. <voice>1</voice>
  3647. <type>eighth</type>
  3648. <stem>up</stem>
  3649. </note>
  3650. <note default-x="224.01" default-y="-181.00" dynamics="141.11">
  3651. <chord/>
  3652. <pitch>
  3653. <step>F</step>
  3654. <alter>1</alter>
  3655. <octave>4</octave>
  3656. </pitch>
  3657. <duration>1</duration>
  3658. <voice>1</voice>
  3659. <type>eighth</type>
  3660. <stem>up</stem>
  3661. </note>
  3662. <note default-x="264.10" default-y="-216.00" dynamics="141.11">
  3663. <pitch>
  3664. <step>F</step>
  3665. <alter>1</alter>
  3666. <octave>3</octave>
  3667. </pitch>
  3668. <duration>1</duration>
  3669. <voice>1</voice>
  3670. <type>eighth</type>
  3671. <stem>up</stem>
  3672. <beam number="1">continue</beam>
  3673. </note>
  3674. <note default-x="264.10" default-y="-206.00" dynamics="141.11">
  3675. <chord/>
  3676. <pitch>
  3677. <step>A</step>
  3678. <octave>3</octave>
  3679. </pitch>
  3680. <duration>1</duration>
  3681. <voice>1</voice>
  3682. <type>eighth</type>
  3683. <stem>up</stem>
  3684. </note>
  3685. <note default-x="264.10" default-y="-181.00" dynamics="141.11">
  3686. <chord/>
  3687. <pitch>
  3688. <step>F</step>
  3689. <alter>1</alter>
  3690. <octave>4</octave>
  3691. </pitch>
  3692. <duration>1</duration>
  3693. <voice>1</voice>
  3694. <type>eighth</type>
  3695. <stem>up</stem>
  3696. </note>
  3697. <note default-x="304.19" default-y="-216.00" dynamics="141.11">
  3698. <pitch>
  3699. <step>F</step>
  3700. <alter>1</alter>
  3701. <octave>3</octave>
  3702. </pitch>
  3703. <duration>1</duration>
  3704. <voice>1</voice>
  3705. <type>eighth</type>
  3706. <stem>up</stem>
  3707. <beam number="1">end</beam>
  3708. </note>
  3709. <note default-x="304.19" default-y="-206.00" dynamics="141.11">
  3710. <chord/>
  3711. <pitch>
  3712. <step>A</step>
  3713. <octave>3</octave>
  3714. </pitch>
  3715. <duration>1</duration>
  3716. <voice>1</voice>
  3717. <type>eighth</type>
  3718. <stem>up</stem>
  3719. </note>
  3720. <note default-x="304.19" default-y="-181.00" dynamics="141.11">
  3721. <chord/>
  3722. <pitch>
  3723. <step>F</step>
  3724. <alter>1</alter>
  3725. <octave>4</octave>
  3726. </pitch>
  3727. <duration>1</duration>
  3728. <voice>1</voice>
  3729. <type>eighth</type>
  3730. <stem>up</stem>
  3731. </note>
  3732. </measure>
  3733. <measure number="10" width="364.42">
  3734. <print new-page="yes">
  3735. <staff-layout number="1">
  3736. <staff-distance>106.00</staff-distance>
  3737. </staff-layout>
  3738. </print>
  3739. <note default-x="75.87" default-y="-206.00" dynamics="141.11">
  3740. <pitch>
  3741. <step>A</step>
  3742. <octave>3</octave>
  3743. </pitch>
  3744. <duration>1</duration>
  3745. <voice>1</voice>
  3746. <type>eighth</type>
  3747. <stem>up</stem>
  3748. <beam number="1">begin</beam>
  3749. </note>
  3750. <note default-x="75.87" default-y="-196.00" dynamics="141.11">
  3751. <chord/>
  3752. <pitch>
  3753. <step>C</step>
  3754. <alter>1</alter>
  3755. <octave>4</octave>
  3756. </pitch>
  3757. <duration>1</duration>
  3758. <voice>1</voice>
  3759. <type>eighth</type>
  3760. <stem>up</stem>
  3761. </note>
  3762. <note default-x="75.87" default-y="-186.00" dynamics="141.11">
  3763. <chord/>
  3764. <pitch>
  3765. <step>E</step>
  3766. <octave>4</octave>
  3767. </pitch>
  3768. <duration>1</duration>
  3769. <voice>1</voice>
  3770. <type>eighth</type>
  3771. <stem>up</stem>
  3772. </note>
  3773. <note default-x="111.74" default-y="-206.00" dynamics="141.11">
  3774. <pitch>
  3775. <step>A</step>
  3776. <octave>3</octave>
  3777. </pitch>
  3778. <duration>1</duration>
  3779. <voice>1</voice>
  3780. <type>eighth</type>
  3781. <stem>up</stem>
  3782. <beam number="1">continue</beam>
  3783. </note>
  3784. <note default-x="111.74" default-y="-196.00" dynamics="141.11">
  3785. <chord/>
  3786. <pitch>
  3787. <step>C</step>
  3788. <alter>1</alter>
  3789. <octave>4</octave>
  3790. </pitch>
  3791. <duration>1</duration>
  3792. <voice>1</voice>
  3793. <type>eighth</type>
  3794. <stem>up</stem>
  3795. </note>
  3796. <note default-x="111.74" default-y="-186.00" dynamics="141.11">
  3797. <chord/>
  3798. <pitch>
  3799. <step>E</step>
  3800. <octave>4</octave>
  3801. </pitch>
  3802. <duration>1</duration>
  3803. <voice>1</voice>
  3804. <type>eighth</type>
  3805. <stem>up</stem>
  3806. </note>
  3807. <note default-x="147.61" default-y="-206.00" dynamics="141.11">
  3808. <pitch>
  3809. <step>A</step>
  3810. <octave>3</octave>
  3811. </pitch>
  3812. <duration>1</duration>
  3813. <voice>1</voice>
  3814. <type>eighth</type>
  3815. <stem>up</stem>
  3816. <beam number="1">continue</beam>
  3817. </note>
  3818. <note default-x="147.61" default-y="-196.00" dynamics="141.11">
  3819. <chord/>
  3820. <pitch>
  3821. <step>C</step>
  3822. <alter>1</alter>
  3823. <octave>4</octave>
  3824. </pitch>
  3825. <duration>1</duration>
  3826. <voice>1</voice>
  3827. <type>eighth</type>
  3828. <stem>up</stem>
  3829. </note>
  3830. <note default-x="147.61" default-y="-171.00" dynamics="141.11">
  3831. <chord/>
  3832. <pitch>
  3833. <step>A</step>
  3834. <octave>4</octave>
  3835. </pitch>
  3836. <duration>1</duration>
  3837. <voice>1</voice>
  3838. <type>eighth</type>
  3839. <stem>up</stem>
  3840. </note>
  3841. <note default-x="183.48" default-y="-206.00" dynamics="141.11">
  3842. <pitch>
  3843. <step>A</step>
  3844. <octave>3</octave>
  3845. </pitch>
  3846. <duration>1</duration>
  3847. <voice>1</voice>
  3848. <type>eighth</type>
  3849. <stem>up</stem>
  3850. <beam number="1">end</beam>
  3851. </note>
  3852. <note default-x="183.48" default-y="-196.00" dynamics="141.11">
  3853. <chord/>
  3854. <pitch>
  3855. <step>C</step>
  3856. <alter>1</alter>
  3857. <octave>4</octave>
  3858. </pitch>
  3859. <duration>1</duration>
  3860. <voice>1</voice>
  3861. <type>eighth</type>
  3862. <stem>up</stem>
  3863. </note>
  3864. <note default-x="183.48" default-y="-171.00" dynamics="141.11">
  3865. <chord/>
  3866. <pitch>
  3867. <step>A</step>
  3868. <octave>4</octave>
  3869. </pitch>
  3870. <duration>1</duration>
  3871. <voice>1</voice>
  3872. <type>eighth</type>
  3873. <stem>up</stem>
  3874. </note>
  3875. <note default-x="219.34" default-y="-201.00" dynamics="141.11">
  3876. <pitch>
  3877. <step>B</step>
  3878. <octave>3</octave>
  3879. </pitch>
  3880. <duration>1</duration>
  3881. <voice>1</voice>
  3882. <type>eighth</type>
  3883. <stem>up</stem>
  3884. <beam number="1">begin</beam>
  3885. </note>
  3886. <note default-x="219.34" default-y="-191.00" dynamics="141.11">
  3887. <chord/>
  3888. <pitch>
  3889. <step>D</step>
  3890. <octave>4</octave>
  3891. </pitch>
  3892. <duration>1</duration>
  3893. <voice>1</voice>
  3894. <type>eighth</type>
  3895. <stem>up</stem>
  3896. </note>
  3897. <note default-x="219.34" default-y="-171.00" dynamics="141.11">
  3898. <chord/>
  3899. <pitch>
  3900. <step>A</step>
  3901. <octave>4</octave>
  3902. </pitch>
  3903. <duration>1</duration>
  3904. <voice>1</voice>
  3905. <type>eighth</type>
  3906. <stem>up</stem>
  3907. </note>
  3908. <note default-x="255.21" default-y="-201.00" dynamics="141.11">
  3909. <pitch>
  3910. <step>B</step>
  3911. <octave>3</octave>
  3912. </pitch>
  3913. <duration>1</duration>
  3914. <voice>1</voice>
  3915. <type>eighth</type>
  3916. <stem>up</stem>
  3917. <beam number="1">continue</beam>
  3918. </note>
  3919. <note default-x="255.21" default-y="-191.00" dynamics="141.11">
  3920. <chord/>
  3921. <pitch>
  3922. <step>D</step>
  3923. <octave>4</octave>
  3924. </pitch>
  3925. <duration>1</duration>
  3926. <voice>1</voice>
  3927. <type>eighth</type>
  3928. <stem>up</stem>
  3929. </note>
  3930. <note default-x="255.21" default-y="-171.00" dynamics="141.11">
  3931. <chord/>
  3932. <pitch>
  3933. <step>A</step>
  3934. <octave>4</octave>
  3935. </pitch>
  3936. <duration>1</duration>
  3937. <voice>1</voice>
  3938. <type>eighth</type>
  3939. <stem>up</stem>
  3940. </note>
  3941. <note default-x="291.08" default-y="-196.00" dynamics="141.11">
  3942. <pitch>
  3943. <step>C</step>
  3944. <alter>1</alter>
  3945. <octave>4</octave>
  3946. </pitch>
  3947. <duration>1</duration>
  3948. <voice>1</voice>
  3949. <type>eighth</type>
  3950. <stem>up</stem>
  3951. <beam number="1">continue</beam>
  3952. </note>
  3953. <note default-x="291.08" default-y="-186.00" dynamics="141.11">
  3954. <chord/>
  3955. <pitch>
  3956. <step>E</step>
  3957. <octave>4</octave>
  3958. </pitch>
  3959. <duration>1</duration>
  3960. <voice>1</voice>
  3961. <type>eighth</type>
  3962. <stem>up</stem>
  3963. </note>
  3964. <note default-x="291.08" default-y="-171.00" dynamics="141.11">
  3965. <chord/>
  3966. <pitch>
  3967. <step>A</step>
  3968. <octave>4</octave>
  3969. </pitch>
  3970. <duration>1</duration>
  3971. <voice>1</voice>
  3972. <type>eighth</type>
  3973. <stem>up</stem>
  3974. </note>
  3975. <note default-x="326.95" default-y="-196.00" dynamics="141.11">
  3976. <pitch>
  3977. <step>C</step>
  3978. <alter>1</alter>
  3979. <octave>4</octave>
  3980. </pitch>
  3981. <duration>1</duration>
  3982. <voice>1</voice>
  3983. <type>eighth</type>
  3984. <stem>up</stem>
  3985. <beam number="1">end</beam>
  3986. </note>
  3987. <note default-x="326.95" default-y="-186.00" dynamics="141.11">
  3988. <chord/>
  3989. <pitch>
  3990. <step>E</step>
  3991. <octave>4</octave>
  3992. </pitch>
  3993. <duration>1</duration>
  3994. <voice>1</voice>
  3995. <type>eighth</type>
  3996. <stem>up</stem>
  3997. </note>
  3998. <note default-x="326.95" default-y="-171.00" dynamics="141.11">
  3999. <chord/>
  4000. <pitch>
  4001. <step>A</step>
  4002. <octave>4</octave>
  4003. </pitch>
  4004. <duration>1</duration>
  4005. <voice>1</voice>
  4006. <type>eighth</type>
  4007. <stem>up</stem>
  4008. </note>
  4009. </measure>
  4010. <measure number="11" width="312.51">
  4011. <note default-x="12.94" default-y="-191.00" dynamics="141.11">
  4012. <pitch>
  4013. <step>D</step>
  4014. <octave>4</octave>
  4015. </pitch>
  4016. <duration>1</duration>
  4017. <voice>1</voice>
  4018. <type>eighth</type>
  4019. <stem>up</stem>
  4020. <beam number="1">begin</beam>
  4021. </note>
  4022. <note default-x="12.94" default-y="-181.00" dynamics="141.11">
  4023. <chord/>
  4024. <pitch>
  4025. <step>F</step>
  4026. <alter>1</alter>
  4027. <octave>4</octave>
  4028. </pitch>
  4029. <duration>1</duration>
  4030. <voice>1</voice>
  4031. <type>eighth</type>
  4032. <stem>up</stem>
  4033. </note>
  4034. <note default-x="12.94" default-y="-171.00" dynamics="141.11">
  4035. <chord/>
  4036. <pitch>
  4037. <step>A</step>
  4038. <octave>4</octave>
  4039. </pitch>
  4040. <duration>1</duration>
  4041. <voice>1</voice>
  4042. <type>eighth</type>
  4043. <stem>up</stem>
  4044. </note>
  4045. <note default-x="49.99" default-y="-191.00" dynamics="141.11">
  4046. <pitch>
  4047. <step>D</step>
  4048. <octave>4</octave>
  4049. </pitch>
  4050. <duration>1</duration>
  4051. <voice>1</voice>
  4052. <type>eighth</type>
  4053. <stem>up</stem>
  4054. <beam number="1">continue</beam>
  4055. </note>
  4056. <note default-x="49.99" default-y="-181.00" dynamics="141.11">
  4057. <chord/>
  4058. <pitch>
  4059. <step>F</step>
  4060. <alter>1</alter>
  4061. <octave>4</octave>
  4062. </pitch>
  4063. <duration>1</duration>
  4064. <voice>1</voice>
  4065. <type>eighth</type>
  4066. <stem>up</stem>
  4067. </note>
  4068. <note default-x="49.99" default-y="-171.00" dynamics="141.11">
  4069. <chord/>
  4070. <pitch>
  4071. <step>A</step>
  4072. <octave>4</octave>
  4073. </pitch>
  4074. <duration>1</duration>
  4075. <voice>1</voice>
  4076. <type>eighth</type>
  4077. <stem>up</stem>
  4078. </note>
  4079. <note default-x="87.05" default-y="-191.00" dynamics="141.11">
  4080. <pitch>
  4081. <step>D</step>
  4082. <octave>4</octave>
  4083. </pitch>
  4084. <duration>1</duration>
  4085. <voice>1</voice>
  4086. <type>eighth</type>
  4087. <stem>up</stem>
  4088. <beam number="1">continue</beam>
  4089. </note>
  4090. <note default-x="87.05" default-y="-181.00" dynamics="141.11">
  4091. <chord/>
  4092. <pitch>
  4093. <step>F</step>
  4094. <alter>1</alter>
  4095. <octave>4</octave>
  4096. </pitch>
  4097. <duration>1</duration>
  4098. <voice>1</voice>
  4099. <type>eighth</type>
  4100. <stem>up</stem>
  4101. </note>
  4102. <note default-x="87.05" default-y="-171.00" dynamics="141.11">
  4103. <chord/>
  4104. <pitch>
  4105. <step>A</step>
  4106. <octave>4</octave>
  4107. </pitch>
  4108. <duration>1</duration>
  4109. <voice>1</voice>
  4110. <type>eighth</type>
  4111. <stem>up</stem>
  4112. </note>
  4113. <note default-x="124.10" default-y="-191.00" dynamics="141.11">
  4114. <pitch>
  4115. <step>D</step>
  4116. <octave>4</octave>
  4117. </pitch>
  4118. <duration>1</duration>
  4119. <voice>1</voice>
  4120. <type>eighth</type>
  4121. <stem>up</stem>
  4122. <beam number="1">end</beam>
  4123. </note>
  4124. <note default-x="124.10" default-y="-181.00" dynamics="141.11">
  4125. <chord/>
  4126. <pitch>
  4127. <step>F</step>
  4128. <alter>1</alter>
  4129. <octave>4</octave>
  4130. </pitch>
  4131. <duration>1</duration>
  4132. <voice>1</voice>
  4133. <type>eighth</type>
  4134. <stem>up</stem>
  4135. </note>
  4136. <note default-x="124.10" default-y="-171.00" dynamics="141.11">
  4137. <chord/>
  4138. <pitch>
  4139. <step>A</step>
  4140. <octave>4</octave>
  4141. </pitch>
  4142. <duration>1</duration>
  4143. <voice>1</voice>
  4144. <type>eighth</type>
  4145. <stem>up</stem>
  4146. </note>
  4147. <note default-x="161.16" default-y="-186.00" dynamics="141.11">
  4148. <pitch>
  4149. <step>E</step>
  4150. <octave>4</octave>
  4151. </pitch>
  4152. <duration>1</duration>
  4153. <voice>1</voice>
  4154. <type>eighth</type>
  4155. <stem>up</stem>
  4156. <beam number="1">begin</beam>
  4157. </note>
  4158. <note default-x="161.16" default-y="-176.00" dynamics="141.11">
  4159. <chord/>
  4160. <pitch>
  4161. <step>G</step>
  4162. <octave>4</octave>
  4163. </pitch>
  4164. <duration>1</duration>
  4165. <voice>1</voice>
  4166. <type>eighth</type>
  4167. <stem>up</stem>
  4168. </note>
  4169. <note default-x="173.03" default-y="-171.00" dynamics="141.11">
  4170. <chord/>
  4171. <pitch>
  4172. <step>A</step>
  4173. <octave>4</octave>
  4174. </pitch>
  4175. <duration>1</duration>
  4176. <voice>1</voice>
  4177. <type>eighth</type>
  4178. <stem>up</stem>
  4179. </note>
  4180. <note default-x="198.22" default-y="-186.00" dynamics="141.11">
  4181. <pitch>
  4182. <step>E</step>
  4183. <octave>4</octave>
  4184. </pitch>
  4185. <duration>1</duration>
  4186. <voice>1</voice>
  4187. <type>eighth</type>
  4188. <stem>up</stem>
  4189. <beam number="1">continue</beam>
  4190. </note>
  4191. <note default-x="198.22" default-y="-176.00" dynamics="141.11">
  4192. <chord/>
  4193. <pitch>
  4194. <step>G</step>
  4195. <octave>4</octave>
  4196. </pitch>
  4197. <duration>1</duration>
  4198. <voice>1</voice>
  4199. <type>eighth</type>
  4200. <stem>up</stem>
  4201. </note>
  4202. <note default-x="210.08" default-y="-171.00" dynamics="141.11">
  4203. <chord/>
  4204. <pitch>
  4205. <step>A</step>
  4206. <octave>4</octave>
  4207. </pitch>
  4208. <duration>1</duration>
  4209. <voice>1</voice>
  4210. <type>eighth</type>
  4211. <stem>up</stem>
  4212. </note>
  4213. <note default-x="235.27" default-y="-186.00" dynamics="141.11">
  4214. <pitch>
  4215. <step>E</step>
  4216. <octave>4</octave>
  4217. </pitch>
  4218. <duration>1</duration>
  4219. <voice>1</voice>
  4220. <type>eighth</type>
  4221. <stem>up</stem>
  4222. <beam number="1">continue</beam>
  4223. </note>
  4224. <note default-x="235.27" default-y="-176.00" dynamics="141.11">
  4225. <chord/>
  4226. <pitch>
  4227. <step>G</step>
  4228. <octave>4</octave>
  4229. </pitch>
  4230. <duration>1</duration>
  4231. <voice>1</voice>
  4232. <type>eighth</type>
  4233. <stem>up</stem>
  4234. </note>
  4235. <note default-x="247.14" default-y="-171.00" dynamics="141.11">
  4236. <chord/>
  4237. <pitch>
  4238. <step>A</step>
  4239. <octave>4</octave>
  4240. </pitch>
  4241. <duration>1</duration>
  4242. <voice>1</voice>
  4243. <type>eighth</type>
  4244. <stem>up</stem>
  4245. </note>
  4246. <note default-x="272.33" default-y="-186.00" dynamics="141.11">
  4247. <pitch>
  4248. <step>E</step>
  4249. <octave>4</octave>
  4250. </pitch>
  4251. <duration>1</duration>
  4252. <voice>1</voice>
  4253. <type>eighth</type>
  4254. <stem>up</stem>
  4255. <beam number="1">end</beam>
  4256. </note>
  4257. <note default-x="272.33" default-y="-176.00" dynamics="141.11">
  4258. <chord/>
  4259. <pitch>
  4260. <step>G</step>
  4261. <octave>4</octave>
  4262. </pitch>
  4263. <duration>1</duration>
  4264. <voice>1</voice>
  4265. <type>eighth</type>
  4266. <stem>up</stem>
  4267. </note>
  4268. <note default-x="284.19" default-y="-171.00" dynamics="141.11">
  4269. <chord/>
  4270. <pitch>
  4271. <step>A</step>
  4272. <octave>4</octave>
  4273. </pitch>
  4274. <duration>1</duration>
  4275. <voice>1</voice>
  4276. <type>eighth</type>
  4277. <stem>up</stem>
  4278. </note>
  4279. </measure>
  4280. <measure number="12" width="313.95">
  4281. <note default-x="14.00" default-y="-191.00" dynamics="141.11">
  4282. <pitch>
  4283. <step>D</step>
  4284. <octave>4</octave>
  4285. </pitch>
  4286. <duration>1</duration>
  4287. <voice>1</voice>
  4288. <type>eighth</type>
  4289. <stem>up</stem>
  4290. <beam number="1">begin</beam>
  4291. </note>
  4292. <note default-x="14.00" default-y="-181.00" dynamics="141.11">
  4293. <chord/>
  4294. <pitch>
  4295. <step>F</step>
  4296. <alter>1</alter>
  4297. <octave>4</octave>
  4298. </pitch>
  4299. <duration>1</duration>
  4300. <voice>1</voice>
  4301. <type>eighth</type>
  4302. <stem>up</stem>
  4303. </note>
  4304. <note default-x="14.00" default-y="-171.00" dynamics="141.11">
  4305. <chord/>
  4306. <pitch>
  4307. <step>A</step>
  4308. <octave>4</octave>
  4309. </pitch>
  4310. <duration>1</duration>
  4311. <voice>1</voice>
  4312. <type>eighth</type>
  4313. <stem>up</stem>
  4314. </note>
  4315. <note default-x="51.29" default-y="-191.00" dynamics="141.11">
  4316. <pitch>
  4317. <step>D</step>
  4318. <octave>4</octave>
  4319. </pitch>
  4320. <duration>1</duration>
  4321. <voice>1</voice>
  4322. <type>eighth</type>
  4323. <stem>up</stem>
  4324. <beam number="1">continue</beam>
  4325. </note>
  4326. <note default-x="51.29" default-y="-181.00" dynamics="141.11">
  4327. <chord/>
  4328. <pitch>
  4329. <step>F</step>
  4330. <alter>1</alter>
  4331. <octave>4</octave>
  4332. </pitch>
  4333. <duration>1</duration>
  4334. <voice>1</voice>
  4335. <type>eighth</type>
  4336. <stem>up</stem>
  4337. </note>
  4338. <note default-x="51.29" default-y="-171.00" dynamics="141.11">
  4339. <chord/>
  4340. <pitch>
  4341. <step>A</step>
  4342. <octave>4</octave>
  4343. </pitch>
  4344. <duration>1</duration>
  4345. <voice>1</voice>
  4346. <type>eighth</type>
  4347. <stem>up</stem>
  4348. </note>
  4349. <note default-x="88.59" default-y="-196.00" dynamics="141.11">
  4350. <pitch>
  4351. <step>C</step>
  4352. <alter>1</alter>
  4353. <octave>4</octave>
  4354. </pitch>
  4355. <duration>1</duration>
  4356. <voice>1</voice>
  4357. <type>eighth</type>
  4358. <stem>up</stem>
  4359. <beam number="1">continue</beam>
  4360. </note>
  4361. <note default-x="88.59" default-y="-186.00" dynamics="141.11">
  4362. <chord/>
  4363. <pitch>
  4364. <step>E</step>
  4365. <octave>4</octave>
  4366. </pitch>
  4367. <duration>1</duration>
  4368. <voice>1</voice>
  4369. <type>eighth</type>
  4370. <stem>up</stem>
  4371. </note>
  4372. <note default-x="88.59" default-y="-171.00" dynamics="141.11">
  4373. <chord/>
  4374. <pitch>
  4375. <step>A</step>
  4376. <octave>4</octave>
  4377. </pitch>
  4378. <duration>1</duration>
  4379. <voice>1</voice>
  4380. <type>eighth</type>
  4381. <stem>up</stem>
  4382. </note>
  4383. <note default-x="125.88" default-y="-196.00" dynamics="141.11">
  4384. <pitch>
  4385. <step>C</step>
  4386. <alter>1</alter>
  4387. <octave>4</octave>
  4388. </pitch>
  4389. <duration>1</duration>
  4390. <voice>1</voice>
  4391. <type>eighth</type>
  4392. <stem>up</stem>
  4393. <beam number="1">end</beam>
  4394. </note>
  4395. <note default-x="125.88" default-y="-186.00" dynamics="141.11">
  4396. <chord/>
  4397. <pitch>
  4398. <step>E</step>
  4399. <octave>4</octave>
  4400. </pitch>
  4401. <duration>1</duration>
  4402. <voice>1</voice>
  4403. <type>eighth</type>
  4404. <stem>up</stem>
  4405. </note>
  4406. <note default-x="125.88" default-y="-171.00" dynamics="141.11">
  4407. <chord/>
  4408. <pitch>
  4409. <step>A</step>
  4410. <octave>4</octave>
  4411. </pitch>
  4412. <duration>1</duration>
  4413. <voice>1</voice>
  4414. <type>eighth</type>
  4415. <stem>up</stem>
  4416. </note>
  4417. <note default-x="163.17" default-y="-201.00" dynamics="141.11">
  4418. <pitch>
  4419. <step>B</step>
  4420. <octave>3</octave>
  4421. </pitch>
  4422. <duration>1</duration>
  4423. <voice>1</voice>
  4424. <type>eighth</type>
  4425. <stem>up</stem>
  4426. <beam number="1">begin</beam>
  4427. </note>
  4428. <note default-x="163.17" default-y="-191.00" dynamics="141.11">
  4429. <chord/>
  4430. <pitch>
  4431. <step>D</step>
  4432. <octave>4</octave>
  4433. </pitch>
  4434. <duration>1</duration>
  4435. <voice>1</voice>
  4436. <type>eighth</type>
  4437. <stem>up</stem>
  4438. </note>
  4439. <note default-x="163.17" default-y="-171.00" dynamics="141.11">
  4440. <chord/>
  4441. <pitch>
  4442. <step>A</step>
  4443. <octave>4</octave>
  4444. </pitch>
  4445. <duration>1</duration>
  4446. <voice>1</voice>
  4447. <type>eighth</type>
  4448. <stem>up</stem>
  4449. </note>
  4450. <note default-x="200.47" default-y="-201.00" dynamics="141.11">
  4451. <pitch>
  4452. <step>B</step>
  4453. <octave>3</octave>
  4454. </pitch>
  4455. <duration>1</duration>
  4456. <voice>1</voice>
  4457. <type>eighth</type>
  4458. <stem>up</stem>
  4459. <beam number="1">continue</beam>
  4460. </note>
  4461. <note default-x="200.47" default-y="-191.00" dynamics="141.11">
  4462. <chord/>
  4463. <pitch>
  4464. <step>D</step>
  4465. <octave>4</octave>
  4466. </pitch>
  4467. <duration>1</duration>
  4468. <voice>1</voice>
  4469. <type>eighth</type>
  4470. <stem>up</stem>
  4471. </note>
  4472. <note default-x="200.47" default-y="-171.00" dynamics="141.11">
  4473. <chord/>
  4474. <pitch>
  4475. <step>A</step>
  4476. <octave>4</octave>
  4477. </pitch>
  4478. <duration>1</duration>
  4479. <voice>1</voice>
  4480. <type>eighth</type>
  4481. <stem>up</stem>
  4482. </note>
  4483. <note default-x="237.76" default-y="-196.00" dynamics="141.11">
  4484. <pitch>
  4485. <step>C</step>
  4486. <alter>1</alter>
  4487. <octave>4</octave>
  4488. </pitch>
  4489. <duration>1</duration>
  4490. <voice>1</voice>
  4491. <type>eighth</type>
  4492. <stem>up</stem>
  4493. <beam number="1">continue</beam>
  4494. </note>
  4495. <note default-x="237.76" default-y="-186.00" dynamics="141.11">
  4496. <chord/>
  4497. <pitch>
  4498. <step>E</step>
  4499. <octave>4</octave>
  4500. </pitch>
  4501. <duration>1</duration>
  4502. <voice>1</voice>
  4503. <type>eighth</type>
  4504. <stem>up</stem>
  4505. </note>
  4506. <note default-x="237.76" default-y="-171.00" dynamics="141.11">
  4507. <chord/>
  4508. <pitch>
  4509. <step>A</step>
  4510. <octave>4</octave>
  4511. </pitch>
  4512. <duration>1</duration>
  4513. <voice>1</voice>
  4514. <type>eighth</type>
  4515. <stem>up</stem>
  4516. </note>
  4517. <note default-x="275.05" default-y="-196.00" dynamics="141.11">
  4518. <pitch>
  4519. <step>C</step>
  4520. <alter>1</alter>
  4521. <octave>4</octave>
  4522. </pitch>
  4523. <duration>1</duration>
  4524. <voice>1</voice>
  4525. <type>eighth</type>
  4526. <stem>up</stem>
  4527. <beam number="1">end</beam>
  4528. </note>
  4529. <note default-x="275.05" default-y="-186.00" dynamics="141.11">
  4530. <chord/>
  4531. <pitch>
  4532. <step>E</step>
  4533. <octave>4</octave>
  4534. </pitch>
  4535. <duration>1</duration>
  4536. <voice>1</voice>
  4537. <type>eighth</type>
  4538. <stem>up</stem>
  4539. </note>
  4540. <note default-x="275.05" default-y="-171.00" dynamics="141.11">
  4541. <chord/>
  4542. <pitch>
  4543. <step>A</step>
  4544. <octave>4</octave>
  4545. </pitch>
  4546. <duration>1</duration>
  4547. <voice>1</voice>
  4548. <type>eighth</type>
  4549. <stem>up</stem>
  4550. </note>
  4551. </measure>
  4552. <measure number="13" width="374.36">
  4553. <print new-system="yes">
  4554. <staff-layout number="1">
  4555. <staff-distance>106.00</staff-distance>
  4556. </staff-layout>
  4557. </print>
  4558. <note default-x="85.76" default-y="-191.00" dynamics="141.11">
  4559. <pitch>
  4560. <step>D</step>
  4561. <octave>4</octave>
  4562. </pitch>
  4563. <duration>1</duration>
  4564. <voice>1</voice>
  4565. <type>eighth</type>
  4566. <stem>up</stem>
  4567. <beam number="1">begin</beam>
  4568. </note>
  4569. <note default-x="85.76" default-y="-181.00" dynamics="141.11">
  4570. <chord/>
  4571. <pitch>
  4572. <step>F</step>
  4573. <alter>1</alter>
  4574. <octave>4</octave>
  4575. </pitch>
  4576. <duration>1</duration>
  4577. <voice>1</voice>
  4578. <type>eighth</type>
  4579. <stem>up</stem>
  4580. </note>
  4581. <note default-x="85.76" default-y="-171.00" dynamics="141.11">
  4582. <chord/>
  4583. <pitch>
  4584. <step>A</step>
  4585. <octave>4</octave>
  4586. </pitch>
  4587. <duration>1</duration>
  4588. <voice>1</voice>
  4589. <type>eighth</type>
  4590. <stem>up</stem>
  4591. </note>
  4592. <note default-x="120.75" default-y="-191.00" dynamics="141.11">
  4593. <pitch>
  4594. <step>D</step>
  4595. <octave>4</octave>
  4596. </pitch>
  4597. <duration>1</duration>
  4598. <voice>1</voice>
  4599. <type>eighth</type>
  4600. <stem>up</stem>
  4601. <beam number="1">continue</beam>
  4602. </note>
  4603. <note default-x="120.75" default-y="-181.00" dynamics="141.11">
  4604. <chord/>
  4605. <pitch>
  4606. <step>F</step>
  4607. <alter>1</alter>
  4608. <octave>4</octave>
  4609. </pitch>
  4610. <duration>1</duration>
  4611. <voice>1</voice>
  4612. <type>eighth</type>
  4613. <stem>up</stem>
  4614. </note>
  4615. <note default-x="120.75" default-y="-171.00" dynamics="141.11">
  4616. <chord/>
  4617. <pitch>
  4618. <step>A</step>
  4619. <octave>4</octave>
  4620. </pitch>
  4621. <duration>1</duration>
  4622. <voice>1</voice>
  4623. <type>eighth</type>
  4624. <stem>up</stem>
  4625. </note>
  4626. <note default-x="155.74" default-y="-191.00" dynamics="141.11">
  4627. <pitch>
  4628. <step>D</step>
  4629. <octave>4</octave>
  4630. </pitch>
  4631. <duration>1</duration>
  4632. <voice>1</voice>
  4633. <type>eighth</type>
  4634. <stem>up</stem>
  4635. <beam number="1">continue</beam>
  4636. </note>
  4637. <note default-x="155.74" default-y="-181.00" dynamics="141.11">
  4638. <chord/>
  4639. <pitch>
  4640. <step>F</step>
  4641. <alter>1</alter>
  4642. <octave>4</octave>
  4643. </pitch>
  4644. <duration>1</duration>
  4645. <voice>1</voice>
  4646. <type>eighth</type>
  4647. <stem>up</stem>
  4648. </note>
  4649. <note default-x="155.74" default-y="-171.00" dynamics="141.11">
  4650. <chord/>
  4651. <pitch>
  4652. <step>A</step>
  4653. <octave>4</octave>
  4654. </pitch>
  4655. <duration>1</duration>
  4656. <voice>1</voice>
  4657. <type>eighth</type>
  4658. <stem>up</stem>
  4659. </note>
  4660. <note default-x="190.73" default-y="-191.00" dynamics="141.11">
  4661. <pitch>
  4662. <step>D</step>
  4663. <octave>4</octave>
  4664. </pitch>
  4665. <duration>1</duration>
  4666. <voice>1</voice>
  4667. <type>eighth</type>
  4668. <stem>up</stem>
  4669. <beam number="1">end</beam>
  4670. </note>
  4671. <note default-x="190.73" default-y="-181.00" dynamics="141.11">
  4672. <chord/>
  4673. <pitch>
  4674. <step>F</step>
  4675. <alter>1</alter>
  4676. <octave>4</octave>
  4677. </pitch>
  4678. <duration>1</duration>
  4679. <voice>1</voice>
  4680. <type>eighth</type>
  4681. <stem>up</stem>
  4682. </note>
  4683. <note default-x="190.73" default-y="-171.00" dynamics="141.11">
  4684. <chord/>
  4685. <pitch>
  4686. <step>A</step>
  4687. <octave>4</octave>
  4688. </pitch>
  4689. <duration>1</duration>
  4690. <voice>1</voice>
  4691. <type>eighth</type>
  4692. <stem>up</stem>
  4693. </note>
  4694. <note default-x="232.77" default-y="-186.00" dynamics="141.11">
  4695. <pitch>
  4696. <step>E</step>
  4697. <octave>4</octave>
  4698. </pitch>
  4699. <duration>1</duration>
  4700. <voice>1</voice>
  4701. <type>eighth</type>
  4702. <stem>up</stem>
  4703. <beam number="1">begin</beam>
  4704. </note>
  4705. <note default-x="232.77" default-y="-176.00" dynamics="141.11">
  4706. <chord/>
  4707. <pitch>
  4708. <step>G</step>
  4709. <octave>4</octave>
  4710. </pitch>
  4711. <duration>1</duration>
  4712. <voice>1</voice>
  4713. <type>eighth</type>
  4714. <stem>up</stem>
  4715. </note>
  4716. <note default-x="244.63" default-y="-171.00" dynamics="141.11">
  4717. <chord/>
  4718. <pitch>
  4719. <step>A</step>
  4720. <octave>4</octave>
  4721. </pitch>
  4722. <duration>1</duration>
  4723. <voice>1</voice>
  4724. <type>eighth</type>
  4725. <stem>up</stem>
  4726. </note>
  4727. <note default-x="267.76" default-y="-186.00" dynamics="141.11">
  4728. <pitch>
  4729. <step>E</step>
  4730. <octave>4</octave>
  4731. </pitch>
  4732. <duration>1</duration>
  4733. <voice>1</voice>
  4734. <type>eighth</type>
  4735. <stem>up</stem>
  4736. <beam number="1">continue</beam>
  4737. </note>
  4738. <note default-x="267.76" default-y="-176.00" dynamics="141.11">
  4739. <chord/>
  4740. <pitch>
  4741. <step>G</step>
  4742. <octave>4</octave>
  4743. </pitch>
  4744. <duration>1</duration>
  4745. <voice>1</voice>
  4746. <type>eighth</type>
  4747. <stem>up</stem>
  4748. </note>
  4749. <note default-x="279.62" default-y="-171.00" dynamics="141.11">
  4750. <chord/>
  4751. <pitch>
  4752. <step>A</step>
  4753. <octave>4</octave>
  4754. </pitch>
  4755. <duration>1</duration>
  4756. <voice>1</voice>
  4757. <type>eighth</type>
  4758. <stem>up</stem>
  4759. </note>
  4760. <note default-x="302.74" default-y="-186.00" dynamics="141.11">
  4761. <pitch>
  4762. <step>E</step>
  4763. <octave>4</octave>
  4764. </pitch>
  4765. <duration>1</duration>
  4766. <voice>1</voice>
  4767. <type>eighth</type>
  4768. <stem>up</stem>
  4769. <beam number="1">continue</beam>
  4770. </note>
  4771. <note default-x="302.74" default-y="-176.00" dynamics="141.11">
  4772. <chord/>
  4773. <pitch>
  4774. <step>G</step>
  4775. <octave>4</octave>
  4776. </pitch>
  4777. <duration>1</duration>
  4778. <voice>1</voice>
  4779. <type>eighth</type>
  4780. <stem>up</stem>
  4781. </note>
  4782. <note default-x="314.61" default-y="-171.00" dynamics="141.11">
  4783. <chord/>
  4784. <pitch>
  4785. <step>A</step>
  4786. <octave>4</octave>
  4787. </pitch>
  4788. <duration>1</duration>
  4789. <voice>1</voice>
  4790. <type>eighth</type>
  4791. <stem>up</stem>
  4792. </note>
  4793. <note default-x="337.73" default-y="-186.00" dynamics="141.11">
  4794. <pitch>
  4795. <step>E</step>
  4796. <octave>4</octave>
  4797. </pitch>
  4798. <duration>1</duration>
  4799. <voice>1</voice>
  4800. <type>eighth</type>
  4801. <stem>up</stem>
  4802. <beam number="1">end</beam>
  4803. </note>
  4804. <note default-x="337.73" default-y="-176.00" dynamics="141.11">
  4805. <chord/>
  4806. <pitch>
  4807. <step>G</step>
  4808. <octave>4</octave>
  4809. </pitch>
  4810. <duration>1</duration>
  4811. <voice>1</voice>
  4812. <type>eighth</type>
  4813. <stem>up</stem>
  4814. </note>
  4815. <note default-x="349.60" default-y="-171.00" dynamics="141.11">
  4816. <chord/>
  4817. <pitch>
  4818. <step>A</step>
  4819. <octave>4</octave>
  4820. </pitch>
  4821. <duration>1</duration>
  4822. <voice>1</voice>
  4823. <type>eighth</type>
  4824. <stem>up</stem>
  4825. </note>
  4826. </measure>
  4827. <measure number="14" width="323.63">
  4828. <note>
  4829. <rest/>
  4830. <duration>1</duration>
  4831. <voice>1</voice>
  4832. <type>eighth</type>
  4833. </note>
  4834. <note default-x="65.35" default-y="-206.00" dynamics="141.11">
  4835. <pitch>
  4836. <step>A</step>
  4837. <octave>3</octave>
  4838. </pitch>
  4839. <duration>1</duration>
  4840. <voice>1</voice>
  4841. <type>eighth</type>
  4842. <stem>up</stem>
  4843. <beam number="1">begin</beam>
  4844. </note>
  4845. <note default-x="65.35" default-y="-191.00" dynamics="141.11">
  4846. <chord/>
  4847. <pitch>
  4848. <step>D</step>
  4849. <octave>4</octave>
  4850. </pitch>
  4851. <duration>1</duration>
  4852. <voice>1</voice>
  4853. <type>eighth</type>
  4854. <stem>up</stem>
  4855. </note>
  4856. <note default-x="65.35" default-y="-181.00" dynamics="141.11">
  4857. <chord/>
  4858. <pitch>
  4859. <step>F</step>
  4860. <alter>1</alter>
  4861. <octave>4</octave>
  4862. </pitch>
  4863. <duration>1</duration>
  4864. <voice>1</voice>
  4865. <type>eighth</type>
  4866. <stem>up</stem>
  4867. </note>
  4868. <note default-x="101.96" default-y="-206.00" dynamics="141.11">
  4869. <pitch>
  4870. <step>A</step>
  4871. <octave>3</octave>
  4872. </pitch>
  4873. <duration>1</duration>
  4874. <voice>1</voice>
  4875. <type>eighth</type>
  4876. <stem>up</stem>
  4877. <beam number="1">continue</beam>
  4878. </note>
  4879. <note default-x="101.96" default-y="-191.00" dynamics="141.11">
  4880. <chord/>
  4881. <pitch>
  4882. <step>D</step>
  4883. <octave>4</octave>
  4884. </pitch>
  4885. <duration>1</duration>
  4886. <voice>1</voice>
  4887. <type>eighth</type>
  4888. <stem>up</stem>
  4889. </note>
  4890. <note default-x="101.96" default-y="-181.00" dynamics="141.11">
  4891. <chord/>
  4892. <pitch>
  4893. <step>F</step>
  4894. <alter>1</alter>
  4895. <octave>4</octave>
  4896. </pitch>
  4897. <duration>1</duration>
  4898. <voice>1</voice>
  4899. <type>eighth</type>
  4900. <stem>up</stem>
  4901. </note>
  4902. <note default-x="138.57" default-y="-206.00" dynamics="141.11">
  4903. <pitch>
  4904. <step>A</step>
  4905. <octave>3</octave>
  4906. </pitch>
  4907. <duration>1</duration>
  4908. <voice>1</voice>
  4909. <type>eighth</type>
  4910. <stem>up</stem>
  4911. <beam number="1">end</beam>
  4912. </note>
  4913. <note default-x="138.57" default-y="-191.00" dynamics="141.11">
  4914. <chord/>
  4915. <pitch>
  4916. <step>D</step>
  4917. <octave>4</octave>
  4918. </pitch>
  4919. <duration>1</duration>
  4920. <voice>1</voice>
  4921. <type>eighth</type>
  4922. <stem>up</stem>
  4923. </note>
  4924. <note default-x="138.57" default-y="-181.00" dynamics="141.11">
  4925. <chord/>
  4926. <pitch>
  4927. <step>F</step>
  4928. <alter>1</alter>
  4929. <octave>4</octave>
  4930. </pitch>
  4931. <duration>1</duration>
  4932. <voice>1</voice>
  4933. <type>eighth</type>
  4934. <stem>up</stem>
  4935. </note>
  4936. <note default-x="175.18" default-y="-206.00" dynamics="141.11">
  4937. <pitch>
  4938. <step>A</step>
  4939. <octave>3</octave>
  4940. </pitch>
  4941. <duration>1</duration>
  4942. <voice>1</voice>
  4943. <type>eighth</type>
  4944. <stem>up</stem>
  4945. <beam number="1">begin</beam>
  4946. </note>
  4947. <note default-x="175.18" default-y="-196.00" dynamics="141.11">
  4948. <chord/>
  4949. <pitch>
  4950. <step>C</step>
  4951. <alter>1</alter>
  4952. <octave>4</octave>
  4953. </pitch>
  4954. <duration>1</duration>
  4955. <voice>1</voice>
  4956. <type>eighth</type>
  4957. <stem>up</stem>
  4958. </note>
  4959. <note default-x="175.18" default-y="-176.00" dynamics="141.11">
  4960. <chord/>
  4961. <pitch>
  4962. <step>G</step>
  4963. <octave>4</octave>
  4964. </pitch>
  4965. <duration>1</duration>
  4966. <voice>1</voice>
  4967. <type>eighth</type>
  4968. <stem>up</stem>
  4969. </note>
  4970. <note default-x="211.78" default-y="-206.00" dynamics="141.11">
  4971. <pitch>
  4972. <step>A</step>
  4973. <octave>3</octave>
  4974. </pitch>
  4975. <duration>1</duration>
  4976. <voice>1</voice>
  4977. <type>eighth</type>
  4978. <stem>up</stem>
  4979. <beam number="1">continue</beam>
  4980. </note>
  4981. <note default-x="211.78" default-y="-196.00" dynamics="141.11">
  4982. <chord/>
  4983. <pitch>
  4984. <step>C</step>
  4985. <alter>1</alter>
  4986. <octave>4</octave>
  4987. </pitch>
  4988. <duration>1</duration>
  4989. <voice>1</voice>
  4990. <type>eighth</type>
  4991. <stem>up</stem>
  4992. </note>
  4993. <note default-x="211.78" default-y="-176.00" dynamics="141.11">
  4994. <chord/>
  4995. <pitch>
  4996. <step>G</step>
  4997. <octave>4</octave>
  4998. </pitch>
  4999. <duration>1</duration>
  5000. <voice>1</voice>
  5001. <type>eighth</type>
  5002. <stem>up</stem>
  5003. </note>
  5004. <note default-x="248.39" default-y="-196.00" dynamics="141.11">
  5005. <pitch>
  5006. <step>C</step>
  5007. <octave>4</octave>
  5008. </pitch>
  5009. <duration>1</duration>
  5010. <voice>1</voice>
  5011. <type>eighth</type>
  5012. <accidental>natural</accidental>
  5013. <stem>up</stem>
  5014. <beam number="1">continue</beam>
  5015. </note>
  5016. <note default-x="260.26" default-y="-191.00" dynamics="141.11">
  5017. <chord/>
  5018. <pitch>
  5019. <step>D</step>
  5020. <octave>4</octave>
  5021. </pitch>
  5022. <duration>1</duration>
  5023. <voice>1</voice>
  5024. <type>eighth</type>
  5025. <stem>up</stem>
  5026. </note>
  5027. <note default-x="248.39" default-y="-171.00" dynamics="141.11">
  5028. <chord/>
  5029. <pitch>
  5030. <step>A</step>
  5031. <octave>4</octave>
  5032. </pitch>
  5033. <duration>1</duration>
  5034. <voice>1</voice>
  5035. <type>eighth</type>
  5036. <stem>up</stem>
  5037. </note>
  5038. <note default-x="285.42" default-y="-196.00" dynamics="141.11">
  5039. <pitch>
  5040. <step>C</step>
  5041. <octave>4</octave>
  5042. </pitch>
  5043. <duration>1</duration>
  5044. <voice>1</voice>
  5045. <type>eighth</type>
  5046. <stem>up</stem>
  5047. <beam number="1">end</beam>
  5048. </note>
  5049. <note default-x="297.29" default-y="-191.00" dynamics="141.11">
  5050. <chord/>
  5051. <pitch>
  5052. <step>D</step>
  5053. <octave>4</octave>
  5054. </pitch>
  5055. <duration>1</duration>
  5056. <voice>1</voice>
  5057. <type>eighth</type>
  5058. <stem>up</stem>
  5059. </note>
  5060. <note default-x="285.42" default-y="-171.00" dynamics="141.11">
  5061. <chord/>
  5062. <pitch>
  5063. <step>A</step>
  5064. <octave>4</octave>
  5065. </pitch>
  5066. <duration>1</duration>
  5067. <voice>1</voice>
  5068. <type>eighth</type>
  5069. <stem>up</stem>
  5070. </note>
  5071. </measure>
  5072. <measure number="15" width="292.88">
  5073. <note>
  5074. <rest/>
  5075. <duration>1</duration>
  5076. <voice>1</voice>
  5077. <type>eighth</type>
  5078. </note>
  5079. <note default-x="59.30" default-y="-201.00" dynamics="141.11">
  5080. <pitch>
  5081. <step>B</step>
  5082. <octave>3</octave>
  5083. </pitch>
  5084. <duration>1</duration>
  5085. <voice>1</voice>
  5086. <type>eighth</type>
  5087. <stem>up</stem>
  5088. <beam number="1">begin</beam>
  5089. </note>
  5090. <note default-x="59.30" default-y="-191.00" dynamics="141.11">
  5091. <chord/>
  5092. <pitch>
  5093. <step>D</step>
  5094. <octave>4</octave>
  5095. </pitch>
  5096. <duration>1</duration>
  5097. <voice>1</voice>
  5098. <type>eighth</type>
  5099. <stem>up</stem>
  5100. </note>
  5101. <note default-x="59.30" default-y="-166.00" dynamics="141.11">
  5102. <chord/>
  5103. <pitch>
  5104. <step>B</step>
  5105. <octave>4</octave>
  5106. </pitch>
  5107. <duration>1</duration>
  5108. <voice>1</voice>
  5109. <type>eighth</type>
  5110. <stem>up</stem>
  5111. </note>
  5112. <note default-x="91.19" default-y="-201.00" dynamics="141.11">
  5113. <pitch>
  5114. <step>B</step>
  5115. <octave>3</octave>
  5116. </pitch>
  5117. <duration>1</duration>
  5118. <voice>1</voice>
  5119. <type>eighth</type>
  5120. <stem>up</stem>
  5121. <beam number="1">continue</beam>
  5122. </note>
  5123. <note default-x="91.19" default-y="-191.00" dynamics="141.11">
  5124. <chord/>
  5125. <pitch>
  5126. <step>D</step>
  5127. <octave>4</octave>
  5128. </pitch>
  5129. <duration>1</duration>
  5130. <voice>1</voice>
  5131. <type>eighth</type>
  5132. <stem>up</stem>
  5133. </note>
  5134. <note default-x="91.19" default-y="-166.00" dynamics="141.11">
  5135. <chord/>
  5136. <pitch>
  5137. <step>B</step>
  5138. <octave>4</octave>
  5139. </pitch>
  5140. <duration>1</duration>
  5141. <voice>1</voice>
  5142. <type>eighth</type>
  5143. <stem>up</stem>
  5144. </note>
  5145. <note default-x="123.08" default-y="-201.00" dynamics="141.11">
  5146. <pitch>
  5147. <step>B</step>
  5148. <octave>3</octave>
  5149. </pitch>
  5150. <duration>1</duration>
  5151. <voice>1</voice>
  5152. <type>eighth</type>
  5153. <stem>up</stem>
  5154. <beam number="1">end</beam>
  5155. </note>
  5156. <note default-x="123.08" default-y="-191.00" dynamics="141.11">
  5157. <chord/>
  5158. <pitch>
  5159. <step>D</step>
  5160. <octave>4</octave>
  5161. </pitch>
  5162. <duration>1</duration>
  5163. <voice>1</voice>
  5164. <type>eighth</type>
  5165. <stem>up</stem>
  5166. </note>
  5167. <note default-x="123.08" default-y="-166.00" dynamics="141.11">
  5168. <chord/>
  5169. <pitch>
  5170. <step>B</step>
  5171. <octave>4</octave>
  5172. </pitch>
  5173. <duration>1</duration>
  5174. <voice>1</voice>
  5175. <type>eighth</type>
  5176. <stem>up</stem>
  5177. </note>
  5178. <direction placement="below">
  5179. <direction-type>
  5180. <dynamics default-x="5.06" default-y="-80.00" relative-x="4.23" relative-y="10.21">
  5181. <p/>
  5182. </dynamics>
  5183. </direction-type>
  5184. <sound dynamics="72.22"/>
  5185. </direction>
  5186. <note>
  5187. <rest/>
  5188. <duration>1</duration>
  5189. <voice>1</voice>
  5190. <type>eighth</type>
  5191. </note>
  5192. <note default-x="195.62" default-y="-191.00" dynamics="141.11">
  5193. <pitch>
  5194. <step>D</step>
  5195. <octave>4</octave>
  5196. </pitch>
  5197. <duration>1</duration>
  5198. <voice>1</voice>
  5199. <type>eighth</type>
  5200. <stem>up</stem>
  5201. <beam number="1">begin</beam>
  5202. </note>
  5203. <note default-x="195.62" default-y="-181.00" dynamics="141.11">
  5204. <chord/>
  5205. <pitch>
  5206. <step>F</step>
  5207. <alter>1</alter>
  5208. <octave>4</octave>
  5209. </pitch>
  5210. <duration>1</duration>
  5211. <voice>1</voice>
  5212. <type>eighth</type>
  5213. <stem>up</stem>
  5214. </note>
  5215. <note default-x="195.62" default-y="-166.00" dynamics="141.11">
  5216. <chord/>
  5217. <pitch>
  5218. <step>B</step>
  5219. <octave>4</octave>
  5220. </pitch>
  5221. <duration>1</duration>
  5222. <voice>1</voice>
  5223. <type>eighth</type>
  5224. <stem>up</stem>
  5225. </note>
  5226. <note default-x="227.51" default-y="-191.00" dynamics="141.11">
  5227. <pitch>
  5228. <step>D</step>
  5229. <octave>4</octave>
  5230. </pitch>
  5231. <duration>1</duration>
  5232. <voice>1</voice>
  5233. <type>eighth</type>
  5234. <stem>up</stem>
  5235. <beam number="1">continue</beam>
  5236. </note>
  5237. <note default-x="227.51" default-y="-181.00" dynamics="141.11">
  5238. <chord/>
  5239. <pitch>
  5240. <step>F</step>
  5241. <alter>1</alter>
  5242. <octave>4</octave>
  5243. </pitch>
  5244. <duration>1</duration>
  5245. <voice>1</voice>
  5246. <type>eighth</type>
  5247. <stem>up</stem>
  5248. </note>
  5249. <note default-x="227.51" default-y="-166.00" dynamics="141.11">
  5250. <chord/>
  5251. <pitch>
  5252. <step>B</step>
  5253. <octave>4</octave>
  5254. </pitch>
  5255. <duration>1</duration>
  5256. <voice>1</voice>
  5257. <type>eighth</type>
  5258. <stem>up</stem>
  5259. </note>
  5260. <note default-x="259.39" default-y="-191.00" dynamics="141.11">
  5261. <pitch>
  5262. <step>D</step>
  5263. <octave>4</octave>
  5264. </pitch>
  5265. <duration>1</duration>
  5266. <voice>1</voice>
  5267. <type>eighth</type>
  5268. <stem>up</stem>
  5269. <beam number="1">end</beam>
  5270. </note>
  5271. <note default-x="259.39" default-y="-181.00" dynamics="141.11">
  5272. <chord/>
  5273. <pitch>
  5274. <step>F</step>
  5275. <alter>1</alter>
  5276. <octave>4</octave>
  5277. </pitch>
  5278. <duration>1</duration>
  5279. <voice>1</voice>
  5280. <type>eighth</type>
  5281. <stem>up</stem>
  5282. </note>
  5283. <note default-x="259.39" default-y="-166.00" dynamics="141.11">
  5284. <chord/>
  5285. <pitch>
  5286. <step>B</step>
  5287. <octave>4</octave>
  5288. </pitch>
  5289. <duration>1</duration>
  5290. <voice>1</voice>
  5291. <type>eighth</type>
  5292. <stem>up</stem>
  5293. </note>
  5294. </measure>
  5295. <measure number="16" width="298.00">
  5296. <print new-system="yes">
  5297. <staff-layout number="1">
  5298. <staff-distance>106.00</staff-distance>
  5299. </staff-layout>
  5300. </print>
  5301. <note>
  5302. <rest/>
  5303. <duration>1</duration>
  5304. <voice>1</voice>
  5305. <type>eighth</type>
  5306. </note>
  5307. <note default-x="108.86" default-y="-191.00" dynamics="141.11">
  5308. <pitch>
  5309. <step>D</step>
  5310. <octave>4</octave>
  5311. </pitch>
  5312. <duration>1</duration>
  5313. <voice>1</voice>
  5314. <type>eighth</type>
  5315. <stem>up</stem>
  5316. <beam number="1">begin</beam>
  5317. </note>
  5318. <note default-x="108.86" default-y="-181.00" dynamics="141.11">
  5319. <chord/>
  5320. <pitch>
  5321. <step>F</step>
  5322. <alter>1</alter>
  5323. <octave>4</octave>
  5324. </pitch>
  5325. <duration>1</duration>
  5326. <voice>1</voice>
  5327. <type>eighth</type>
  5328. <stem>up</stem>
  5329. </note>
  5330. <note default-x="108.86" default-y="-171.00" dynamics="141.11">
  5331. <chord/>
  5332. <pitch>
  5333. <step>A</step>
  5334. <octave>4</octave>
  5335. </pitch>
  5336. <duration>1</duration>
  5337. <voice>1</voice>
  5338. <type>eighth</type>
  5339. <stem>up</stem>
  5340. </note>
  5341. <note default-x="128.72" default-y="-191.00" dynamics="141.11">
  5342. <pitch>
  5343. <step>D</step>
  5344. <octave>4</octave>
  5345. </pitch>
  5346. <duration>1</duration>
  5347. <voice>1</voice>
  5348. <type>eighth</type>
  5349. <stem>up</stem>
  5350. <beam number="1">continue</beam>
  5351. </note>
  5352. <note default-x="128.72" default-y="-181.00" dynamics="141.11">
  5353. <chord/>
  5354. <pitch>
  5355. <step>F</step>
  5356. <alter>1</alter>
  5357. <octave>4</octave>
  5358. </pitch>
  5359. <duration>1</duration>
  5360. <voice>1</voice>
  5361. <type>eighth</type>
  5362. <stem>up</stem>
  5363. </note>
  5364. <note default-x="128.72" default-y="-171.00" dynamics="141.11">
  5365. <chord/>
  5366. <pitch>
  5367. <step>A</step>
  5368. <octave>4</octave>
  5369. </pitch>
  5370. <duration>1</duration>
  5371. <voice>1</voice>
  5372. <type>eighth</type>
  5373. <stem>up</stem>
  5374. </note>
  5375. <note default-x="148.57" default-y="-191.00" dynamics="141.11">
  5376. <pitch>
  5377. <step>D</step>
  5378. <octave>4</octave>
  5379. </pitch>
  5380. <duration>1</duration>
  5381. <voice>1</voice>
  5382. <type>eighth</type>
  5383. <stem>up</stem>
  5384. <beam number="1">end</beam>
  5385. </note>
  5386. <note default-x="148.57" default-y="-181.00" dynamics="141.11">
  5387. <chord/>
  5388. <pitch>
  5389. <step>F</step>
  5390. <alter>1</alter>
  5391. <octave>4</octave>
  5392. </pitch>
  5393. <duration>1</duration>
  5394. <voice>1</voice>
  5395. <type>eighth</type>
  5396. <stem>up</stem>
  5397. </note>
  5398. <note default-x="148.57" default-y="-171.00" dynamics="141.11">
  5399. <chord/>
  5400. <pitch>
  5401. <step>A</step>
  5402. <octave>4</octave>
  5403. </pitch>
  5404. <duration>1</duration>
  5405. <voice>1</voice>
  5406. <type>eighth</type>
  5407. <stem>up</stem>
  5408. </note>
  5409. <note>
  5410. <rest/>
  5411. <duration>1</duration>
  5412. <voice>1</voice>
  5413. <type>eighth</type>
  5414. </note>
  5415. <note default-x="203.30" default-y="-186.00" dynamics="141.11">
  5416. <pitch>
  5417. <step>E</step>
  5418. <octave>4</octave>
  5419. </pitch>
  5420. <duration>1</duration>
  5421. <voice>1</voice>
  5422. <type>eighth</type>
  5423. <stem>up</stem>
  5424. <beam number="1">begin</beam>
  5425. </note>
  5426. <note default-x="215.17" default-y="-181.00" dynamics="141.11">
  5427. <chord/>
  5428. <pitch>
  5429. <step>F</step>
  5430. <alter>1</alter>
  5431. <octave>4</octave>
  5432. </pitch>
  5433. <duration>1</duration>
  5434. <voice>1</voice>
  5435. <type>eighth</type>
  5436. <stem>up</stem>
  5437. </note>
  5438. <note default-x="203.30" default-y="-161.00" dynamics="141.11">
  5439. <chord/>
  5440. <pitch>
  5441. <step>C</step>
  5442. <alter>1</alter>
  5443. <octave>5</octave>
  5444. </pitch>
  5445. <duration>1</duration>
  5446. <voice>1</voice>
  5447. <type>eighth</type>
  5448. <stem>up</stem>
  5449. </note>
  5450. <note default-x="232.33" default-y="-186.00" dynamics="141.11">
  5451. <pitch>
  5452. <step>E</step>
  5453. <octave>4</octave>
  5454. </pitch>
  5455. <duration>1</duration>
  5456. <voice>1</voice>
  5457. <type>eighth</type>
  5458. <stem>up</stem>
  5459. <beam number="1">continue</beam>
  5460. </note>
  5461. <note default-x="244.20" default-y="-181.00" dynamics="141.11">
  5462. <chord/>
  5463. <pitch>
  5464. <step>F</step>
  5465. <alter>1</alter>
  5466. <octave>4</octave>
  5467. </pitch>
  5468. <duration>1</duration>
  5469. <voice>1</voice>
  5470. <type>eighth</type>
  5471. <stem>up</stem>
  5472. </note>
  5473. <note default-x="232.33" default-y="-161.00" dynamics="141.11">
  5474. <chord/>
  5475. <pitch>
  5476. <step>C</step>
  5477. <alter>1</alter>
  5478. <octave>5</octave>
  5479. </pitch>
  5480. <duration>1</duration>
  5481. <voice>1</voice>
  5482. <type>eighth</type>
  5483. <stem>up</stem>
  5484. </note>
  5485. <note default-x="261.37" default-y="-186.00" dynamics="141.11">
  5486. <pitch>
  5487. <step>E</step>
  5488. <octave>4</octave>
  5489. </pitch>
  5490. <duration>1</duration>
  5491. <voice>1</voice>
  5492. <type>eighth</type>
  5493. <stem>up</stem>
  5494. <beam number="1">end</beam>
  5495. </note>
  5496. <note default-x="273.23" default-y="-181.00" dynamics="141.11">
  5497. <chord/>
  5498. <pitch>
  5499. <step>F</step>
  5500. <alter>1</alter>
  5501. <octave>4</octave>
  5502. </pitch>
  5503. <duration>1</duration>
  5504. <voice>1</voice>
  5505. <type>eighth</type>
  5506. <stem>up</stem>
  5507. </note>
  5508. <note default-x="261.37" default-y="-161.00" dynamics="141.11">
  5509. <chord/>
  5510. <pitch>
  5511. <step>C</step>
  5512. <alter>1</alter>
  5513. <octave>5</octave>
  5514. </pitch>
  5515. <duration>1</duration>
  5516. <voice>1</voice>
  5517. <type>eighth</type>
  5518. <stem>up</stem>
  5519. </note>
  5520. </measure>
  5521. <measure number="17" width="223.18">
  5522. <note>
  5523. <rest/>
  5524. <duration>1</duration>
  5525. <voice>1</voice>
  5526. <type>eighth</type>
  5527. </note>
  5528. <note default-x="49.52" default-y="-191.00" dynamics="141.11">
  5529. <pitch>
  5530. <step>D</step>
  5531. <octave>4</octave>
  5532. </pitch>
  5533. <duration>1</duration>
  5534. <voice>1</voice>
  5535. <type>eighth</type>
  5536. <stem>up</stem>
  5537. <beam number="1">begin</beam>
  5538. </note>
  5539. <note default-x="49.52" default-y="-181.00" dynamics="141.11">
  5540. <chord/>
  5541. <pitch>
  5542. <step>F</step>
  5543. <alter>1</alter>
  5544. <octave>4</octave>
  5545. </pitch>
  5546. <duration>1</duration>
  5547. <voice>1</voice>
  5548. <type>eighth</type>
  5549. <stem>up</stem>
  5550. </note>
  5551. <note default-x="49.52" default-y="-156.00" dynamics="141.11">
  5552. <chord/>
  5553. <pitch>
  5554. <step>D</step>
  5555. <octave>5</octave>
  5556. </pitch>
  5557. <duration>1</duration>
  5558. <voice>1</voice>
  5559. <type>eighth</type>
  5560. <stem>up</stem>
  5561. </note>
  5562. <note default-x="70.30" default-y="-191.00" dynamics="141.11">
  5563. <pitch>
  5564. <step>D</step>
  5565. <octave>4</octave>
  5566. </pitch>
  5567. <duration>1</duration>
  5568. <voice>1</voice>
  5569. <type>eighth</type>
  5570. <stem>up</stem>
  5571. <beam number="1">continue</beam>
  5572. </note>
  5573. <note default-x="70.30" default-y="-181.00" dynamics="141.11">
  5574. <chord/>
  5575. <pitch>
  5576. <step>F</step>
  5577. <alter>1</alter>
  5578. <octave>4</octave>
  5579. </pitch>
  5580. <duration>1</duration>
  5581. <voice>1</voice>
  5582. <type>eighth</type>
  5583. <stem>up</stem>
  5584. </note>
  5585. <note default-x="70.30" default-y="-156.00" dynamics="141.11">
  5586. <chord/>
  5587. <pitch>
  5588. <step>D</step>
  5589. <octave>5</octave>
  5590. </pitch>
  5591. <duration>1</duration>
  5592. <voice>1</voice>
  5593. <type>eighth</type>
  5594. <stem>up</stem>
  5595. </note>
  5596. <note default-x="91.07" default-y="-191.00" dynamics="141.11">
  5597. <pitch>
  5598. <step>D</step>
  5599. <octave>4</octave>
  5600. </pitch>
  5601. <duration>1</duration>
  5602. <voice>1</voice>
  5603. <type>eighth</type>
  5604. <stem>up</stem>
  5605. <beam number="1">end</beam>
  5606. </note>
  5607. <note default-x="91.07" default-y="-181.00" dynamics="141.11">
  5608. <chord/>
  5609. <pitch>
  5610. <step>F</step>
  5611. <alter>1</alter>
  5612. <octave>4</octave>
  5613. </pitch>
  5614. <duration>1</duration>
  5615. <voice>1</voice>
  5616. <type>eighth</type>
  5617. <stem>up</stem>
  5618. </note>
  5619. <note default-x="91.07" default-y="-156.00" dynamics="141.11">
  5620. <chord/>
  5621. <pitch>
  5622. <step>D</step>
  5623. <octave>5</octave>
  5624. </pitch>
  5625. <duration>1</duration>
  5626. <voice>1</voice>
  5627. <type>eighth</type>
  5628. <stem>up</stem>
  5629. </note>
  5630. <note>
  5631. <rest/>
  5632. <duration>1</duration>
  5633. <voice>1</voice>
  5634. <type>eighth</type>
  5635. </note>
  5636. <note default-x="137.13" default-y="-191.00" dynamics="141.11">
  5637. <pitch>
  5638. <step>D</step>
  5639. <octave>4</octave>
  5640. </pitch>
  5641. <duration>1</duration>
  5642. <voice>1</voice>
  5643. <type>eighth</type>
  5644. <stem>up</stem>
  5645. <beam number="1">begin</beam>
  5646. </note>
  5647. <note default-x="137.13" default-y="-181.00" dynamics="141.11">
  5648. <chord/>
  5649. <pitch>
  5650. <step>F</step>
  5651. <octave>4</octave>
  5652. </pitch>
  5653. <duration>1</duration>
  5654. <voice>1</voice>
  5655. <type>eighth</type>
  5656. <accidental>natural</accidental>
  5657. <stem>up</stem>
  5658. </note>
  5659. <note default-x="137.13" default-y="-166.00" dynamics="141.11">
  5660. <chord/>
  5661. <pitch>
  5662. <step>B</step>
  5663. <octave>4</octave>
  5664. </pitch>
  5665. <duration>1</duration>
  5666. <voice>1</voice>
  5667. <type>eighth</type>
  5668. <stem>up</stem>
  5669. </note>
  5670. <note default-x="166.18" default-y="-191.00" dynamics="141.11">
  5671. <pitch>
  5672. <step>D</step>
  5673. <octave>4</octave>
  5674. </pitch>
  5675. <duration>1</duration>
  5676. <voice>1</voice>
  5677. <type>eighth</type>
  5678. <stem>up</stem>
  5679. <beam number="1">continue</beam>
  5680. </note>
  5681. <note default-x="166.18" default-y="-181.00" dynamics="141.11">
  5682. <chord/>
  5683. <pitch>
  5684. <step>F</step>
  5685. <octave>4</octave>
  5686. </pitch>
  5687. <duration>1</duration>
  5688. <voice>1</voice>
  5689. <type>eighth</type>
  5690. <stem>up</stem>
  5691. </note>
  5692. <note default-x="166.18" default-y="-166.00" dynamics="141.11">
  5693. <chord/>
  5694. <pitch>
  5695. <step>B</step>
  5696. <octave>4</octave>
  5697. </pitch>
  5698. <duration>1</duration>
  5699. <voice>1</voice>
  5700. <type>eighth</type>
  5701. <stem>up</stem>
  5702. </note>
  5703. <note default-x="194.62" default-y="-191.00" dynamics="141.11">
  5704. <pitch>
  5705. <step>D</step>
  5706. <octave>4</octave>
  5707. </pitch>
  5708. <duration>1</duration>
  5709. <voice>1</voice>
  5710. <type>eighth</type>
  5711. <stem>up</stem>
  5712. <beam number="1">end</beam>
  5713. </note>
  5714. <note default-x="194.62" default-y="-181.00" dynamics="141.11">
  5715. <chord/>
  5716. <pitch>
  5717. <step>F</step>
  5718. <octave>4</octave>
  5719. </pitch>
  5720. <duration>1</duration>
  5721. <voice>1</voice>
  5722. <type>eighth</type>
  5723. <stem>up</stem>
  5724. </note>
  5725. <note default-x="194.62" default-y="-166.00" dynamics="141.11">
  5726. <chord/>
  5727. <pitch>
  5728. <step>B</step>
  5729. <octave>4</octave>
  5730. </pitch>
  5731. <duration>1</duration>
  5732. <voice>1</voice>
  5733. <type>eighth</type>
  5734. <stem>up</stem>
  5735. </note>
  5736. </measure>
  5737. <measure number="18" width="280.67">
  5738. <note>
  5739. <rest/>
  5740. <duration>1</duration>
  5741. <voice>1</voice>
  5742. <type>eighth</type>
  5743. </note>
  5744. <note default-x="44.54" default-y="-191.00" dynamics="141.11">
  5745. <pitch>
  5746. <step>D</step>
  5747. <octave>4</octave>
  5748. </pitch>
  5749. <duration>1</duration>
  5750. <voice>1</voice>
  5751. <type>eighth</type>
  5752. <stem>up</stem>
  5753. <beam number="1">begin</beam>
  5754. </note>
  5755. <note default-x="44.54" default-y="-181.00" dynamics="141.11">
  5756. <chord/>
  5757. <pitch>
  5758. <step>F</step>
  5759. <alter>1</alter>
  5760. <octave>4</octave>
  5761. </pitch>
  5762. <duration>1</duration>
  5763. <voice>1</voice>
  5764. <type>eighth</type>
  5765. <accidental>sharp</accidental>
  5766. <stem>up</stem>
  5767. </note>
  5768. <note default-x="44.54" default-y="-171.00" dynamics="141.11">
  5769. <chord/>
  5770. <pitch>
  5771. <step>A</step>
  5772. <octave>4</octave>
  5773. </pitch>
  5774. <duration>1</duration>
  5775. <voice>1</voice>
  5776. <type>eighth</type>
  5777. <stem>up</stem>
  5778. </note>
  5779. <note default-x="75.26" default-y="-191.00" dynamics="141.11">
  5780. <pitch>
  5781. <step>D</step>
  5782. <octave>4</octave>
  5783. </pitch>
  5784. <duration>1</duration>
  5785. <voice>1</voice>
  5786. <type>eighth</type>
  5787. <stem>up</stem>
  5788. <beam number="1">continue</beam>
  5789. </note>
  5790. <note default-x="75.26" default-y="-181.00" dynamics="141.11">
  5791. <chord/>
  5792. <pitch>
  5793. <step>F</step>
  5794. <alter>1</alter>
  5795. <octave>4</octave>
  5796. </pitch>
  5797. <duration>1</duration>
  5798. <voice>1</voice>
  5799. <type>eighth</type>
  5800. <stem>up</stem>
  5801. </note>
  5802. <note default-x="75.26" default-y="-171.00" dynamics="141.11">
  5803. <chord/>
  5804. <pitch>
  5805. <step>A</step>
  5806. <octave>4</octave>
  5807. </pitch>
  5808. <duration>1</duration>
  5809. <voice>1</voice>
  5810. <type>eighth</type>
  5811. <stem>up</stem>
  5812. </note>
  5813. <note default-x="108.89" default-y="-191.00" dynamics="141.11">
  5814. <pitch>
  5815. <step>D</step>
  5816. <octave>4</octave>
  5817. </pitch>
  5818. <duration>1</duration>
  5819. <voice>1</voice>
  5820. <type>eighth</type>
  5821. <stem>up</stem>
  5822. <beam number="1">end</beam>
  5823. </note>
  5824. <note default-x="108.89" default-y="-181.00" dynamics="141.11">
  5825. <chord/>
  5826. <pitch>
  5827. <step>F</step>
  5828. <alter>1</alter>
  5829. <octave>4</octave>
  5830. </pitch>
  5831. <duration>1</duration>
  5832. <voice>1</voice>
  5833. <type>eighth</type>
  5834. <stem>up</stem>
  5835. </note>
  5836. <note default-x="108.89" default-y="-171.00" dynamics="141.11">
  5837. <chord/>
  5838. <pitch>
  5839. <step>A</step>
  5840. <octave>4</octave>
  5841. </pitch>
  5842. <duration>1</duration>
  5843. <voice>1</voice>
  5844. <type>eighth</type>
  5845. <stem>up</stem>
  5846. </note>
  5847. <note>
  5848. <rest/>
  5849. <duration>1</duration>
  5850. <voice>1</voice>
  5851. <type>eighth</type>
  5852. </note>
  5853. <note default-x="169.98" default-y="-211.00" dynamics="141.11">
  5854. <pitch>
  5855. <step>G</step>
  5856. <octave>3</octave>
  5857. </pitch>
  5858. <duration>1</duration>
  5859. <voice>1</voice>
  5860. <type>eighth</type>
  5861. <stem>up</stem>
  5862. <beam number="1">begin</beam>
  5863. </note>
  5864. <note default-x="181.84" default-y="-206.00" dynamics="141.11">
  5865. <chord/>
  5866. <pitch>
  5867. <step>A</step>
  5868. <octave>3</octave>
  5869. </pitch>
  5870. <duration>1</duration>
  5871. <voice>1</voice>
  5872. <type>eighth</type>
  5873. <stem>up</stem>
  5874. </note>
  5875. <note default-x="169.98" default-y="-196.00" dynamics="141.11">
  5876. <chord/>
  5877. <pitch>
  5878. <step>C</step>
  5879. <alter>1</alter>
  5880. <octave>4</octave>
  5881. </pitch>
  5882. <duration>1</duration>
  5883. <voice>1</voice>
  5884. <type>eighth</type>
  5885. <stem>up</stem>
  5886. </note>
  5887. <note default-x="207.01" default-y="-211.00" dynamics="141.11">
  5888. <pitch>
  5889. <step>G</step>
  5890. <octave>3</octave>
  5891. </pitch>
  5892. <duration>1</duration>
  5893. <voice>1</voice>
  5894. <type>eighth</type>
  5895. <stem>up</stem>
  5896. <beam number="1">continue</beam>
  5897. </note>
  5898. <note default-x="218.87" default-y="-206.00" dynamics="141.11">
  5899. <chord/>
  5900. <pitch>
  5901. <step>A</step>
  5902. <octave>3</octave>
  5903. </pitch>
  5904. <duration>1</duration>
  5905. <voice>1</voice>
  5906. <type>eighth</type>
  5907. <stem>up</stem>
  5908. </note>
  5909. <note default-x="207.01" default-y="-196.00" dynamics="141.11">
  5910. <chord/>
  5911. <pitch>
  5912. <step>C</step>
  5913. <alter>1</alter>
  5914. <octave>4</octave>
  5915. </pitch>
  5916. <duration>1</duration>
  5917. <voice>1</voice>
  5918. <type>eighth</type>
  5919. <stem>up</stem>
  5920. </note>
  5921. <note default-x="244.04" default-y="-211.00" dynamics="141.11">
  5922. <pitch>
  5923. <step>G</step>
  5924. <octave>3</octave>
  5925. </pitch>
  5926. <duration>1</duration>
  5927. <voice>1</voice>
  5928. <type>eighth</type>
  5929. <stem>up</stem>
  5930. <beam number="1">end</beam>
  5931. </note>
  5932. <note default-x="255.91" default-y="-206.00" dynamics="141.11">
  5933. <chord/>
  5934. <pitch>
  5935. <step>A</step>
  5936. <octave>3</octave>
  5937. </pitch>
  5938. <duration>1</duration>
  5939. <voice>1</voice>
  5940. <type>eighth</type>
  5941. <stem>up</stem>
  5942. </note>
  5943. <note default-x="244.04" default-y="-196.00" dynamics="141.11">
  5944. <chord/>
  5945. <pitch>
  5946. <step>C</step>
  5947. <alter>1</alter>
  5948. <octave>4</octave>
  5949. </pitch>
  5950. <duration>1</duration>
  5951. <voice>1</voice>
  5952. <type>eighth</type>
  5953. <stem>up</stem>
  5954. </note>
  5955. </measure>
  5956. <measure number="19" width="189.02">
  5957. <note default-x="29.02" default-y="-216.00" dynamics="141.11">
  5958. <pitch>
  5959. <step>F</step>
  5960. <alter>1</alter>
  5961. <octave>3</octave>
  5962. </pitch>
  5963. <duration>1</duration>
  5964. <voice>1</voice>
  5965. <type>eighth</type>
  5966. <stem>up</stem>
  5967. <beam number="1">begin</beam>
  5968. </note>
  5969. <note default-x="29.02" default-y="-206.00" dynamics="141.11">
  5970. <chord/>
  5971. <pitch>
  5972. <step>A</step>
  5973. <octave>3</octave>
  5974. </pitch>
  5975. <duration>1</duration>
  5976. <voice>1</voice>
  5977. <type>eighth</type>
  5978. <stem>up</stem>
  5979. </note>
  5980. <note default-x="29.02" default-y="-191.00" dynamics="141.11">
  5981. <chord/>
  5982. <pitch>
  5983. <step>D</step>
  5984. <octave>4</octave>
  5985. </pitch>
  5986. <duration>1</duration>
  5987. <voice>1</voice>
  5988. <type>eighth</type>
  5989. <stem>up</stem>
  5990. </note>
  5991. <note default-x="48.34" default-y="-191.00" dynamics="141.11">
  5992. <pitch>
  5993. <step>D</step>
  5994. <octave>4</octave>
  5995. </pitch>
  5996. <duration>1</duration>
  5997. <voice>1</voice>
  5998. <type>eighth</type>
  5999. <stem>up</stem>
  6000. <beam number="1">continue</beam>
  6001. </note>
  6002. <note default-x="48.34" default-y="-181.00" dynamics="141.11">
  6003. <chord/>
  6004. <pitch>
  6005. <step>F</step>
  6006. <alter>1</alter>
  6007. <octave>4</octave>
  6008. </pitch>
  6009. <duration>1</duration>
  6010. <voice>1</voice>
  6011. <type>eighth</type>
  6012. <stem>up</stem>
  6013. </note>
  6014. <note default-x="48.34" default-y="-156.00" dynamics="141.11">
  6015. <chord/>
  6016. <pitch>
  6017. <step>D</step>
  6018. <octave>5</octave>
  6019. </pitch>
  6020. <duration>1</duration>
  6021. <voice>1</voice>
  6022. <type>eighth</type>
  6023. <stem>up</stem>
  6024. </note>
  6025. <note default-x="67.66" default-y="-191.00" dynamics="141.11">
  6026. <pitch>
  6027. <step>D</step>
  6028. <octave>4</octave>
  6029. </pitch>
  6030. <duration>1</duration>
  6031. <voice>1</voice>
  6032. <type>eighth</type>
  6033. <stem>up</stem>
  6034. <beam number="1">continue</beam>
  6035. </note>
  6036. <note default-x="67.66" default-y="-181.00" dynamics="141.11">
  6037. <chord/>
  6038. <pitch>
  6039. <step>F</step>
  6040. <alter>1</alter>
  6041. <octave>4</octave>
  6042. </pitch>
  6043. <duration>1</duration>
  6044. <voice>1</voice>
  6045. <type>eighth</type>
  6046. <stem>up</stem>
  6047. </note>
  6048. <note default-x="67.66" default-y="-156.00" dynamics="141.11">
  6049. <chord/>
  6050. <pitch>
  6051. <step>D</step>
  6052. <octave>5</octave>
  6053. </pitch>
  6054. <duration>1</duration>
  6055. <voice>1</voice>
  6056. <type>eighth</type>
  6057. <stem>up</stem>
  6058. </note>
  6059. <note default-x="86.98" default-y="-191.00" dynamics="141.11">
  6060. <pitch>
  6061. <step>D</step>
  6062. <octave>4</octave>
  6063. </pitch>
  6064. <duration>1</duration>
  6065. <voice>1</voice>
  6066. <type>eighth</type>
  6067. <stem>up</stem>
  6068. <beam number="1">end</beam>
  6069. </note>
  6070. <note default-x="86.98" default-y="-181.00" dynamics="141.11">
  6071. <chord/>
  6072. <pitch>
  6073. <step>F</step>
  6074. <alter>1</alter>
  6075. <octave>4</octave>
  6076. </pitch>
  6077. <duration>1</duration>
  6078. <voice>1</voice>
  6079. <type>eighth</type>
  6080. <stem>up</stem>
  6081. </note>
  6082. <note default-x="86.98" default-y="-156.00" dynamics="141.11">
  6083. <chord/>
  6084. <pitch>
  6085. <step>D</step>
  6086. <octave>5</octave>
  6087. </pitch>
  6088. <duration>1</duration>
  6089. <voice>1</voice>
  6090. <type>eighth</type>
  6091. <stem>up</stem>
  6092. </note>
  6093. <note default-x="106.30" default-y="-191.00" dynamics="141.11">
  6094. <pitch>
  6095. <step>D</step>
  6096. <octave>4</octave>
  6097. </pitch>
  6098. <duration>1</duration>
  6099. <voice>1</voice>
  6100. <type>eighth</type>
  6101. <stem>up</stem>
  6102. <beam number="1">begin</beam>
  6103. </note>
  6104. <note default-x="106.30" default-y="-181.00" dynamics="141.11">
  6105. <chord/>
  6106. <pitch>
  6107. <step>F</step>
  6108. <alter>1</alter>
  6109. <octave>4</octave>
  6110. </pitch>
  6111. <duration>1</duration>
  6112. <voice>1</voice>
  6113. <type>eighth</type>
  6114. <stem>up</stem>
  6115. </note>
  6116. <note default-x="106.30" default-y="-156.00" dynamics="141.11">
  6117. <chord/>
  6118. <pitch>
  6119. <step>D</step>
  6120. <octave>5</octave>
  6121. </pitch>
  6122. <duration>1</duration>
  6123. <voice>1</voice>
  6124. <type>eighth</type>
  6125. <stem>up</stem>
  6126. </note>
  6127. <note default-x="125.62" default-y="-191.00" dynamics="141.11">
  6128. <pitch>
  6129. <step>D</step>
  6130. <octave>4</octave>
  6131. </pitch>
  6132. <duration>1</duration>
  6133. <voice>1</voice>
  6134. <type>eighth</type>
  6135. <stem>up</stem>
  6136. <beam number="1">continue</beam>
  6137. </note>
  6138. <note default-x="125.62" default-y="-181.00" dynamics="141.11">
  6139. <chord/>
  6140. <pitch>
  6141. <step>F</step>
  6142. <alter>1</alter>
  6143. <octave>4</octave>
  6144. </pitch>
  6145. <duration>1</duration>
  6146. <voice>1</voice>
  6147. <type>eighth</type>
  6148. <stem>up</stem>
  6149. </note>
  6150. <note default-x="125.62" default-y="-156.00" dynamics="141.11">
  6151. <chord/>
  6152. <pitch>
  6153. <step>D</step>
  6154. <octave>5</octave>
  6155. </pitch>
  6156. <duration>1</duration>
  6157. <voice>1</voice>
  6158. <type>eighth</type>
  6159. <stem>up</stem>
  6160. </note>
  6161. <note default-x="144.94" default-y="-186.00" dynamics="141.11">
  6162. <pitch>
  6163. <step>E</step>
  6164. <octave>4</octave>
  6165. </pitch>
  6166. <duration>1</duration>
  6167. <voice>1</voice>
  6168. <type>eighth</type>
  6169. <stem>up</stem>
  6170. <beam number="1">continue</beam>
  6171. </note>
  6172. <note default-x="144.94" default-y="-176.00" dynamics="141.11">
  6173. <chord/>
  6174. <pitch>
  6175. <step>G</step>
  6176. <octave>4</octave>
  6177. </pitch>
  6178. <duration>1</duration>
  6179. <voice>1</voice>
  6180. <type>eighth</type>
  6181. <stem>up</stem>
  6182. </note>
  6183. <note default-x="144.94" default-y="-161.00" dynamics="141.11">
  6184. <chord/>
  6185. <pitch>
  6186. <step>C</step>
  6187. <alter>1</alter>
  6188. <octave>5</octave>
  6189. </pitch>
  6190. <duration>1</duration>
  6191. <voice>1</voice>
  6192. <type>eighth</type>
  6193. <stem>up</stem>
  6194. </note>
  6195. <note default-x="164.26" default-y="-181.00" dynamics="141.11">
  6196. <pitch>
  6197. <step>F</step>
  6198. <alter>1</alter>
  6199. <octave>4</octave>
  6200. </pitch>
  6201. <duration>1</duration>
  6202. <voice>1</voice>
  6203. <type>eighth</type>
  6204. <stem>up</stem>
  6205. <beam number="1">end</beam>
  6206. </note>
  6207. <note default-x="164.26" default-y="-171.00" dynamics="141.11">
  6208. <chord/>
  6209. <pitch>
  6210. <step>A</step>
  6211. <octave>4</octave>
  6212. </pitch>
  6213. <duration>1</duration>
  6214. <voice>1</voice>
  6215. <type>eighth</type>
  6216. <stem>up</stem>
  6217. </note>
  6218. <note default-x="164.26" default-y="-156.00" dynamics="141.11">
  6219. <chord/>
  6220. <pitch>
  6221. <step>D</step>
  6222. <octave>5</octave>
  6223. </pitch>
  6224. <duration>1</duration>
  6225. <voice>1</voice>
  6226. <type>eighth</type>
  6227. <stem>up</stem>
  6228. </note>
  6229. </measure>
  6230. <measure number="20" width="256.63">
  6231. <print new-system="yes">
  6232. <staff-layout number="1">
  6233. <staff-distance>60.00</staff-distance>
  6234. </staff-layout>
  6235. </print>
  6236. <note default-x="76.23" default-y="-45.00" dynamics="141.11">
  6237. <pitch>
  6238. <step>D</step>
  6239. <octave>4</octave>
  6240. </pitch>
  6241. <duration>1</duration>
  6242. <voice>1</voice>
  6243. <type>eighth</type>
  6244. <stem>up</stem>
  6245. <beam number="1">begin</beam>
  6246. <notations>
  6247. <slur type="start" number="1"/>
  6248. </notations>
  6249. </note>
  6250. <note default-x="76.23" default-y="-25.00" dynamics="141.11">
  6251. <chord/>
  6252. <pitch>
  6253. <step>A</step>
  6254. <octave>4</octave>
  6255. </pitch>
  6256. <duration>1</duration>
  6257. <voice>1</voice>
  6258. <type>eighth</type>
  6259. <stem>up</stem>
  6260. </note>
  6261. <note default-x="76.23" default-y="-15.00" dynamics="141.11">
  6262. <chord/>
  6263. <pitch>
  6264. <step>C</step>
  6265. <alter>1</alter>
  6266. <octave>5</octave>
  6267. </pitch>
  6268. <duration>1</duration>
  6269. <voice>1</voice>
  6270. <type>eighth</type>
  6271. <stem>up</stem>
  6272. </note>
  6273. <note default-x="98.46" default-y="-30.00" dynamics="141.11">
  6274. <pitch>
  6275. <step>G</step>
  6276. <octave>4</octave>
  6277. </pitch>
  6278. <duration>1</duration>
  6279. <voice>1</voice>
  6280. <type>eighth</type>
  6281. <stem>up</stem>
  6282. <beam number="1">continue</beam>
  6283. <notations>
  6284. <slur type="stop" number="1"/>
  6285. </notations>
  6286. </note>
  6287. <note default-x="98.46" default-y="-20.00" dynamics="141.11">
  6288. <chord/>
  6289. <pitch>
  6290. <step>B</step>
  6291. <octave>4</octave>
  6292. </pitch>
  6293. <duration>1</duration>
  6294. <voice>1</voice>
  6295. <type>eighth</type>
  6296. <stem>up</stem>
  6297. </note>
  6298. <note default-x="120.70" default-y="-45.00" dynamics="141.11">
  6299. <pitch>
  6300. <step>D</step>
  6301. <octave>4</octave>
  6302. </pitch>
  6303. <duration>1</duration>
  6304. <voice>1</voice>
  6305. <type>eighth</type>
  6306. <stem>up</stem>
  6307. <beam number="1">continue</beam>
  6308. <notations>
  6309. <articulations>
  6310. <staccato/>
  6311. </articulations>
  6312. </notations>
  6313. </note>
  6314. <note default-x="120.70" default-y="-30.00" dynamics="141.11">
  6315. <chord/>
  6316. <pitch>
  6317. <step>G</step>
  6318. <octave>4</octave>
  6319. </pitch>
  6320. <duration>1</duration>
  6321. <voice>1</voice>
  6322. <type>eighth</type>
  6323. <stem>up</stem>
  6324. </note>
  6325. <note default-x="120.70" default-y="-20.00" dynamics="141.11">
  6326. <chord/>
  6327. <pitch>
  6328. <step>B</step>
  6329. <octave>4</octave>
  6330. </pitch>
  6331. <duration>1</duration>
  6332. <voice>1</voice>
  6333. <type>eighth</type>
  6334. <stem>up</stem>
  6335. </note>
  6336. <note default-x="142.93" default-y="-45.00" dynamics="141.11">
  6337. <pitch>
  6338. <step>D</step>
  6339. <octave>4</octave>
  6340. </pitch>
  6341. <duration>1</duration>
  6342. <voice>1</voice>
  6343. <type>eighth</type>
  6344. <stem>up</stem>
  6345. <beam number="1">end</beam>
  6346. <notations>
  6347. <articulations>
  6348. <staccato/>
  6349. </articulations>
  6350. </notations>
  6351. </note>
  6352. <note default-x="142.93" default-y="-30.00" dynamics="141.11">
  6353. <chord/>
  6354. <pitch>
  6355. <step>G</step>
  6356. <octave>4</octave>
  6357. </pitch>
  6358. <duration>1</duration>
  6359. <voice>1</voice>
  6360. <type>eighth</type>
  6361. <stem>up</stem>
  6362. </note>
  6363. <note default-x="142.93" default-y="-20.00" dynamics="141.11">
  6364. <chord/>
  6365. <pitch>
  6366. <step>B</step>
  6367. <octave>4</octave>
  6368. </pitch>
  6369. <duration>1</duration>
  6370. <voice>1</voice>
  6371. <type>eighth</type>
  6372. <stem>up</stem>
  6373. </note>
  6374. <note default-x="165.16" default-y="-45.00" dynamics="141.11">
  6375. <pitch>
  6376. <step>D</step>
  6377. <octave>4</octave>
  6378. </pitch>
  6379. <duration>1</duration>
  6380. <voice>1</voice>
  6381. <type>eighth</type>
  6382. <stem>up</stem>
  6383. <beam number="1">begin</beam>
  6384. <notations>
  6385. <articulations>
  6386. <staccato/>
  6387. </articulations>
  6388. </notations>
  6389. </note>
  6390. <note default-x="165.16" default-y="-30.00" dynamics="141.11">
  6391. <chord/>
  6392. <pitch>
  6393. <step>G</step>
  6394. <octave>4</octave>
  6395. </pitch>
  6396. <duration>1</duration>
  6397. <voice>1</voice>
  6398. <type>eighth</type>
  6399. <stem>up</stem>
  6400. </note>
  6401. <note default-x="165.16" default-y="-20.00" dynamics="141.11">
  6402. <chord/>
  6403. <pitch>
  6404. <step>B</step>
  6405. <octave>4</octave>
  6406. </pitch>
  6407. <duration>1</duration>
  6408. <voice>1</voice>
  6409. <type>eighth</type>
  6410. <stem>up</stem>
  6411. </note>
  6412. <note default-x="187.40" default-y="-55.00" dynamics="141.11">
  6413. <pitch>
  6414. <step>B</step>
  6415. <octave>3</octave>
  6416. </pitch>
  6417. <duration>1</duration>
  6418. <voice>1</voice>
  6419. <type>eighth</type>
  6420. <stem>up</stem>
  6421. <beam number="1">continue</beam>
  6422. <notations>
  6423. <articulations>
  6424. <staccato/>
  6425. </articulations>
  6426. </notations>
  6427. </note>
  6428. <note default-x="187.40" default-y="-30.00" dynamics="141.11">
  6429. <chord/>
  6430. <pitch>
  6431. <step>G</step>
  6432. <octave>4</octave>
  6433. </pitch>
  6434. <duration>1</duration>
  6435. <voice>1</voice>
  6436. <type>eighth</type>
  6437. <stem>up</stem>
  6438. </note>
  6439. <note default-x="187.40" default-y="-20.00" dynamics="141.11">
  6440. <chord/>
  6441. <pitch>
  6442. <step>B</step>
  6443. <octave>4</octave>
  6444. </pitch>
  6445. <duration>1</duration>
  6446. <voice>1</voice>
  6447. <type>eighth</type>
  6448. <stem>up</stem>
  6449. </note>
  6450. <note default-x="209.63" default-y="-45.00" dynamics="141.11">
  6451. <pitch>
  6452. <step>D</step>
  6453. <octave>4</octave>
  6454. </pitch>
  6455. <duration>1</duration>
  6456. <voice>1</voice>
  6457. <type>eighth</type>
  6458. <stem>up</stem>
  6459. <beam number="1">continue</beam>
  6460. <notations>
  6461. <articulations>
  6462. <staccato/>
  6463. </articulations>
  6464. </notations>
  6465. </note>
  6466. <note default-x="209.63" default-y="-30.00" dynamics="141.11">
  6467. <chord/>
  6468. <pitch>
  6469. <step>G</step>
  6470. <octave>4</octave>
  6471. </pitch>
  6472. <duration>1</duration>
  6473. <voice>1</voice>
  6474. <type>eighth</type>
  6475. <stem>up</stem>
  6476. </note>
  6477. <note default-x="209.63" default-y="-20.00" dynamics="141.11">
  6478. <chord/>
  6479. <pitch>
  6480. <step>B</step>
  6481. <octave>4</octave>
  6482. </pitch>
  6483. <duration>1</duration>
  6484. <voice>1</voice>
  6485. <type>eighth</type>
  6486. <stem>up</stem>
  6487. </note>
  6488. <note default-x="231.87" default-y="-40.00" dynamics="141.11">
  6489. <pitch>
  6490. <step>E</step>
  6491. <octave>4</octave>
  6492. </pitch>
  6493. <duration>1</duration>
  6494. <voice>1</voice>
  6495. <type>eighth</type>
  6496. <stem>up</stem>
  6497. <beam number="1">end</beam>
  6498. <notations>
  6499. <articulations>
  6500. <staccato/>
  6501. </articulations>
  6502. </notations>
  6503. </note>
  6504. <note default-x="231.87" default-y="-30.00" dynamics="141.11">
  6505. <chord/>
  6506. <pitch>
  6507. <step>G</step>
  6508. <octave>4</octave>
  6509. </pitch>
  6510. <duration>1</duration>
  6511. <voice>1</voice>
  6512. <type>eighth</type>
  6513. <stem>up</stem>
  6514. </note>
  6515. <note default-x="231.87" default-y="-20.00" dynamics="141.11">
  6516. <chord/>
  6517. <pitch>
  6518. <step>B</step>
  6519. <octave>4</octave>
  6520. </pitch>
  6521. <duration>1</duration>
  6522. <voice>1</voice>
  6523. <type>eighth</type>
  6524. <stem>up</stem>
  6525. </note>
  6526. </measure>
  6527. <measure number="21" width="242.40">
  6528. <note default-x="12.36" default-y="-30.00" dynamics="141.11">
  6529. <pitch>
  6530. <step>G</step>
  6531. <octave>4</octave>
  6532. </pitch>
  6533. <duration>1</duration>
  6534. <voice>1</voice>
  6535. <type>eighth</type>
  6536. <stem>up</stem>
  6537. <beam number="1">begin</beam>
  6538. <notations>
  6539. <slur type="start" number="1"/>
  6540. </notations>
  6541. </note>
  6542. <note default-x="12.36" default-y="-20.00" dynamics="141.11">
  6543. <chord/>
  6544. <pitch>
  6545. <step>B</step>
  6546. <octave>4</octave>
  6547. </pitch>
  6548. <duration>1</duration>
  6549. <voice>1</voice>
  6550. <type>eighth</type>
  6551. <stem>up</stem>
  6552. </note>
  6553. <note default-x="40.92" default-y="-60.00" dynamics="141.11">
  6554. <pitch>
  6555. <step>A</step>
  6556. <octave>3</octave>
  6557. </pitch>
  6558. <duration>1</duration>
  6559. <voice>1</voice>
  6560. <type>eighth</type>
  6561. <stem>up</stem>
  6562. <beam number="1">continue</beam>
  6563. <notations>
  6564. <slur type="stop" number="1"/>
  6565. </notations>
  6566. </note>
  6567. <note default-x="40.92" default-y="-35.00" dynamics="141.11">
  6568. <chord/>
  6569. <pitch>
  6570. <step>F</step>
  6571. <alter>1</alter>
  6572. <octave>4</octave>
  6573. </pitch>
  6574. <duration>1</duration>
  6575. <voice>1</voice>
  6576. <type>eighth</type>
  6577. <stem>up</stem>
  6578. </note>
  6579. <note default-x="40.92" default-y="-25.00" dynamics="141.11">
  6580. <chord/>
  6581. <pitch>
  6582. <step>A</step>
  6583. <octave>4</octave>
  6584. </pitch>
  6585. <duration>1</duration>
  6586. <voice>1</voice>
  6587. <type>eighth</type>
  6588. <stem>up</stem>
  6589. </note>
  6590. <note default-x="69.47" default-y="-60.00" dynamics="141.11">
  6591. <pitch>
  6592. <step>A</step>
  6593. <octave>3</octave>
  6594. </pitch>
  6595. <duration>1</duration>
  6596. <voice>1</voice>
  6597. <type>eighth</type>
  6598. <stem>up</stem>
  6599. <beam number="1">continue</beam>
  6600. <notations>
  6601. <articulations>
  6602. <staccato/>
  6603. </articulations>
  6604. </notations>
  6605. </note>
  6606. <note default-x="69.47" default-y="-35.00" dynamics="141.11">
  6607. <chord/>
  6608. <pitch>
  6609. <step>F</step>
  6610. <alter>1</alter>
  6611. <octave>4</octave>
  6612. </pitch>
  6613. <duration>1</duration>
  6614. <voice>1</voice>
  6615. <type>eighth</type>
  6616. <stem>up</stem>
  6617. </note>
  6618. <note default-x="69.47" default-y="-25.00" dynamics="141.11">
  6619. <chord/>
  6620. <pitch>
  6621. <step>A</step>
  6622. <octave>4</octave>
  6623. </pitch>
  6624. <duration>1</duration>
  6625. <voice>1</voice>
  6626. <type>eighth</type>
  6627. <stem>up</stem>
  6628. </note>
  6629. <note default-x="98.03" default-y="-60.00" dynamics="141.11">
  6630. <pitch>
  6631. <step>A</step>
  6632. <octave>3</octave>
  6633. </pitch>
  6634. <duration>1</duration>
  6635. <voice>1</voice>
  6636. <type>eighth</type>
  6637. <stem>up</stem>
  6638. <beam number="1">end</beam>
  6639. <notations>
  6640. <articulations>
  6641. <staccato/>
  6642. </articulations>
  6643. </notations>
  6644. </note>
  6645. <note default-x="98.03" default-y="-35.00" dynamics="141.11">
  6646. <chord/>
  6647. <pitch>
  6648. <step>F</step>
  6649. <alter>1</alter>
  6650. <octave>4</octave>
  6651. </pitch>
  6652. <duration>1</duration>
  6653. <voice>1</voice>
  6654. <type>eighth</type>
  6655. <stem>up</stem>
  6656. </note>
  6657. <note default-x="98.03" default-y="-25.00" dynamics="141.11">
  6658. <chord/>
  6659. <pitch>
  6660. <step>A</step>
  6661. <octave>4</octave>
  6662. </pitch>
  6663. <duration>1</duration>
  6664. <voice>1</voice>
  6665. <type>eighth</type>
  6666. <stem>up</stem>
  6667. </note>
  6668. <note default-x="126.58" default-y="-60.00" dynamics="141.11">
  6669. <pitch>
  6670. <step>A</step>
  6671. <octave>3</octave>
  6672. </pitch>
  6673. <duration>1</duration>
  6674. <voice>1</voice>
  6675. <type>eighth</type>
  6676. <stem>up</stem>
  6677. <beam number="1">begin</beam>
  6678. <notations>
  6679. <articulations>
  6680. <staccato/>
  6681. </articulations>
  6682. </notations>
  6683. </note>
  6684. <note default-x="126.58" default-y="-35.00" dynamics="141.11">
  6685. <chord/>
  6686. <pitch>
  6687. <step>F</step>
  6688. <alter>1</alter>
  6689. <octave>4</octave>
  6690. </pitch>
  6691. <duration>1</duration>
  6692. <voice>1</voice>
  6693. <type>eighth</type>
  6694. <stem>up</stem>
  6695. </note>
  6696. <note default-x="126.58" default-y="-25.00" dynamics="141.11">
  6697. <chord/>
  6698. <pitch>
  6699. <step>A</step>
  6700. <octave>4</octave>
  6701. </pitch>
  6702. <duration>1</duration>
  6703. <voice>1</voice>
  6704. <type>eighth</type>
  6705. <stem>up</stem>
  6706. </note>
  6707. <note default-x="155.14" default-y="-60.00" dynamics="141.11">
  6708. <pitch>
  6709. <step>A</step>
  6710. <octave>3</octave>
  6711. </pitch>
  6712. <duration>1</duration>
  6713. <voice>1</voice>
  6714. <type>eighth</type>
  6715. <stem>up</stem>
  6716. <beam number="1">continue</beam>
  6717. <notations>
  6718. <articulations>
  6719. <staccato/>
  6720. </articulations>
  6721. </notations>
  6722. </note>
  6723. <note default-x="155.14" default-y="-35.00" dynamics="141.11">
  6724. <chord/>
  6725. <pitch>
  6726. <step>F</step>
  6727. <alter>1</alter>
  6728. <octave>4</octave>
  6729. </pitch>
  6730. <duration>1</duration>
  6731. <voice>1</voice>
  6732. <type>eighth</type>
  6733. <stem>up</stem>
  6734. </note>
  6735. <note default-x="155.14" default-y="-25.00" dynamics="141.11">
  6736. <chord/>
  6737. <pitch>
  6738. <step>A</step>
  6739. <octave>4</octave>
  6740. </pitch>
  6741. <duration>1</duration>
  6742. <voice>1</voice>
  6743. <type>eighth</type>
  6744. <stem>up</stem>
  6745. </note>
  6746. <note default-x="183.69" default-y="-50.00" dynamics="141.11">
  6747. <pitch>
  6748. <step>C</step>
  6749. <alter>1</alter>
  6750. <octave>4</octave>
  6751. </pitch>
  6752. <duration>1</duration>
  6753. <voice>1</voice>
  6754. <type>eighth</type>
  6755. <stem>up</stem>
  6756. <beam number="1">continue</beam>
  6757. <notations>
  6758. <articulations>
  6759. <staccato/>
  6760. </articulations>
  6761. </notations>
  6762. </note>
  6763. <note default-x="183.69" default-y="-35.00" dynamics="141.11">
  6764. <chord/>
  6765. <pitch>
  6766. <step>F</step>
  6767. <alter>1</alter>
  6768. <octave>4</octave>
  6769. </pitch>
  6770. <duration>1</duration>
  6771. <voice>1</voice>
  6772. <type>eighth</type>
  6773. <stem>up</stem>
  6774. </note>
  6775. <note default-x="183.69" default-y="-25.00" dynamics="141.11">
  6776. <chord/>
  6777. <pitch>
  6778. <step>A</step>
  6779. <octave>4</octave>
  6780. </pitch>
  6781. <duration>1</duration>
  6782. <voice>1</voice>
  6783. <type>eighth</type>
  6784. <stem>up</stem>
  6785. </note>
  6786. <note default-x="212.25" default-y="-45.00" dynamics="141.11">
  6787. <pitch>
  6788. <step>D</step>
  6789. <octave>4</octave>
  6790. </pitch>
  6791. <duration>1</duration>
  6792. <voice>1</voice>
  6793. <type>eighth</type>
  6794. <stem>up</stem>
  6795. <beam number="1">end</beam>
  6796. <notations>
  6797. <articulations>
  6798. <staccato/>
  6799. </articulations>
  6800. </notations>
  6801. </note>
  6802. <note default-x="212.25" default-y="-35.00" dynamics="141.11">
  6803. <chord/>
  6804. <pitch>
  6805. <step>F</step>
  6806. <alter>1</alter>
  6807. <octave>4</octave>
  6808. </pitch>
  6809. <duration>1</duration>
  6810. <voice>1</voice>
  6811. <type>eighth</type>
  6812. <stem>up</stem>
  6813. </note>
  6814. <note default-x="212.25" default-y="-25.00" dynamics="141.11">
  6815. <chord/>
  6816. <pitch>
  6817. <step>A</step>
  6818. <octave>4</octave>
  6819. </pitch>
  6820. <duration>1</duration>
  6821. <voice>1</voice>
  6822. <type>eighth</type>
  6823. <stem>up</stem>
  6824. </note>
  6825. </measure>
  6826. <measure number="22" width="293.53">
  6827. <note default-x="18.42" default-y="-55.00" dynamics="141.11">
  6828. <pitch>
  6829. <step>B</step>
  6830. <octave>3</octave>
  6831. </pitch>
  6832. <duration>1</duration>
  6833. <voice>1</voice>
  6834. <type>eighth</type>
  6835. <stem>up</stem>
  6836. <beam number="1">begin</beam>
  6837. <notations>
  6838. <slur type="start" number="1"/>
  6839. </notations>
  6840. </note>
  6841. <note default-x="18.42" default-y="-45.00" dynamics="141.11">
  6842. <chord/>
  6843. <pitch>
  6844. <step>D</step>
  6845. <alter>1</alter>
  6846. <octave>4</octave>
  6847. </pitch>
  6848. <duration>1</duration>
  6849. <voice>1</voice>
  6850. <type>eighth</type>
  6851. <accidental>sharp</accidental>
  6852. <stem>up</stem>
  6853. </note>
  6854. <note default-x="18.42" default-y="-35.00" dynamics="141.11">
  6855. <chord/>
  6856. <pitch>
  6857. <step>F</step>
  6858. <alter>1</alter>
  6859. <octave>4</octave>
  6860. </pitch>
  6861. <duration>1</duration>
  6862. <voice>1</voice>
  6863. <type>eighth</type>
  6864. <stem>up</stem>
  6865. </note>
  6866. <note default-x="18.42" default-y="-25.00" dynamics="141.11">
  6867. <chord/>
  6868. <pitch>
  6869. <step>A</step>
  6870. <octave>4</octave>
  6871. </pitch>
  6872. <duration>1</duration>
  6873. <voice>1</voice>
  6874. <type>eighth</type>
  6875. <stem>up</stem>
  6876. </note>
  6877. <note default-x="48.19" default-y="-40.00" dynamics="141.11">
  6878. <pitch>
  6879. <step>E</step>
  6880. <octave>4</octave>
  6881. </pitch>
  6882. <duration>1</duration>
  6883. <voice>1</voice>
  6884. <type>eighth</type>
  6885. <stem>up</stem>
  6886. <beam number="1">continue</beam>
  6887. <notations>
  6888. <slur type="stop" number="1"/>
  6889. </notations>
  6890. </note>
  6891. <note default-x="48.19" default-y="-30.00" dynamics="141.11">
  6892. <chord/>
  6893. <pitch>
  6894. <step>G</step>
  6895. <octave>4</octave>
  6896. </pitch>
  6897. <duration>1</duration>
  6898. <voice>1</voice>
  6899. <type>eighth</type>
  6900. <stem>up</stem>
  6901. </note>
  6902. <note default-x="77.97" default-y="-55.00" dynamics="141.11">
  6903. <pitch>
  6904. <step>B</step>
  6905. <octave>3</octave>
  6906. </pitch>
  6907. <duration>1</duration>
  6908. <voice>1</voice>
  6909. <type>eighth</type>
  6910. <stem>up</stem>
  6911. <beam number="1">continue</beam>
  6912. <notations>
  6913. <articulations>
  6914. <staccato/>
  6915. </articulations>
  6916. </notations>
  6917. </note>
  6918. <note default-x="77.97" default-y="-40.00" dynamics="141.11">
  6919. <chord/>
  6920. <pitch>
  6921. <step>E</step>
  6922. <octave>4</octave>
  6923. </pitch>
  6924. <duration>1</duration>
  6925. <voice>1</voice>
  6926. <type>eighth</type>
  6927. <stem>up</stem>
  6928. </note>
  6929. <note default-x="77.97" default-y="-30.00" dynamics="141.11">
  6930. <chord/>
  6931. <pitch>
  6932. <step>G</step>
  6933. <octave>4</octave>
  6934. </pitch>
  6935. <duration>1</duration>
  6936. <voice>1</voice>
  6937. <type>eighth</type>
  6938. <stem>up</stem>
  6939. </note>
  6940. <note default-x="107.75" default-y="-55.00" dynamics="141.11">
  6941. <pitch>
  6942. <step>B</step>
  6943. <octave>3</octave>
  6944. </pitch>
  6945. <duration>1</duration>
  6946. <voice>1</voice>
  6947. <type>eighth</type>
  6948. <stem>up</stem>
  6949. <beam number="1">end</beam>
  6950. <notations>
  6951. <articulations>
  6952. <staccato/>
  6953. </articulations>
  6954. </notations>
  6955. </note>
  6956. <note default-x="107.75" default-y="-40.00" dynamics="141.11">
  6957. <chord/>
  6958. <pitch>
  6959. <step>E</step>
  6960. <octave>4</octave>
  6961. </pitch>
  6962. <duration>1</duration>
  6963. <voice>1</voice>
  6964. <type>eighth</type>
  6965. <stem>up</stem>
  6966. </note>
  6967. <note default-x="107.75" default-y="-30.00" dynamics="141.11">
  6968. <chord/>
  6969. <pitch>
  6970. <step>G</step>
  6971. <octave>4</octave>
  6972. </pitch>
  6973. <duration>1</duration>
  6974. <voice>1</voice>
  6975. <type>eighth</type>
  6976. <stem>up</stem>
  6977. </note>
  6978. <note default-x="137.53" default-y="-50.00" dynamics="141.11">
  6979. <pitch>
  6980. <step>C</step>
  6981. <alter>1</alter>
  6982. <octave>4</octave>
  6983. </pitch>
  6984. <duration>1</duration>
  6985. <voice>1</voice>
  6986. <type>eighth</type>
  6987. <stem>up</stem>
  6988. <beam number="1">begin</beam>
  6989. <notations>
  6990. <articulations>
  6991. <staccato/>
  6992. </articulations>
  6993. </notations>
  6994. </note>
  6995. <note default-x="137.53" default-y="-40.00" dynamics="141.11">
  6996. <chord/>
  6997. <pitch>
  6998. <step>E</step>
  6999. <octave>4</octave>
  7000. </pitch>
  7001. <duration>1</duration>
  7002. <voice>1</voice>
  7003. <type>eighth</type>
  7004. <stem>up</stem>
  7005. </note>
  7006. <note default-x="137.53" default-y="-30.00" dynamics="141.11">
  7007. <chord/>
  7008. <pitch>
  7009. <step>G</step>
  7010. <octave>4</octave>
  7011. </pitch>
  7012. <duration>1</duration>
  7013. <voice>1</voice>
  7014. <type>eighth</type>
  7015. <stem>up</stem>
  7016. </note>
  7017. <note default-x="167.30" default-y="-65.00" dynamics="141.11">
  7018. <pitch>
  7019. <step>G</step>
  7020. <octave>3</octave>
  7021. </pitch>
  7022. <duration>1</duration>
  7023. <voice>1</voice>
  7024. <type>eighth</type>
  7025. <stem>up</stem>
  7026. <beam number="1">continue</beam>
  7027. <notations>
  7028. <articulations>
  7029. <staccato/>
  7030. </articulations>
  7031. </notations>
  7032. </note>
  7033. <note default-x="179.17" default-y="-60.00" dynamics="141.11">
  7034. <chord/>
  7035. <pitch>
  7036. <step>A</step>
  7037. <octave>3</octave>
  7038. </pitch>
  7039. <duration>1</duration>
  7040. <voice>1</voice>
  7041. <type>eighth</type>
  7042. <stem>up</stem>
  7043. </note>
  7044. <note default-x="167.30" default-y="-50.00" dynamics="141.11">
  7045. <chord/>
  7046. <pitch>
  7047. <step>C</step>
  7048. <alter>1</alter>
  7049. <octave>4</octave>
  7050. </pitch>
  7051. <duration>1</duration>
  7052. <voice>1</voice>
  7053. <type>eighth</type>
  7054. <stem>up</stem>
  7055. </note>
  7056. <note default-x="167.30" default-y="-40.00" dynamics="141.11">
  7057. <chord/>
  7058. <pitch>
  7059. <step>E</step>
  7060. <octave>4</octave>
  7061. </pitch>
  7062. <duration>1</duration>
  7063. <voice>1</voice>
  7064. <type>eighth</type>
  7065. <stem>up</stem>
  7066. </note>
  7067. <note default-x="204.34" default-y="-65.00" dynamics="141.11">
  7068. <pitch>
  7069. <step>G</step>
  7070. <octave>3</octave>
  7071. </pitch>
  7072. <duration>1</duration>
  7073. <voice>1</voice>
  7074. <type>eighth</type>
  7075. <stem>up</stem>
  7076. <beam number="1">continue</beam>
  7077. <notations>
  7078. <articulations>
  7079. <staccato/>
  7080. </articulations>
  7081. </notations>
  7082. </note>
  7083. <note default-x="216.20" default-y="-60.00" dynamics="141.11">
  7084. <chord/>
  7085. <pitch>
  7086. <step>A</step>
  7087. <octave>3</octave>
  7088. </pitch>
  7089. <duration>1</duration>
  7090. <voice>1</voice>
  7091. <type>eighth</type>
  7092. <stem>up</stem>
  7093. </note>
  7094. <note default-x="204.34" default-y="-50.00" dynamics="141.11">
  7095. <chord/>
  7096. <pitch>
  7097. <step>C</step>
  7098. <alter>1</alter>
  7099. <octave>4</octave>
  7100. </pitch>
  7101. <duration>1</duration>
  7102. <voice>1</voice>
  7103. <type>eighth</type>
  7104. <stem>up</stem>
  7105. </note>
  7106. <note default-x="204.34" default-y="-40.00" dynamics="141.11">
  7107. <chord/>
  7108. <pitch>
  7109. <step>E</step>
  7110. <octave>4</octave>
  7111. </pitch>
  7112. <duration>1</duration>
  7113. <voice>1</voice>
  7114. <type>eighth</type>
  7115. <stem>up</stem>
  7116. </note>
  7117. <note default-x="241.37" default-y="-65.00" dynamics="141.11">
  7118. <pitch>
  7119. <step>G</step>
  7120. <octave>3</octave>
  7121. </pitch>
  7122. <duration>1</duration>
  7123. <voice>1</voice>
  7124. <type>eighth</type>
  7125. <stem>up</stem>
  7126. <beam number="1">end</beam>
  7127. <notations>
  7128. <articulations>
  7129. <staccato/>
  7130. </articulations>
  7131. </notations>
  7132. </note>
  7133. <note default-x="253.23" default-y="-60.00" dynamics="141.11">
  7134. <chord/>
  7135. <pitch>
  7136. <step>A</step>
  7137. <octave>3</octave>
  7138. </pitch>
  7139. <duration>1</duration>
  7140. <voice>1</voice>
  7141. <type>eighth</type>
  7142. <stem>up</stem>
  7143. </note>
  7144. <note default-x="241.37" default-y="-50.00" dynamics="141.11">
  7145. <chord/>
  7146. <pitch>
  7147. <step>C</step>
  7148. <alter>1</alter>
  7149. <octave>4</octave>
  7150. </pitch>
  7151. <duration>1</duration>
  7152. <voice>1</voice>
  7153. <type>eighth</type>
  7154. <stem>up</stem>
  7155. </note>
  7156. <note default-x="241.37" default-y="-40.00" dynamics="141.11">
  7157. <chord/>
  7158. <pitch>
  7159. <step>E</step>
  7160. <octave>4</octave>
  7161. </pitch>
  7162. <duration>1</duration>
  7163. <voice>1</voice>
  7164. <type>eighth</type>
  7165. <stem>up</stem>
  7166. </note>
  7167. <barline location="right">
  7168. <bar-style>light-heavy</bar-style>
  7169. <repeat direction="backward"/>
  7170. </barline>
  7171. </measure>
  7172. <measure number="23" width="198.31">
  7173. <note default-x="12.36" default-y="-65.00" dynamics="141.11">
  7174. <pitch>
  7175. <step>G</step>
  7176. <octave>3</octave>
  7177. </pitch>
  7178. <duration>1</duration>
  7179. <voice>1</voice>
  7180. <type>eighth</type>
  7181. <stem>up</stem>
  7182. <beam number="1">begin</beam>
  7183. <notations>
  7184. <slur type="start" number="1"/>
  7185. </notations>
  7186. </note>
  7187. <note default-x="24.23" default-y="-60.00" dynamics="141.11">
  7188. <chord/>
  7189. <pitch>
  7190. <step>A</step>
  7191. <octave>3</octave>
  7192. </pitch>
  7193. <duration>1</duration>
  7194. <voice>1</voice>
  7195. <type>eighth</type>
  7196. <stem>up</stem>
  7197. </note>
  7198. <note default-x="12.36" default-y="-50.00" dynamics="141.11">
  7199. <chord/>
  7200. <pitch>
  7201. <step>C</step>
  7202. <alter>1</alter>
  7203. <octave>4</octave>
  7204. </pitch>
  7205. <duration>1</duration>
  7206. <voice>1</voice>
  7207. <type>eighth</type>
  7208. <stem>up</stem>
  7209. </note>
  7210. <note default-x="12.36" default-y="-40.00" dynamics="141.11">
  7211. <chord/>
  7212. <pitch>
  7213. <step>E</step>
  7214. <octave>4</octave>
  7215. </pitch>
  7216. <duration>1</duration>
  7217. <voice>1</voice>
  7218. <type>eighth</type>
  7219. <stem>up</stem>
  7220. </note>
  7221. <note default-x="49.39" default-y="-70.00" dynamics="141.11">
  7222. <pitch>
  7223. <step>F</step>
  7224. <alter>1</alter>
  7225. <octave>3</octave>
  7226. </pitch>
  7227. <duration>1</duration>
  7228. <voice>1</voice>
  7229. <type>eighth</type>
  7230. <stem>up</stem>
  7231. <beam number="1">continue</beam>
  7232. <notations>
  7233. <slur type="stop" number="1"/>
  7234. </notations>
  7235. </note>
  7236. <note default-x="49.39" default-y="-60.00" dynamics="141.11">
  7237. <chord/>
  7238. <pitch>
  7239. <step>A</step>
  7240. <octave>3</octave>
  7241. </pitch>
  7242. <duration>1</duration>
  7243. <voice>1</voice>
  7244. <type>eighth</type>
  7245. <stem>up</stem>
  7246. </note>
  7247. <note default-x="49.39" default-y="-45.00" dynamics="141.11">
  7248. <chord/>
  7249. <pitch>
  7250. <step>D</step>
  7251. <octave>4</octave>
  7252. </pitch>
  7253. <duration>1</duration>
  7254. <voice>1</voice>
  7255. <type>eighth</type>
  7256. <stem>up</stem>
  7257. </note>
  7258. <note default-x="74.56" default-y="-70.00" dynamics="141.11">
  7259. <pitch>
  7260. <step>F</step>
  7261. <alter>1</alter>
  7262. <octave>3</octave>
  7263. </pitch>
  7264. <duration>1</duration>
  7265. <voice>1</voice>
  7266. <type>eighth</type>
  7267. <stem>up</stem>
  7268. <beam number="1">continue</beam>
  7269. <notations>
  7270. <articulations>
  7271. <staccato/>
  7272. </articulations>
  7273. </notations>
  7274. </note>
  7275. <note default-x="74.56" default-y="-60.00" dynamics="141.11">
  7276. <chord/>
  7277. <pitch>
  7278. <step>A</step>
  7279. <octave>3</octave>
  7280. </pitch>
  7281. <duration>1</duration>
  7282. <voice>1</voice>
  7283. <type>eighth</type>
  7284. <stem>up</stem>
  7285. </note>
  7286. <note default-x="74.56" default-y="-45.00" dynamics="141.11">
  7287. <chord/>
  7288. <pitch>
  7289. <step>D</step>
  7290. <octave>4</octave>
  7291. </pitch>
  7292. <duration>1</duration>
  7293. <voice>1</voice>
  7294. <type>eighth</type>
  7295. <stem>up</stem>
  7296. </note>
  7297. <note default-x="99.72" default-y="-70.00" dynamics="141.11">
  7298. <pitch>
  7299. <step>F</step>
  7300. <alter>1</alter>
  7301. <octave>3</octave>
  7302. </pitch>
  7303. <duration>1</duration>
  7304. <voice>1</voice>
  7305. <type>eighth</type>
  7306. <stem>up</stem>
  7307. <beam number="1">end</beam>
  7308. <notations>
  7309. <articulations>
  7310. <staccato/>
  7311. </articulations>
  7312. </notations>
  7313. </note>
  7314. <note default-x="99.72" default-y="-60.00" dynamics="141.11">
  7315. <chord/>
  7316. <pitch>
  7317. <step>A</step>
  7318. <octave>3</octave>
  7319. </pitch>
  7320. <duration>1</duration>
  7321. <voice>1</voice>
  7322. <type>eighth</type>
  7323. <stem>up</stem>
  7324. </note>
  7325. <note default-x="99.72" default-y="-45.00" dynamics="141.11">
  7326. <chord/>
  7327. <pitch>
  7328. <step>D</step>
  7329. <octave>4</octave>
  7330. </pitch>
  7331. <duration>1</duration>
  7332. <voice>1</voice>
  7333. <type>eighth</type>
  7334. <stem>up</stem>
  7335. </note>
  7336. <note default-x="124.89" default-y="-70.00" dynamics="141.11">
  7337. <pitch>
  7338. <step>F</step>
  7339. <alter>1</alter>
  7340. <octave>3</octave>
  7341. </pitch>
  7342. <duration>2</duration>
  7343. <voice>1</voice>
  7344. <type>quarter</type>
  7345. <stem>up</stem>
  7346. </note>
  7347. <note default-x="124.89" default-y="-60.00" dynamics="141.11">
  7348. <chord/>
  7349. <pitch>
  7350. <step>A</step>
  7351. <octave>3</octave>
  7352. </pitch>
  7353. <duration>2</duration>
  7354. <voice>1</voice>
  7355. <type>quarter</type>
  7356. <stem>up</stem>
  7357. </note>
  7358. <note default-x="124.89" default-y="-45.00" dynamics="141.11">
  7359. <chord/>
  7360. <pitch>
  7361. <step>D</step>
  7362. <octave>4</octave>
  7363. </pitch>
  7364. <duration>2</duration>
  7365. <voice>1</voice>
  7366. <type>quarter</type>
  7367. <stem>up</stem>
  7368. </note>
  7369. <note>
  7370. <rest/>
  7371. <duration>2</duration>
  7372. <voice>1</voice>
  7373. <type>quarter</type>
  7374. </note>
  7375. </measure>
  7376. </part>
  7377. <part id="P3">
  7378. <measure number="1" width="368.47">
  7379. <print>
  7380. <staff-layout number="1">
  7381. <staff-distance>60.00</staff-distance>
  7382. </staff-layout>
  7383. </print>
  7384. <attributes>
  7385. <divisions>2</divisions>
  7386. <key>
  7387. <fifths>2</fifths>
  7388. <mode>major</mode>
  7389. </key>
  7390. <time symbol="cut">
  7391. <beats>2</beats>
  7392. <beat-type>2</beat-type>
  7393. </time>
  7394. <clef>
  7395. <sign>F</sign>
  7396. <line>4</line>
  7397. </clef>
  7398. </attributes>
  7399. <direction placement="above">
  7400. <direction-type>
  7401. <dynamics default-x="5.33" default-y="-80.00" relative-x="-7.77" relative-y="94.64">
  7402. <p/>
  7403. </dynamics>
  7404. </direction-type>
  7405. <sound dynamics="66.67"/>
  7406. </direction>
  7407. <note>
  7408. <rest/>
  7409. <duration>2</duration>
  7410. <voice>1</voice>
  7411. <type>quarter</type>
  7412. </note>
  7413. <note default-x="166.05" default-y="-281.00" dynamics="141.11">
  7414. <pitch>
  7415. <step>A</step>
  7416. <octave>2</octave>
  7417. </pitch>
  7418. <duration>2</duration>
  7419. <voice>1</voice>
  7420. <type>quarter</type>
  7421. <stem>up</stem>
  7422. <notations>
  7423. <slur type="start" number="1"/>
  7424. </notations>
  7425. </note>
  7426. <note default-x="232.99" default-y="-266.00" dynamics="141.11">
  7427. <pitch>
  7428. <step>D</step>
  7429. <octave>3</octave>
  7430. </pitch>
  7431. <duration>2</duration>
  7432. <voice>1</voice>
  7433. <type>quarter</type>
  7434. <stem>down</stem>
  7435. <notations>
  7436. <slur type="stop" number="1"/>
  7437. </notations>
  7438. </note>
  7439. <note default-x="299.93" default-y="-266.00" dynamics="141.11">
  7440. <pitch>
  7441. <step>D</step>
  7442. <octave>3</octave>
  7443. </pitch>
  7444. <duration>2</duration>
  7445. <voice>1</voice>
  7446. <type>quarter</type>
  7447. <stem>down</stem>
  7448. <notations>
  7449. <articulations>
  7450. <staccato/>
  7451. </articulations>
  7452. </notations>
  7453. </note>
  7454. </measure>
  7455. <measure number="2" width="330.62">
  7456. <note default-x="12.00" default-y="-291.00" dynamics="141.11">
  7457. <pitch>
  7458. <step>F</step>
  7459. <alter>1</alter>
  7460. <octave>2</octave>
  7461. </pitch>
  7462. <duration>4</duration>
  7463. <voice>1</voice>
  7464. <type>half</type>
  7465. <stem>up</stem>
  7466. <notations>
  7467. <articulations>
  7468. <accent/>
  7469. </articulations>
  7470. </notations>
  7471. </note>
  7472. <note default-x="162.92" default-y="-281.00" dynamics="141.11">
  7473. <pitch>
  7474. <step>A</step>
  7475. <octave>2</octave>
  7476. </pitch>
  7477. <duration>2</duration>
  7478. <voice>1</voice>
  7479. <type>quarter</type>
  7480. <stem>up</stem>
  7481. <notations>
  7482. <articulations>
  7483. <staccato/>
  7484. </articulations>
  7485. </notations>
  7486. </note>
  7487. <note default-x="238.21" default-y="-316.00" dynamics="141.11">
  7488. <pitch>
  7489. <step>A</step>
  7490. <octave>1</octave>
  7491. </pitch>
  7492. <duration>2</duration>
  7493. <voice>1</voice>
  7494. <type>quarter</type>
  7495. <stem>up</stem>
  7496. <notations>
  7497. <articulations>
  7498. <staccato/>
  7499. </articulations>
  7500. </notations>
  7501. </note>
  7502. </measure>
  7503. <measure number="3" width="291.36">
  7504. <barline location="left">
  7505. <bar-style>heavy-light</bar-style>
  7506. <repeat direction="forward"/>
  7507. </barline>
  7508. <direction placement="above">
  7509. <direction-type>
  7510. <dynamics default-x="6.58" default-y="-80.00" relative-x="12.21" relative-y="89.85">
  7511. <pp/>
  7512. </dynamics>
  7513. </direction-type>
  7514. <sound dynamics="55.56"/>
  7515. </direction>
  7516. <note default-x="12.94" default-y="-301.00" dynamics="141.11">
  7517. <pitch>
  7518. <step>D</step>
  7519. <octave>2</octave>
  7520. </pitch>
  7521. <duration>2</duration>
  7522. <voice>1</voice>
  7523. <type>quarter</type>
  7524. <stem>up</stem>
  7525. </note>
  7526. <note>
  7527. <rest/>
  7528. <duration>2</duration>
  7529. <voice>1</voice>
  7530. <type>quarter</type>
  7531. </note>
  7532. <note>
  7533. <rest/>
  7534. <duration>4</duration>
  7535. <voice>1</voice>
  7536. <type>half</type>
  7537. </note>
  7538. </measure>
  7539. <measure number="4" width="372.07">
  7540. <print new-system="yes">
  7541. <staff-layout number="1">
  7542. <staff-distance>60.00</staff-distance>
  7543. </staff-layout>
  7544. </print>
  7545. <note>
  7546. <rest/>
  7547. <duration>2</duration>
  7548. <voice>1</voice>
  7549. <type>quarter</type>
  7550. </note>
  7551. <note default-x="165.04" default-y="-291.00" dynamics="141.11">
  7552. <pitch>
  7553. <step>F</step>
  7554. <alter>1</alter>
  7555. <octave>2</octave>
  7556. </pitch>
  7557. <duration>2</duration>
  7558. <voice>1</voice>
  7559. <type>quarter</type>
  7560. <stem>up</stem>
  7561. <notations>
  7562. <slur type="start" number="1"/>
  7563. </notations>
  7564. </note>
  7565. <note default-x="233.52" default-y="-276.00" dynamics="141.11">
  7566. <pitch>
  7567. <step>B</step>
  7568. <octave>2</octave>
  7569. </pitch>
  7570. <duration>2</duration>
  7571. <voice>1</voice>
  7572. <type>quarter</type>
  7573. <stem>up</stem>
  7574. <notations>
  7575. <slur type="stop" number="1"/>
  7576. </notations>
  7577. </note>
  7578. <note default-x="302.00" default-y="-286.00" dynamics="141.11">
  7579. <pitch>
  7580. <step>G</step>
  7581. <alter>1</alter>
  7582. <octave>2</octave>
  7583. </pitch>
  7584. <duration>2</duration>
  7585. <voice>1</voice>
  7586. <type>quarter</type>
  7587. <accidental>sharp</accidental>
  7588. <stem>up</stem>
  7589. <notations>
  7590. <articulations>
  7591. <staccato/>
  7592. </articulations>
  7593. </notations>
  7594. </note>
  7595. </measure>
  7596. <measure number="5" width="323.31">
  7597. <note default-x="28.74" default-y="-281.00" dynamics="141.11">
  7598. <pitch>
  7599. <step>A</step>
  7600. <octave>2</octave>
  7601. </pitch>
  7602. <duration>2</duration>
  7603. <voice>1</voice>
  7604. <type>quarter</type>
  7605. <stem>up</stem>
  7606. </note>
  7607. <note>
  7608. <rest/>
  7609. <duration>2</duration>
  7610. <voice>1</voice>
  7611. <type>quarter</type>
  7612. </note>
  7613. <note default-x="169.73" default-y="-281.00" dynamics="141.11">
  7614. <pitch>
  7615. <step>A</step>
  7616. <octave>2</octave>
  7617. </pitch>
  7618. <duration>2</duration>
  7619. <voice>1</voice>
  7620. <type>quarter</type>
  7621. <stem>up</stem>
  7622. </note>
  7623. <note>
  7624. <rest/>
  7625. <duration>2</duration>
  7626. <voice>1</voice>
  7627. <type>quarter</type>
  7628. </note>
  7629. </measure>
  7630. <measure number="6" width="295.49">
  7631. <note default-x="25.60" default-y="-266.00" dynamics="141.11">
  7632. <pitch>
  7633. <step>D</step>
  7634. <octave>3</octave>
  7635. </pitch>
  7636. <duration>2</duration>
  7637. <voice>1</voice>
  7638. <type>quarter</type>
  7639. <stem>down</stem>
  7640. <notations>
  7641. <articulations>
  7642. <staccato/>
  7643. </articulations>
  7644. </notations>
  7645. </note>
  7646. <note default-x="92.67" default-y="-281.00" dynamics="141.11">
  7647. <pitch>
  7648. <step>A</step>
  7649. <octave>2</octave>
  7650. </pitch>
  7651. <duration>2</duration>
  7652. <voice>1</voice>
  7653. <type>quarter</type>
  7654. <stem>up</stem>
  7655. <notations>
  7656. <slur type="start" number="1"/>
  7657. </notations>
  7658. </note>
  7659. <note default-x="159.74" default-y="-266.00" dynamics="141.11">
  7660. <pitch>
  7661. <step>D</step>
  7662. <octave>3</octave>
  7663. </pitch>
  7664. <duration>2</duration>
  7665. <voice>1</voice>
  7666. <type>quarter</type>
  7667. <stem>down</stem>
  7668. <notations>
  7669. <slur type="stop" number="1"/>
  7670. </notations>
  7671. </note>
  7672. <note default-x="226.82" default-y="-266.00" dynamics="141.11">
  7673. <pitch>
  7674. <step>D</step>
  7675. <octave>3</octave>
  7676. </pitch>
  7677. <duration>2</duration>
  7678. <voice>1</voice>
  7679. <type>quarter</type>
  7680. <stem>down</stem>
  7681. <notations>
  7682. <articulations>
  7683. <staccato/>
  7684. </articulations>
  7685. </notations>
  7686. </note>
  7687. </measure>
  7688. <measure number="7" width="349.82">
  7689. <print new-system="yes">
  7690. <staff-layout number="1">
  7691. <staff-distance>60.00</staff-distance>
  7692. </staff-layout>
  7693. </print>
  7694. <note default-x="76.45" default-y="-291.00" dynamics="141.11">
  7695. <pitch>
  7696. <step>F</step>
  7697. <alter>1</alter>
  7698. <octave>2</octave>
  7699. </pitch>
  7700. <duration>4</duration>
  7701. <voice>1</voice>
  7702. <type>half</type>
  7703. <stem>up</stem>
  7704. <notations>
  7705. <slur type="start" number="1"/>
  7706. </notations>
  7707. </note>
  7708. <note default-x="212.15" default-y="-286.00" dynamics="141.11">
  7709. <pitch>
  7710. <step>G</step>
  7711. <octave>2</octave>
  7712. </pitch>
  7713. <duration>4</duration>
  7714. <voice>1</voice>
  7715. <type>half</type>
  7716. <stem>up</stem>
  7717. <notations>
  7718. <slur type="stop" number="1"/>
  7719. </notations>
  7720. </note>
  7721. </measure>
  7722. <measure number="8" width="295.18">
  7723. <note default-x="18.86" default-y="-281.00" dynamics="141.11">
  7724. <pitch>
  7725. <step>A</step>
  7726. <octave>2</octave>
  7727. </pitch>
  7728. <duration>2</duration>
  7729. <voice>1</voice>
  7730. <type>quarter</type>
  7731. <stem>up</stem>
  7732. <notations>
  7733. <slur type="start" number="1"/>
  7734. </notations>
  7735. </note>
  7736. <note default-x="86.43" default-y="-281.00" dynamics="141.11">
  7737. <pitch>
  7738. <step>A</step>
  7739. <alter>1</alter>
  7740. <octave>2</octave>
  7741. </pitch>
  7742. <duration>2</duration>
  7743. <voice>1</voice>
  7744. <type>quarter</type>
  7745. <accidental>sharp</accidental>
  7746. <stem>up</stem>
  7747. </note>
  7748. <note default-x="158.07" default-y="-276.00" dynamics="141.11">
  7749. <pitch>
  7750. <step>B</step>
  7751. <octave>2</octave>
  7752. </pitch>
  7753. <duration>4</duration>
  7754. <voice>1</voice>
  7755. <type>half</type>
  7756. <stem>up</stem>
  7757. <notations>
  7758. <slur type="stop" number="1"/>
  7759. </notations>
  7760. </note>
  7761. </measure>
  7762. <measure number="9" width="345.88">
  7763. <note default-x="13.64" default-y="-271.00" dynamics="141.11">
  7764. <pitch>
  7765. <step>C</step>
  7766. <alter>1</alter>
  7767. <octave>3</octave>
  7768. </pitch>
  7769. <duration>4</duration>
  7770. <voice>1</voice>
  7771. <type>half</type>
  7772. <stem>up</stem>
  7773. <notations>
  7774. <slur type="start" number="1"/>
  7775. </notations>
  7776. </note>
  7777. <note default-x="183.55" default-y="-266.00" dynamics="141.11">
  7778. <pitch>
  7779. <step>D</step>
  7780. <octave>3</octave>
  7781. </pitch>
  7782. <duration>4</duration>
  7783. <voice>1</voice>
  7784. <type>half</type>
  7785. <stem>down</stem>
  7786. <notations>
  7787. <slur type="stop" number="1"/>
  7788. </notations>
  7789. </note>
  7790. </measure>
  7791. <measure number="10" width="364.42">
  7792. <print new-page="yes">
  7793. <staff-layout number="1">
  7794. <staff-distance>60.00</staff-distance>
  7795. </staff-layout>
  7796. </print>
  7797. <note default-x="75.87" default-y="-281.00" dynamics="141.11">
  7798. <pitch>
  7799. <step>A</step>
  7800. <octave>2</octave>
  7801. </pitch>
  7802. <duration>2</duration>
  7803. <voice>1</voice>
  7804. <type>quarter</type>
  7805. <stem>up</stem>
  7806. <notations>
  7807. <slur type="start" number="1"/>
  7808. </notations>
  7809. </note>
  7810. <note default-x="147.61" default-y="-246.00" dynamics="141.11">
  7811. <pitch>
  7812. <step>A</step>
  7813. <octave>3</octave>
  7814. </pitch>
  7815. <duration>2</duration>
  7816. <voice>1</voice>
  7817. <type>quarter</type>
  7818. <stem>down</stem>
  7819. </note>
  7820. <note default-x="219.34" default-y="-251.00" dynamics="141.11">
  7821. <pitch>
  7822. <step>G</step>
  7823. <alter>1</alter>
  7824. <octave>3</octave>
  7825. </pitch>
  7826. <duration>2</duration>
  7827. <voice>1</voice>
  7828. <type>quarter</type>
  7829. <accidental>sharp</accidental>
  7830. <stem>down</stem>
  7831. </note>
  7832. <note default-x="291.08" default-y="-251.00" dynamics="141.11">
  7833. <pitch>
  7834. <step>G</step>
  7835. <octave>3</octave>
  7836. </pitch>
  7837. <duration>2</duration>
  7838. <voice>1</voice>
  7839. <type>quarter</type>
  7840. <accidental>natural</accidental>
  7841. <stem>down</stem>
  7842. <notations>
  7843. <slur type="stop" number="1"/>
  7844. </notations>
  7845. </note>
  7846. </measure>
  7847. <measure number="11" width="312.51">
  7848. <note default-x="12.94" default-y="-256.00" dynamics="141.11">
  7849. <pitch>
  7850. <step>F</step>
  7851. <alter>1</alter>
  7852. <octave>3</octave>
  7853. </pitch>
  7854. <duration>2</duration>
  7855. <voice>1</voice>
  7856. <type>quarter</type>
  7857. <stem>down</stem>
  7858. <notations>
  7859. <slur type="start" number="1"/>
  7860. </notations>
  7861. </note>
  7862. <note default-x="87.05" default-y="-266.00" dynamics="141.11">
  7863. <pitch>
  7864. <step>D</step>
  7865. <octave>3</octave>
  7866. </pitch>
  7867. <duration>2</duration>
  7868. <voice>1</voice>
  7869. <type>quarter</type>
  7870. <stem>down</stem>
  7871. </note>
  7872. <note default-x="161.16" default-y="-271.00" dynamics="141.11">
  7873. <pitch>
  7874. <step>C</step>
  7875. <alter>1</alter>
  7876. <octave>3</octave>
  7877. </pitch>
  7878. <duration>2</duration>
  7879. <voice>1</voice>
  7880. <type>quarter</type>
  7881. <stem>up</stem>
  7882. </note>
  7883. <note default-x="235.27" default-y="-281.00" dynamics="141.11">
  7884. <pitch>
  7885. <step>A</step>
  7886. <octave>2</octave>
  7887. </pitch>
  7888. <duration>2</duration>
  7889. <voice>1</voice>
  7890. <type>quarter</type>
  7891. <stem>up</stem>
  7892. <notations>
  7893. <slur type="stop" number="1"/>
  7894. </notations>
  7895. </note>
  7896. </measure>
  7897. <measure number="12" width="313.95">
  7898. <note default-x="14.00" default-y="-266.00" dynamics="141.11">
  7899. <pitch>
  7900. <step>D</step>
  7901. <octave>3</octave>
  7902. </pitch>
  7903. <duration>2</duration>
  7904. <voice>1</voice>
  7905. <type>quarter</type>
  7906. <stem>down</stem>
  7907. <notations>
  7908. <slur type="start" number="1"/>
  7909. </notations>
  7910. </note>
  7911. <note default-x="88.59" default-y="-281.00" dynamics="141.11">
  7912. <pitch>
  7913. <step>A</step>
  7914. <octave>2</octave>
  7915. </pitch>
  7916. <duration>1</duration>
  7917. <voice>1</voice>
  7918. <type>eighth</type>
  7919. <stem>down</stem>
  7920. <beam number="1">begin</beam>
  7921. </note>
  7922. <note default-x="125.88" default-y="-246.00">
  7923. <pitch>
  7924. <step>A</step>
  7925. <octave>3</octave>
  7926. </pitch>
  7927. <duration>1</duration>
  7928. <voice>1</voice>
  7929. <type>eighth</type>
  7930. <stem>down</stem>
  7931. <beam number="1">end</beam>
  7932. </note>
  7933. <note default-x="163.17" default-y="-251.00" dynamics="141.11">
  7934. <pitch>
  7935. <step>G</step>
  7936. <alter>1</alter>
  7937. <octave>3</octave>
  7938. </pitch>
  7939. <duration>2</duration>
  7940. <voice>1</voice>
  7941. <type>quarter</type>
  7942. <accidental>sharp</accidental>
  7943. <stem>down</stem>
  7944. </note>
  7945. <note default-x="237.76" default-y="-251.00" dynamics="141.11">
  7946. <pitch>
  7947. <step>G</step>
  7948. <octave>3</octave>
  7949. </pitch>
  7950. <duration>2</duration>
  7951. <voice>1</voice>
  7952. <type>quarter</type>
  7953. <accidental>natural</accidental>
  7954. <stem>down</stem>
  7955. <notations>
  7956. <slur type="stop" number="1"/>
  7957. </notations>
  7958. </note>
  7959. </measure>
  7960. <measure number="13" width="374.36">
  7961. <print new-system="yes">
  7962. <staff-layout number="1">
  7963. <staff-distance>60.00</staff-distance>
  7964. </staff-layout>
  7965. </print>
  7966. <note default-x="85.76" default-y="-256.00" dynamics="141.11">
  7967. <pitch>
  7968. <step>F</step>
  7969. <alter>1</alter>
  7970. <octave>3</octave>
  7971. </pitch>
  7972. <duration>2</duration>
  7973. <voice>1</voice>
  7974. <type>quarter</type>
  7975. <stem>down</stem>
  7976. <notations>
  7977. <slur type="start" number="1"/>
  7978. </notations>
  7979. </note>
  7980. <note default-x="155.74" default-y="-266.00" dynamics="141.11">
  7981. <pitch>
  7982. <step>D</step>
  7983. <octave>3</octave>
  7984. </pitch>
  7985. <duration>2</duration>
  7986. <voice>1</voice>
  7987. <type>quarter</type>
  7988. <stem>down</stem>
  7989. </note>
  7990. <note default-x="232.77" default-y="-271.00">
  7991. <pitch>
  7992. <step>C</step>
  7993. <alter>1</alter>
  7994. <octave>3</octave>
  7995. </pitch>
  7996. <duration>3</duration>
  7997. <voice>1</voice>
  7998. <type>quarter</type>
  7999. <dot/>
  8000. <stem>up</stem>
  8001. </note>
  8002. <note default-x="337.73" default-y="-281.00" dynamics="141.11">
  8003. <pitch>
  8004. <step>A</step>
  8005. <octave>2</octave>
  8006. </pitch>
  8007. <duration>1</duration>
  8008. <voice>1</voice>
  8009. <type>eighth</type>
  8010. <stem>up</stem>
  8011. <notations>
  8012. <slur type="stop" number="1"/>
  8013. </notations>
  8014. </note>
  8015. </measure>
  8016. <measure number="14" width="323.63">
  8017. <note default-x="28.38" default-y="-266.00" dynamics="141.11">
  8018. <pitch>
  8019. <step>D</step>
  8020. <octave>3</octave>
  8021. </pitch>
  8022. <duration>4</duration>
  8023. <voice>1</voice>
  8024. <type>half</type>
  8025. <stem>down</stem>
  8026. <notations>
  8027. <slur type="start" number="1"/>
  8028. </notations>
  8029. </note>
  8030. <note default-x="175.18" default-y="-261.00" dynamics="141.11">
  8031. <pitch>
  8032. <step>E</step>
  8033. <octave>3</octave>
  8034. </pitch>
  8035. <duration>2</duration>
  8036. <voice>1</voice>
  8037. <type>quarter</type>
  8038. <stem>down</stem>
  8039. </note>
  8040. <direction placement="above">
  8041. <direction-type>
  8042. <dynamics default-x="3.29" default-y="-80.00" relative-x="-9.00" relative-y="98.99">
  8043. <other-dynamics>cresc.</other-dynamics>
  8044. </dynamics>
  8045. </direction-type>
  8046. </direction>
  8047. <note default-x="248.39" default-y="-256.00" dynamics="141.11">
  8048. <pitch>
  8049. <step>F</step>
  8050. <alter>1</alter>
  8051. <octave>3</octave>
  8052. </pitch>
  8053. <duration>2</duration>
  8054. <voice>1</voice>
  8055. <type>quarter</type>
  8056. <stem>down</stem>
  8057. <notations>
  8058. <slur type="stop" number="1"/>
  8059. </notations>
  8060. </note>
  8061. </measure>
  8062. <measure number="15" width="292.88">
  8063. <note default-x="27.05" default-y="-251.00" dynamics="141.11">
  8064. <pitch>
  8065. <step>G</step>
  8066. <octave>3</octave>
  8067. </pitch>
  8068. <duration>4</duration>
  8069. <voice>1</voice>
  8070. <type>half</type>
  8071. <stem>down</stem>
  8072. <notations>
  8073. <slur type="start" number="1"/>
  8074. </notations>
  8075. </note>
  8076. <note default-x="163.37" default-y="-251.00" dynamics="141.11">
  8077. <pitch>
  8078. <step>G</step>
  8079. <alter>1</alter>
  8080. <octave>3</octave>
  8081. </pitch>
  8082. <duration>4</duration>
  8083. <voice>1</voice>
  8084. <type>half</type>
  8085. <accidental>sharp</accidental>
  8086. <stem>down</stem>
  8087. <notations>
  8088. <slur type="stop" number="1"/>
  8089. </notations>
  8090. </note>
  8091. </measure>
  8092. <measure number="16" width="298.00">
  8093. <print new-system="yes">
  8094. <staff-layout number="1">
  8095. <staff-distance>60.00</staff-distance>
  8096. </staff-layout>
  8097. </print>
  8098. <direction placement="above">
  8099. <direction-type>
  8100. <wedge type="crescendo" number="1" default-y="35.97" relative-x="-20.12"/>
  8101. </direction-type>
  8102. </direction>
  8103. <note default-x="88.64" default-y="-246.00" dynamics="141.11">
  8104. <pitch>
  8105. <step>A</step>
  8106. <octave>3</octave>
  8107. </pitch>
  8108. <duration>4</duration>
  8109. <voice>1</voice>
  8110. <type>half</type>
  8111. <stem>down</stem>
  8112. <notations>
  8113. <slur type="start" number="1"/>
  8114. </notations>
  8115. </note>
  8116. <direction placement="above">
  8117. <direction-type>
  8118. <wedge type="stop" number="1" relative-x="-92.11"/>
  8119. </direction-type>
  8120. </direction>
  8121. <direction placement="above">
  8122. <direction-type>
  8123. <wedge type="diminuendo" number="1" default-y="36.26" relative-x="-4.53"/>
  8124. </direction-type>
  8125. </direction>
  8126. <note default-x="183.09" default-y="-246.00" dynamics="141.11">
  8127. <pitch>
  8128. <step>A</step>
  8129. <alter>1</alter>
  8130. <octave>3</octave>
  8131. </pitch>
  8132. <duration>4</duration>
  8133. <voice>1</voice>
  8134. <type>half</type>
  8135. <accidental>sharp</accidental>
  8136. <stem>down</stem>
  8137. <notations>
  8138. <slur type="stop" number="1"/>
  8139. </notations>
  8140. </note>
  8141. <direction placement="above">
  8142. <direction-type>
  8143. <wedge type="stop" number="1" relative-x="-4.53"/>
  8144. </direction-type>
  8145. </direction>
  8146. </measure>
  8147. <measure number="17" width="223.18">
  8148. <note default-x="28.38" default-y="-241.00" dynamics="141.11">
  8149. <pitch>
  8150. <step>B</step>
  8151. <octave>3</octave>
  8152. </pitch>
  8153. <duration>4</duration>
  8154. <voice>1</voice>
  8155. <type>half</type>
  8156. <stem>down</stem>
  8157. <notations>
  8158. <slur type="start" number="1"/>
  8159. </notations>
  8160. </note>
  8161. <direction placement="above">
  8162. <direction-type>
  8163. <dynamics default-x="3.29" default-y="-80.00" relative-x="0.85" relative-y="108.48">
  8164. <p/>
  8165. </dynamics>
  8166. </direction-type>
  8167. <sound dynamics="66.67"/>
  8168. </direction>
  8169. <note default-x="111.49" default-y="-251.00" dynamics="141.11">
  8170. <pitch>
  8171. <step>G</step>
  8172. <alter>1</alter>
  8173. <octave>3</octave>
  8174. </pitch>
  8175. <duration>4</duration>
  8176. <voice>1</voice>
  8177. <type>half</type>
  8178. <accidental>sharp</accidental>
  8179. <stem>down</stem>
  8180. <notations>
  8181. <slur type="stop" number="1"/>
  8182. </notations>
  8183. </note>
  8184. </measure>
  8185. <measure number="18" width="280.67">
  8186. <note default-x="13.64" default-y="-246.00" dynamics="141.11">
  8187. <pitch>
  8188. <step>A</step>
  8189. <octave>3</octave>
  8190. </pitch>
  8191. <duration>4</duration>
  8192. <voice>1</voice>
  8193. <type>half</type>
  8194. <stem>down</stem>
  8195. <notations>
  8196. <slur type="start" number="1"/>
  8197. </notations>
  8198. </note>
  8199. <note default-x="139.08" default-y="-281.00" dynamics="141.11">
  8200. <pitch>
  8201. <step>A</step>
  8202. <octave>2</octave>
  8203. </pitch>
  8204. <duration>4</duration>
  8205. <voice>1</voice>
  8206. <type>half</type>
  8207. <stem>up</stem>
  8208. <notations>
  8209. <slur type="stop" number="1"/>
  8210. </notations>
  8211. </note>
  8212. </measure>
  8213. <measure number="19" width="189.02">
  8214. <direction placement="above">
  8215. <direction-type>
  8216. <wedge type="crescendo" number="1" default-y="20.50" relative-x="-14.46"/>
  8217. </direction-type>
  8218. </direction>
  8219. <note default-x="29.02" default-y="-266.00" dynamics="141.11">
  8220. <pitch>
  8221. <step>D</step>
  8222. <octave>3</octave>
  8223. </pitch>
  8224. <duration>2</duration>
  8225. <voice>1</voice>
  8226. <type>quarter</type>
  8227. <stem>down</stem>
  8228. </note>
  8229. <note>
  8230. <rest/>
  8231. <duration>2</duration>
  8232. <voice>1</voice>
  8233. <type>quarter</type>
  8234. </note>
  8235. <note>
  8236. <rest/>
  8237. <duration>4</duration>
  8238. <voice>1</voice>
  8239. <type>half</type>
  8240. </note>
  8241. <direction placement="above">
  8242. <direction-type>
  8243. <wedge type="stop" number="1" relative-x="-14.46"/>
  8244. </direction-type>
  8245. </direction>
  8246. </measure>
  8247. <measure number="20" width="256.63">
  8248. <print new-system="yes">
  8249. <staff-layout number="1">
  8250. <staff-distance>60.00</staff-distance>
  8251. </staff-layout>
  8252. </print>
  8253. <direction placement="above">
  8254. <direction-type>
  8255. <dynamics default-x="6.58" default-y="-80.00" relative-x="1.48" relative-y="93.60">
  8256. <fp/>
  8257. </dynamics>
  8258. </direction-type>
  8259. </direction>
  8260. <note default-x="75.87" default-y="-175.00" dynamics="141.11">
  8261. <pitch>
  8262. <step>G</step>
  8263. <octave>1</octave>
  8264. </pitch>
  8265. <duration>4</duration>
  8266. <voice>1</voice>
  8267. <type>half</type>
  8268. <stem>up</stem>
  8269. </note>
  8270. <note default-x="75.87" default-y="-140.00" dynamics="141.11">
  8271. <chord/>
  8272. <pitch>
  8273. <step>G</step>
  8274. <octave>2</octave>
  8275. </pitch>
  8276. <duration>4</duration>
  8277. <voice>1</voice>
  8278. <type>half</type>
  8279. <stem>up</stem>
  8280. </note>
  8281. <direction placement="above">
  8282. <direction-type>
  8283. <wedge type="diminuendo" number="1" default-y="22.22" relative-x="-27.26"/>
  8284. </direction-type>
  8285. </direction>
  8286. <note>
  8287. <rest/>
  8288. <duration>1</duration>
  8289. <voice>1</voice>
  8290. <type>eighth</type>
  8291. </note>
  8292. <note default-x="187.40" default-y="-140.00" dynamics="141.11">
  8293. <pitch>
  8294. <step>G</step>
  8295. <octave>2</octave>
  8296. </pitch>
  8297. <duration>1</duration>
  8298. <voice>1</voice>
  8299. <type>eighth</type>
  8300. <stem>up</stem>
  8301. <beam number="1">begin</beam>
  8302. <notations>
  8303. <articulations>
  8304. <staccato/>
  8305. </articulations>
  8306. </notations>
  8307. </note>
  8308. <note default-x="209.63" default-y="-130.00" dynamics="141.11">
  8309. <pitch>
  8310. <step>B</step>
  8311. <octave>2</octave>
  8312. </pitch>
  8313. <duration>1</duration>
  8314. <voice>1</voice>
  8315. <type>eighth</type>
  8316. <stem>up</stem>
  8317. <beam number="1">continue</beam>
  8318. <notations>
  8319. <articulations>
  8320. <staccato/>
  8321. </articulations>
  8322. </notations>
  8323. </note>
  8324. <note default-x="231.87" default-y="-125.00" dynamics="141.11">
  8325. <pitch>
  8326. <step>C</step>
  8327. <alter>1</alter>
  8328. <octave>3</octave>
  8329. </pitch>
  8330. <duration>1</duration>
  8331. <voice>1</voice>
  8332. <type>eighth</type>
  8333. <stem>up</stem>
  8334. <beam number="1">end</beam>
  8335. <notations>
  8336. <articulations>
  8337. <staccato/>
  8338. </articulations>
  8339. </notations>
  8340. </note>
  8341. <direction placement="above">
  8342. <direction-type>
  8343. <wedge type="stop" number="1" relative-x="-57.26"/>
  8344. </direction-type>
  8345. </direction>
  8346. </measure>
  8347. <measure number="21" width="242.40">
  8348. <direction placement="above">
  8349. <direction-type>
  8350. <dynamics default-x="6.58" default-y="-80.00" relative-x="-27.98" relative-y="100.79">
  8351. <fp/>
  8352. </dynamics>
  8353. </direction-type>
  8354. </direction>
  8355. <note default-x="12.00" default-y="-155.00" dynamics="141.11">
  8356. <pitch>
  8357. <step>D</step>
  8358. <octave>2</octave>
  8359. </pitch>
  8360. <duration>4</duration>
  8361. <voice>1</voice>
  8362. <type>half</type>
  8363. <stem>up</stem>
  8364. </note>
  8365. <note default-x="12.00" default-y="-120.00" dynamics="141.11">
  8366. <chord/>
  8367. <pitch>
  8368. <step>D</step>
  8369. <octave>3</octave>
  8370. </pitch>
  8371. <duration>4</duration>
  8372. <voice>1</voice>
  8373. <type>half</type>
  8374. <stem>up</stem>
  8375. </note>
  8376. <note>
  8377. <rest/>
  8378. <duration>1</duration>
  8379. <voice>1</voice>
  8380. <type>eighth</type>
  8381. </note>
  8382. <note default-x="155.14" default-y="-120.00" dynamics="141.11">
  8383. <pitch>
  8384. <step>D</step>
  8385. <octave>3</octave>
  8386. </pitch>
  8387. <duration>1</duration>
  8388. <voice>1</voice>
  8389. <type>eighth</type>
  8390. <stem>down</stem>
  8391. <beam number="1">begin</beam>
  8392. <notations>
  8393. <articulations>
  8394. <staccato/>
  8395. </articulations>
  8396. </notations>
  8397. </note>
  8398. <note default-x="183.69" default-y="-115.00" dynamics="141.11">
  8399. <pitch>
  8400. <step>E</step>
  8401. <octave>3</octave>
  8402. </pitch>
  8403. <duration>1</duration>
  8404. <voice>1</voice>
  8405. <type>eighth</type>
  8406. <stem>down</stem>
  8407. <beam number="1">continue</beam>
  8408. <notations>
  8409. <articulations>
  8410. <staccato/>
  8411. </articulations>
  8412. </notations>
  8413. </note>
  8414. <note default-x="212.25" default-y="-110.00" dynamics="141.11">
  8415. <pitch>
  8416. <step>F</step>
  8417. <alter>1</alter>
  8418. <octave>3</octave>
  8419. </pitch>
  8420. <duration>1</duration>
  8421. <voice>1</voice>
  8422. <type>eighth</type>
  8423. <stem>down</stem>
  8424. <beam number="1">end</beam>
  8425. <notations>
  8426. <articulations>
  8427. <staccato/>
  8428. </articulations>
  8429. </notations>
  8430. </note>
  8431. </measure>
  8432. <measure number="22" width="293.53">
  8433. <note default-x="18.05" default-y="-140.00" dynamics="141.11">
  8434. <pitch>
  8435. <step>G</step>
  8436. <octave>2</octave>
  8437. </pitch>
  8438. <duration>4</duration>
  8439. <voice>1</voice>
  8440. <type>half</type>
  8441. <stem>up</stem>
  8442. <notations>
  8443. <articulations>
  8444. <accent/>
  8445. </articulations>
  8446. </notations>
  8447. </note>
  8448. <note default-x="18.05" default-y="-105.00" dynamics="141.11">
  8449. <chord/>
  8450. <pitch>
  8451. <step>G</step>
  8452. <octave>3</octave>
  8453. </pitch>
  8454. <duration>4</duration>
  8455. <voice>1</voice>
  8456. <type>half</type>
  8457. <stem>up</stem>
  8458. </note>
  8459. <note default-x="137.17" default-y="-135.00" dynamics="141.11">
  8460. <pitch>
  8461. <step>A</step>
  8462. <octave>2</octave>
  8463. </pitch>
  8464. <duration>4</duration>
  8465. <voice>1</voice>
  8466. <type>half</type>
  8467. <stem>up</stem>
  8468. <notations>
  8469. <articulations>
  8470. <accent/>
  8471. </articulations>
  8472. </notations>
  8473. </note>
  8474. <barline location="right">
  8475. <bar-style>light-heavy</bar-style>
  8476. <repeat direction="backward"/>
  8477. </barline>
  8478. </measure>
  8479. <measure number="23" width="198.31">
  8480. <note default-x="12.00" default-y="-155.00">
  8481. <pitch>
  8482. <step>D</step>
  8483. <octave>2</octave>
  8484. </pitch>
  8485. <duration>6</duration>
  8486. <voice>1</voice>
  8487. <type>half</type>
  8488. <dot/>
  8489. <stem>up</stem>
  8490. <notations>
  8491. <articulations>
  8492. <accent/>
  8493. </articulations>
  8494. </notations>
  8495. </note>
  8496. <note default-x="12.00" default-y="-120.00">
  8497. <chord/>
  8498. <pitch>
  8499. <step>D</step>
  8500. <octave>3</octave>
  8501. </pitch>
  8502. <duration>6</duration>
  8503. <voice>1</voice>
  8504. <type>half</type>
  8505. <dot/>
  8506. <stem>up</stem>
  8507. </note>
  8508. <note>
  8509. <rest/>
  8510. <duration>2</duration>
  8511. <voice>1</voice>
  8512. <type>quarter</type>
  8513. </note>
  8514. </measure>
  8515. </part>
  8516. </score-partwise>