Schubert_An_die_Musik.xml 239 KB

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