Schubert_An_die_Musik.xml 240 KB

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