-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSM [MU4] v2.4.A4.mss
1553 lines (1551 loc) · 78.9 KB
/
NSM [MU4] v2.4.A4.mss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!-- NSM [MU4] v2.4 -->
<!-- Page size: A4 -->
<!-- Copyright (C) 2024 XiaoMigros -->
<!-- ToDo:
- further improve auto spacing settings
- vertical spacing around header and footer
- make sure note distances are correct
- check bpm note size
-->
<!-- Changelog:
- incorporation of Mu4.2-4 style settings, notably ties, double barline behavior, instrument names, and header/footer text
- tuplets are now bold
-->
<museScore version="4.40">
<Style>
<pageWidth>8.26771</pageWidth>
<pageHeight>11.69291</pageHeight>
<pagePrintableWidth>7.17743</pagePrintableWidth> <!-- right margin is determined by this (page width - leftmargin - printablewidth) -->
<pageEvenLeftMargin>0.59028</pageEvenLeftMargin>
<pageOddLeftMargin>0.59028</pageOddLeftMargin>
<pageEvenTopMargin>0.5</pageEvenTopMargin>
<pageEvenBottomMargin>0.5</pageEvenBottomMargin>
<pageOddTopMargin>0.5</pageOddTopMargin>
<pageOddBottomMargin>0.5</pageOddBottomMargin>
<pageTwosided>0</pageTwosided>
<staffUpperBorder>12</staffUpperBorder>
<staffLowerBorder>7</staffLowerBorder>
<staffHeaderFooterPadding>5</staffHeaderFooterPadding> <!-- too much? -->
<staffDistance>7.788</staffDistance>
<instrumentNameOffset>1</instrumentNameOffset> <!-- correct-ish -->
<akkoladeDistance>7.788</akkoladeDistance>
<minSystemDistance>9</minSystemDistance>
<maxSystemDistance>20</maxSystemDistance>
<alignSystemToMargin>1</alignSystemToMargin> <!--better for page number position -->
<enableVerticalSpread>0</enableVerticalSpread>
<spreadSystem>2.5</spreadSystem>
<spreadSquareBracket>1.2</spreadSquareBracket>
<spreadCurlyBracket>1.1</spreadCurlyBracket>
<minSystemSpread>9</minSystemSpread>
<maxSystemSpread>20</maxSystemSpread>
<minStaffSpread>3.9</minStaffSpread>
<maxStaffSpread>9</maxStaffSpread>
<maxAkkoladeDistance>7.788</maxAkkoladeDistance>
<maxPageFillSpread>6</maxPageFillSpread>
<lyricsPlacement>1</lyricsPlacement>
<lyricsPosAbove x="0" y="-2"/>
<lyricsPosBelow x="0" y="3"/>
<lyricsMinTopDistance>1</lyricsMinTopDistance>
<lyricsMinBottomDistance>1.5</lyricsMinBottomDistance>
<lyricsMinDistance>0.25</lyricsMinDistance>
<lyricsLineHeight>1</lyricsLineHeight>
<lyricsDashMinLength>0.4</lyricsDashMinLength>
<lyricsDashMaxLength>0.8</lyricsDashMaxLength>
<lyricsDashMaxDistance>16</lyricsDashMaxDistance>
<lyricsDashForce>1</lyricsDashForce>
<lyricsAlignVerseNumber>1</lyricsAlignVerseNumber>
<lyricsLineThickness>0.1</lyricsLineThickness>
<lyricsMelismaAlign>left,baseline</lyricsMelismaAlign>
<lyricsMelismaPad>0.1</lyricsMelismaPad>
<lyricsDashPad>0.05</lyricsDashPad>
<lyricsDashLineThickness>0.075</lyricsDashLineThickness>
<lyricsDashYposRatio>0.6</lyricsDashYposRatio>
<lyricsShowDashIfSyllableOnFirstNote>1</lyricsShowDashIfSyllableOnFirstNote>
<lyricsMelismaForce>0</lyricsMelismaForce>
<lyricsMelismaMinLength>1</lyricsMelismaMinLength>
<lyricsDashPosAtStartOfSystem>0</lyricsDashPosAtStartOfSystem>
<lyricsOddFontFace>Times New Roman</lyricsOddFontFace>
<lyricsOddFontSize>9.25</lyricsOddFontSize>
<lyricsOddLineSpacing>1</lyricsOddLineSpacing>
<lyricsOddFontSpatiumDependent>1</lyricsOddFontSpatiumDependent>
<lyricsOddFontStyle>0</lyricsOddFontStyle>
<lyricsOddColor r="0" g="0" b="0" a="255"/>
<lyricsOddAlign>center,baseline</lyricsOddAlign>
<lyricsOddFrameType>0</lyricsOddFrameType>
<lyricsOddFramePadding>0.2</lyricsOddFramePadding>
<lyricsOddFrameWidth>0.1</lyricsOddFrameWidth>
<lyricsOddFrameRound>0</lyricsOddFrameRound>
<lyricsOddFrameFgColor r="0" g="0" b="0" a="255"/>
<lyricsOddFrameBgColor r="255" g="255" b="255" a="0"/>
<lyricsEvenFontFace>Times New Roman</lyricsEvenFontFace>
<lyricsEvenFontSize>9.25</lyricsEvenFontSize>
<lyricsEvenLineSpacing>1</lyricsEvenLineSpacing>
<lyricsEvenFontSpatiumDependent>1</lyricsEvenFontSpatiumDependent>
<lyricsEvenFontStyle>0</lyricsEvenFontStyle>
<lyricsEvenColor r="0" g="0" b="0" a="255"/>
<lyricsEvenAlign>center,baseline</lyricsEvenAlign>
<lyricsEvenFrameType>0</lyricsEvenFrameType>
<lyricsEvenFramePadding>0.2</lyricsEvenFramePadding>
<lyricsEvenFrameWidth>0.1</lyricsEvenFrameWidth>
<lyricsEvenFrameRound>0</lyricsEvenFrameRound>
<lyricsEvenFrameFgColor r="0" g="0" b="0" a="255"/>
<lyricsEvenFrameBgColor r="255" g="255" b="255" a="0"/>
<figuredBassFontFamily>MScoreBC</figuredBassFontFamily>
<figuredBassYOffset>6</figuredBassYOffset>
<figuredBassLineHeight>1</figuredBassLineHeight>
<figuredBassAlignment>0</figuredBassAlignment>
<figuredBassStyle>0</figuredBassStyle>
<systemFrameDistance>7.25</systemFrameDistance>
<frameSystemDistance>7.25</frameSystemDistance>
<minMeasureWidth>2</minMeasureWidth>
<barWidth>0.075</barWidth>
<doubleBarWidth>0.075</doubleBarWidth>
<endBarWidth>0.5</endBarWidth>
<doubleBarDistance>0.5</doubleBarDistance>
<endBarDistance>0.5</endBarDistance>
<repeatBarlineDotSeparation>0.25</repeatBarlineDotSeparation>
<repeatBarTips>0</repeatBarTips>
<startBarlineSingle>0</startBarlineSingle>
<startBarlineMultiple>1</startBarlineMultiple>
<bracketWidth>0.5</bracketWidth>
<bracketDistance>0.5</bracketDistance>
<akkoladeWidth>0.5</akkoladeWidth>
<akkoladeBarDistance>0.5</akkoladeBarDistance>
<dividerLeft>0</dividerLeft>
<dividerLeftSym>systemDivider</dividerLeftSym>
<dividerLeftX>0</dividerLeftX>
<dividerLeftY>0</dividerLeftY>
<dividerRight>0</dividerRight>
<dividerRightSym>systemDivider</dividerRightSym>
<dividerRightX>0</dividerRightX>
<dividerRightY>0</dividerRightY>
<clefLeftMargin>1</clefLeftMargin>
<keysigLeftMargin>1</keysigLeftMargin>
<ambitusMargin>0.5</ambitusMargin>
<timesigLeftMargin>1</timesigLeftMargin>
<timesigScale w="1" h="1"/>
<midClefKeyRightMargin>1</midClefKeyRightMargin>
<clefKeyRightMargin>0.8</clefKeyRightMargin>
<clefKeyDistance>1</clefKeyDistance>
<clefTimesigDistance>1</clefTimesigDistance>
<keyTimesigDistance>1.5</keyTimesigDistance>
<keyBarlineDistance>0.5</keyBarlineDistance>
<systemHeaderDistance>1.25</systemHeaderDistance>
<systemHeaderTimeSigDistance>0.5</systemHeaderTimeSigDistance>
<systemTrailerRightMargin>0.5</systemTrailerRightMargin>
<clefBarlineDistance>0.5</clefBarlineDistance>
<timesigBarlineDistance>0.5</timesigBarlineDistance>
<useStraightNoteFlags>0</useStraightNoteFlags>
<stemWidth>0.075</stemWidth>
<shortenStem>1</shortenStem>
<stemLength>3.5</stemLength>
<stemLengthSmall>2.833</stemLengthSmall>
<shortStemStartLocation>1</shortStemStartLocation>
<shortestStem>3</shortestStem>
<combineVoice>1</combineVoice>
<beginRepeatLeftMargin>1</beginRepeatLeftMargin>
<minNoteDistance>0.2</minNoteDistance>
<barNoteDistance>1.25</barNoteDistance>
<barAccidentalDistance>0.5</barAccidentalDistance>
<noteBarDistance>1.5</noteBarDistance>
<measureSpacing>1.5</measureSpacing>
<measureRepeatNumberPos>-0.5</measureRepeatNumberPos>
<mrNumberSeries>0</mrNumberSeries>
<mrNumberEveryXMeasures>4</mrNumberEveryXMeasures>
<mrNumberSeriesWithParentheses>1</mrNumberSeriesWithParentheses>
<oneMeasureRepeatShow1>0</oneMeasureRepeatShow1>
<fourMeasureRepeatShowExtenders>0</fourMeasureRepeatShowExtenders>
<staffLineWidth>0.075</staffLineWidth>
<ledgerLineWidth>0.075</ledgerLineWidth>
<ledgerLineLength>0.25</ledgerLineLength>
<stemSlashPosition>2</stemSlashPosition>
<stemSlashAngle>40</stemSlashAngle>
<stemSlashThickness>0.07</stemSlashThickness>
<accidentalDistance>0.292</accidentalDistance>
<accidentalNoteDistance>0.292</accidentalNoteDistance>
<bracketedAccidentalPadding>0.175</bracketedAccidentalPadding>
<alignAccidentalsLeft>0</alignAccidentalsLeft>
<accidentalOrderFollowsNoteDisplacement>0</accidentalOrderFollowsNoteDisplacement>
<alignAccidentalOctavesAcrossSubChords>0</alignAccidentalOctavesAcrossSubChords>
<keepAccidentalSecondsTogether>0</keepAccidentalSecondsTogether>
<alignOffsetOctaveAccidentals>0</alignOffsetOctaveAccidentals>
<keysigAccidentalDistance>0.175</keysigAccidentalDistance> <!-- Arbitrary, due to different calculations (only tested for sharps) -->
<keysigNaturalDistance>0.175</keysigNaturalDistance>
<beamWidth>0.5</beamWidth>
<useWideBeams>0</useWideBeams>
<beamMinLen>0.75</beamMinLen>
<beamNoSlope>0</beamNoSlope>
<snapCustomBeamsToGrid>1</snapCustomBeamsToGrid>
<frenchStyleBeams>0</frenchStyleBeams>
<dotMag>1</dotMag>
<dotNoteDistance>0.333</dotNoteDistance>
<dotRestDistance>0.333</dotRestDistance>
<dotDotDistance>0.833</dotDotDistance> <!-- measured weirdly, need to check (ms doesnt include dot width, finale does)-->
<propertyDistanceHead>0.5</propertyDistanceHead>
<propertyDistanceStem>0.5</propertyDistanceStem>
<propertyDistance>0.5</propertyDistance>
<articulationMag>1</articulationMag>
<articulationPosAbove x="0" y="0"/>
<articulationAnchorDefault>2</articulationAnchorDefault>
<articulationAnchorLuteFingering>4</articulationAnchorLuteFingering>
<articulationAnchorOther>0</articulationAnchorOther>
<articulationStemHAlign>1</articulationStemHAlign>
<articulationKeepTogether>1</articulationKeepTogether>
<lastSystemFillLimit>0.6</lastSystemFillLimit>
<hairpinPlacement>1</hairpinPlacement>
<hairpinPosAbove x="0" y="-2"/>
<hairpinPosBelow x="0" y="2"/>
<hairpinLinePosAbove x="0" y="-3"/>
<hairpinLinePosBelow x="0" y="4"/>
<hairpinHeight>1.5</hairpinHeight>
<hairpinContHeight>0.5</hairpinContHeight>
<hairpinLineWidth>0.075</hairpinLineWidth>
<hairpinFontFace>Times New Roman</hairpinFontFace>
<hairpinFontSize>9.25</hairpinFontSize> <!-- pre-4.4 scores might show dynamics at this size, but that's wrong- they should be re-added as 4.4 dynamics -->
<hairpinLineSpacing>1</hairpinLineSpacing>
<hairpinFontSpatiumDependent>1</hairpinFontSpatiumDependent>
<hairpinFontStyle>2</hairpinFontStyle>
<hairpinColor r="0" g="0" b="0" a="255"/>
<hairpinTextAlign>left,baseline</hairpinTextAlign>
<hairpinFrameType>0</hairpinFrameType>
<hairpinFramePadding>0.2</hairpinFramePadding>
<hairpinFrameWidth>0.1</hairpinFrameWidth>
<hairpinFrameRound>0</hairpinFrameRound>
<hairpinFrameFgColor r="0" g="0" b="0" a="255"/>
<hairpinFrameBgColor r="255" g="255" b="255" a="0"/>
<hairpinText></hairpinText>
<hairpinCrescText>cresc.</hairpinCrescText>
<hairpinDecrescText>dim.</hairpinDecrescText>
<hairpinCrescContText>(cresc.)</hairpinCrescContText>
<hairpinDecrescContText>(dim.)</hairpinDecrescContText>
<hairpinLineStyle>solid</hairpinLineStyle>
<hairpinDashLineLen>3</hairpinDashLineLen>
<hairpinDashGapLen>3</hairpinDashGapLen>
<hairpinLineLineStyle>dashed</hairpinLineLineStyle>
<hairpinLineDashLineLen>7.5</hairpinLineDashLineLen>
<hairpinLineDashGapLen>7.5</hairpinLineDashGapLen>
<pedalPlacement>1</pedalPlacement>
<pedalPosAbove x="0" y="-1"/>
<pedalPosBelow x="0" y="3"/>
<pedalLineWidth>0.075</pedalLineWidth>
<pedalLineStyle>solid</pedalLineStyle>
<pedalDashLineLen>4</pedalDashLineLen>
<pedalDashGapLen>4</pedalDashGapLen>
<pedalHookHeight>-1.08</pedalHookHeight>
<pedalFontFace>Times New Roman</pedalFontFace>
<pedalFontSize>9.25</pedalFontSize>
<pedalLineSpacing>1</pedalLineSpacing>
<pedalFontSpatiumDependent>1</pedalFontSpatiumDependent>
<pedalMusicalSymbolsScale>1</pedalMusicalSymbolsScale>
<pedalFontStyle>0</pedalFontStyle>
<pedalColor r="0" g="0" b="0" a="255"/>
<pedalTextAlign>left,baseline</pedalTextAlign>
<pedalFrameType>0</pedalFrameType>
<pedalFramePadding>0.2</pedalFramePadding>
<pedalFrameWidth>0.1</pedalFrameWidth>
<pedalFrameRound>0</pedalFrameRound>
<pedalFrameFgColor r="0" g="0" b="0" a="255"/>
<pedalFrameBgColor r="255" g="255" b="255" a="0"/>
<pedalText><sym>keyboardPedalPed</sym></pedalText>
<pedalHookText></pedalHookText>
<pedalContinueText><sym>keyboardPedalParensLeft</sym><sym>keyboardPedalPed</sym><sym>keyboardPedalParensRight</sym></pedalContinueText>
<pedalContinueHookText></pedalContinueHookText>
<pedalEndText></pedalEndText>
<pedalRosetteEndText><sym>keyboardPedalUp</sym></pedalRosetteEndText>
<trillPlacement>0</trillPlacement>
<trillPosAbove x="0" y="-0.5"/>
<trillPosBelow x="0" y="2"/>
<vibratoPlacement>0</vibratoPlacement>
<vibratoPosAbove x="0" y="-1"/>
<vibratoPosBelow x="0" y="1"/>
<harmonyFretDist>1</harmonyFretDist>
<minHarmonyDistance>0.5</minHarmonyDistance>
<maxHarmonyBarDistance>3</maxHarmonyBarDistance>
<maxChordShiftAbove>0</maxChordShiftAbove>
<maxChordShiftBelow>0</maxChordShiftBelow>
<harmonyPlacement>0</harmonyPlacement>
<romanNumeralPlacement>1</romanNumeralPlacement>
<nashvilleNumberPlacement>0</nashvilleNumberPlacement>
<harmonyVoiceLiteral>1</harmonyVoiceLiteral>
<harmonyVoicing>0</harmonyVoicing>
<harmonyDuration>0</harmonyDuration>
<chordSymbolAPosAbove x="0" y="-3"/>
<chordSymbolAPosBelow x="0" y="3.5"/>
<chordSymbolBPosAbove x="0" y="-5.5"/>
<chordSymbolBPosBelow x="0" y="3.5"/>
<romanNumeralPosAbove x="0" y="-2.5"/>
<romanNumeralPosBelow x="0" y="3.5"/>
<nashvilleNumberPosAbove x="0" y="-2.5"/>
<nashvilleNumberPosBelow x="0" y="3.5"/>
<chordSymbolAFontFace>Times New Roman</chordSymbolAFontFace>
<chordSymbolAFontSize>10.8</chordSymbolAFontSize>
<chordSymbolALineSpacing>1</chordSymbolALineSpacing>
<chordSymbolAFontSpatiumDependent>1</chordSymbolAFontSpatiumDependent>
<chordSymbolAFontStyle>0</chordSymbolAFontStyle>
<chordSymbolAColor r="0" g="0" b="0" a="255"/>
<chordSymbolAAlign>left,baseline</chordSymbolAAlign>
<chordSymbolAFrameType>0</chordSymbolAFrameType>
<chordSymbolAFramePadding>0.2</chordSymbolAFramePadding>
<chordSymbolAFrameWidth>0.1</chordSymbolAFrameWidth>
<chordSymbolAFrameRound>0</chordSymbolAFrameRound>
<chordSymbolAFrameFgColor r="0" g="0" b="0" a="255"/>
<chordSymbolAFrameBgColor r="255" g="255" b="255" a="0"/>
<chordSymbolBFontFace>Times New Roman</chordSymbolBFontFace>
<chordSymbolBFontSize>11</chordSymbolBFontSize>
<chordSymbolBLineSpacing>1</chordSymbolBLineSpacing>
<chordSymbolBFontSpatiumDependent>1</chordSymbolBFontSpatiumDependent>
<chordSymbolBFontStyle>2</chordSymbolBFontStyle>
<chordSymbolBColor r="0" g="0" b="0" a="255"/>
<chordSymbolBAlign>left,baseline</chordSymbolBAlign>
<chordSymbolBFrameType>0</chordSymbolBFrameType>
<chordSymbolBFramePadding>0.2</chordSymbolBFramePadding>
<chordSymbolBFrameWidth>0.1</chordSymbolBFrameWidth>
<chordSymbolBFrameRound>0</chordSymbolBFrameRound>
<chordSymbolBFrameFgColor r="0" g="0" b="0" a="255"/>
<chordSymbolBFrameBgColor r="255" g="255" b="255" a="0"/>
<romanNumeralFontFace>Times New Roman</romanNumeralFontFace>
<romanNumeralFontSize>9.25</romanNumeralFontSize>
<romanNumeralLineSpacing>1</romanNumeralLineSpacing>
<romanNumeralFontSpatiumDependent>1</romanNumeralFontSpatiumDependent>
<romanNumeralFontStyle>0</romanNumeralFontStyle>
<romanNumeralColor r="0" g="0" b="0" a="255"/>
<romanNumeralAlign>left,baseline</romanNumeralAlign>
<romanNumeralFrameType>0</romanNumeralFrameType>
<romanNumeralFramePadding>0.2</romanNumeralFramePadding>
<romanNumeralFrameWidth>0.1</romanNumeralFrameWidth>
<romanNumeralFrameRound>0</romanNumeralFrameRound>
<romanNumeralFrameFgColor r="0" g="0" b="0" a="255"/>
<romanNumeralFrameBgColor r="255" g="255" b="255" a="0"/>
<nashvilleNumberFontFace>Times New Roman</nashvilleNumberFontFace>
<nashvilleNumberFontSize>9.25</nashvilleNumberFontSize>
<nashvilleNumberLineSpacing>1</nashvilleNumberLineSpacing>
<nashvilleNumberFontSpatiumDependent>1</nashvilleNumberFontSpatiumDependent>
<nashvilleNumberFontStyle>0</nashvilleNumberFontStyle>
<nashvilleNumberColor r="0" g="0" b="0" a="255"/>
<nashvilleNumberAlign>left,baseline</nashvilleNumberAlign>
<nashvilleNumberFrameType>0</nashvilleNumberFrameType>
<nashvilleNumberFramePadding>0.2</nashvilleNumberFramePadding>
<nashvilleNumberFrameWidth>0.1</nashvilleNumberFrameWidth>
<nashvilleNumberFrameRound>0</nashvilleNumberFrameRound>
<nashvilleNumberFrameFgColor r="0" g="0" b="0" a="255"/>
<nashvilleNumberFrameBgColor r="255" g="255" b="255" a="0"/>
<capoPosition>0</capoPosition>
<fretNumMag>2</fretNumMag>
<fretNumPos>0</fretNumPos>
<fretY>1</fretY>
<fretMinDistance>0.5</fretMinDistance>
<fretMag>1</fretMag>
<fretPlacement>0</fretPlacement>
<fretStrings>6</fretStrings>
<fretFrets>5</fretFrets>
<fretNut>1</fretNut>
<fretDotSize>1</fretDotSize>
<fretDotSpatiumSize>0.5</fretDotSpatiumSize>
<fretStringSpacing>0.7</fretStringSpacing>
<fretFretSpacing>0.8</fretFretSpacing>
<fretOrientation>0</fretOrientation>
<maxFretShiftAbove>0</maxFretShiftAbove>
<maxFretShiftBelow>0</maxFretShiftBelow>
<fretNutThickness>0.3</fretNutThickness>
<fretUseCustomSuffix>0</fretUseCustomSuffix>
<fretCustomSuffix>fr</fretCustomSuffix>
<barreAppearanceSlur>0</barreAppearanceSlur>
<barreLineWidth>1</barreLineWidth>
<fretShowFingerings>0</fretShowFingerings>
<fretStyleExtended>0</fretStyleExtended>
<showPageNumber>1</showPageNumber>
<showPageNumberOne>0</showPageNumberOne>
<pageNumberOddEven>1</pageNumberOddEven>
<showMeasureNumber>1</showMeasureNumber>
<showMeasureNumberOne>0</showMeasureNumberOne>
<measureNumberInterval>5</measureNumberInterval>
<measureNumberSystem>1</measureNumberSystem>
<measureNumberAllStaves>0</measureNumberAllStaves>
<smallNoteMag>0.7</smallNoteMag>
<graceNoteMag>0.6</graceNoteMag>
<graceToMainNoteDist>1</graceToMainNoteDist>
<graceToGraceNoteDist>0.5</graceToGraceNoteDist>
<smallStaffMag>0.7</smallStaffMag>
<smallClefMag>0.75</smallClefMag>
<genClef>1</genClef>
<hideTabClefAfterFirst>1</hideTabClefAfterFirst>
<genKeysig>1</genKeysig>
<genCourtesyTimesig>1</genCourtesyTimesig>
<genCourtesyKeysig>1</genCourtesyKeysig>
<genCourtesyClef>1</genCourtesyClef>
<keySigCourtesyBarlineMode>1</keySigCourtesyBarlineMode>
<timeSigCourtesyBarlineMode>0</timeSigCourtesyBarlineMode>
<swingRatio>65</swingRatio>
<swingUnit></swingUnit>
<useStandardNoteNames>1</useStandardNoteNames>
<useGermanNoteNames>0</useGermanNoteNames>
<useFullGermanNoteNames>0</useFullGermanNoteNames>
<useSolfeggioNoteNames>0</useSolfeggioNoteNames>
<useFrenchNoteNames>0</useFrenchNoteNames>
<automaticCapitalization>1</automaticCapitalization>
<lowerCaseMinorChords>0</lowerCaseMinorChords>
<lowerCaseBassNotes>0</lowerCaseBassNotes>
<allCapsNoteNames>0</allCapsNoteNames>
<chordStyle>std</chordStyle>
<chordsXmlFile>0</chordsXmlFile>
<chordDescriptionFile>chords_std.xml</chordDescriptionFile>
<chordExtensionMag>1</chordExtensionMag>
<chordExtensionAdjust>0</chordExtensionAdjust>
<chordModifierMag>1</chordModifierMag>
<chordModifierAdjust>0</chordModifierAdjust>
<concertPitch>0</concertPitch>
<multiVoiceRestTwoSpaceOffset>0</multiVoiceRestTwoSpaceOffset>
<createMultiMeasureRests>0</createMultiMeasureRests>
<minEmptyMeasures>2</minEmptyMeasures>
<minMMRestWidth>4</minMMRestWidth>
<mmRestNumberPos>-0.5</mmRestNumberPos>
<mmRestNumberMaskHBar>1</mmRestNumberMaskHBar>
<multiMeasureRestMargin>1.2</multiMeasureRestMargin>
<mmRestHBarThickness>0.7</mmRestHBarThickness>
<mmRestHBarVStrokeThickness>0.2</mmRestHBarVStrokeThickness>
<mmRestHBarVStrokeHeight>2</mmRestHBarVStrokeHeight>
<oldStyleMultiMeasureRests>0</oldStyleMultiMeasureRests>
<mmRestOldStyleMaxMeasures>9</mmRestOldStyleMaxMeasures>
<mmRestOldStyleSpacing>0.85</mmRestOldStyleSpacing>
<hideEmptyStaves>0</hideEmptyStaves>
<dontHideStavesInFirstSystem>0</dontHideStavesInFirstSystem>
<enableIndentationOnFirstSystem>1</enableIndentationOnFirstSystem>
<firstSystemIndentationValue>6</firstSystemIndentationValue>
<alwaysShowBracketsWhenEmptyStavesAreHidden>0</alwaysShowBracketsWhenEmptyStavesAreHidden>
<alwaysShowSquareBracketsWhenEmptyStavesAreHidden>0</alwaysShowSquareBracketsWhenEmptyStavesAreHidden>
<hideInstrumentNameIfOneInstrument>0</hideInstrumentNameIfOneInstrument>
<firstSystemInstNameVisibility>0</firstSystemInstNameVisibility>
<subsSystemInstNameVisibility>2</subsSystemInstNameVisibility>
<gateTime>100</gateTime>
<tenutoGateTime>100</tenutoGateTime>
<staccatoGateTime>50</staccatoGateTime>
<slurGateTime>100</slurGateTime>
<arpeggioNoteDistance>0.5</arpeggioNoteDistance>
<arpeggioAccidentalDistance>0.5</arpeggioAccidentalDistance>
<arpeggioAccidentalDistanceMin>0.33</arpeggioAccidentalDistanceMin>
<arpeggioLineWidth>0.18</arpeggioLineWidth>
<arpeggioHookLen>0.8</arpeggioHookLen>
<arpeggioHiddenInStdIfTab>0</arpeggioHiddenInStdIfTab>
<slurEndWidth>0.0375</slurEndWidth>
<slurMidWidth>0.1875</slurMidWidth>
<slurDottedWidth>0.075</slurDottedWidth>
<tieEndWidth>0.01875</tieEndWidth> <!-- arbitrary, needs review (1/2 of slur)-->
<tieMidWidth>0.125</tieMidWidth> <!-- arbitrary, needs review (2/3 of slur)-->
<tieDottedWidth>0.075</tieDottedWidth>
<minTieLength>1.5</minTieLength> <!-- Finale uses 2-->
<minStraightGlissandoLength>1.2</minStraightGlissandoLength>
<minWigglyGlissandoLength>2</minWigglyGlissandoLength>
<slurMinDistance>0.5</slurMinDistance>
<tieMinDistance>0.5</tieMinDistance>
<headerToLineStartDistance>1</headerToLineStartDistance>
<tiePlacementSingleNote>outside</tiePlacementSingleNote>
<tiePlacementChord>outside</tiePlacementChord>
<tieMinShoulderHeight>0.3</tieMinShoulderHeight> <!-- new unexposed setting, needs review -->
<tieMaxShoulderHeight>2</tieMaxShoulderHeight> <!-- new unexposed setting, needs review -->
<sectionPause>3</sectionPause>
<musicalSymbolFont>Finale Maestro</musicalSymbolFont>
<musicalTextFont>Finale Maestro Text</musicalTextFont>
<showHeader>1</showHeader>
<headerFirstPage>0</headerFirstPage>
<headerOddEven>1</headerOddEven>
<evenHeaderL>$p</evenHeaderL>
<evenHeaderC>$:workTitle:</evenHeaderC>
<evenHeaderR></evenHeaderR>
<oddHeaderL></oddHeaderL>
<oddHeaderC>$:workTitle:</oddHeaderC>
<oddHeaderR>$p</oddHeaderR>
<showFooter>1</showFooter>
<footerFirstPage>1</footerFirstPage>
<footerOddEven>0</footerOddEven>
<evenFooterL></evenFooterL>
<evenFooterC>$:copyright:
Page $P/$n</evenFooterC>
<evenFooterR></evenFooterR>
<oddFooterL></oddFooterL>
<oddFooterC>$C</oddFooterC>
<oddFooterR></oddFooterR>
<voltaPosAbove x="0" y="-4"/>
<voltaHook>3</voltaHook>
<voltaLineWidth>0.075</voltaLineWidth>
<voltaLineStyle>solid</voltaLineStyle>
<voltaDashLineLen>5</voltaDashLineLen>
<voltaDashGapLen>5</voltaDashGapLen>
<voltaFontFace>Times New Roman</voltaFontFace>
<voltaFontSize>7.7</voltaFontSize>
<voltaLineSpacing>1</voltaLineSpacing>
<voltaFontSpatiumDependent>1</voltaFontSpatiumDependent>
<voltaFontStyle>0</voltaFontStyle>
<voltaColor r="0" g="0" b="0" a="255"/>
<voltaAlign>left,top</voltaAlign> <!-- or left, bottom -->
<voltaOffset x="1.5" y="1"/> <!-- or 1.5, 2 -->
<voltaFrameType>0</voltaFrameType>
<voltaFramePadding>0.2</voltaFramePadding>
<voltaFrameWidth>0.1</voltaFrameWidth>
<voltaFrameRound>0</voltaFrameRound>
<voltaFrameFgColor r="0" g="0" b="0" a="255"/>
<voltaFrameBgColor r="255" g="255" b="255" a="0"/>
<ottava8VAPlacement>0</ottava8VAPlacement>
<ottava8VBPlacement>1</ottava8VBPlacement>
<ottava15MAPlacement>0</ottava15MAPlacement>
<ottava15MBPlacement>1</ottava15MBPlacement>
<ottava22MAPlacement>0</ottava22MAPlacement>
<ottava22MBPlacement>1</ottava22MBPlacement>
<ottava8VAText><sym>ottavaAlta</sym></ottava8VAText>
<ottava8VAContinueText><sym>octaveParensLeft</sym><sym>ottavaAlta</sym><sym>octaveParensRight</sym></ottava8VAContinueText>
<ottava8VBText><sym>ottavaBassaVb</sym></ottava8VBText>
<ottava8VBContinueText><sym>octaveParensLeft</sym><sym>ottavaBassaVb</sym><sym>octaveParensRight</sym></ottava8VBContinueText>
<ottava15MAText><sym>quindicesimaAlta</sym></ottava15MAText>
<ottava15MAContinueText><sym>octaveParensLeft</sym><sym>quindicesimaAlta</sym><sym>octaveParensRight</sym></ottava15MAContinueText>
<ottava15MBText><sym>quindicesimaBassa</sym></ottava15MBText>
<ottava15MBContinueText><sym>octaveParensLeft</sym><sym>quindicesimaBassa</sym><sym>octaveParensRight</sym></ottava15MBContinueText>
<ottava22MAText><sym>ventiduesimaAlta</sym></ottava22MAText>
<ottava22MAContinueText><sym>octaveParensLeft</sym><sym>ventiduesimaAlta</sym><sym>octaveParensRight</sym></ottava22MAContinueText>
<ottava22MBText><sym>ventiduesimaBassa</sym></ottava22MBText>
<ottava22MBContinueText><sym>octaveParensLeft</sym><sym>ventiduesimaBassa</sym><sym>octaveParensRight</sym></ottava22MBContinueText>
<ottava8VAnoText><sym>ottava</sym></ottava8VAnoText>
<ottava8VAnoContinueText><sym>octaveParensLeft</sym><sym>ottava</sym><sym>octaveParensRight</sym></ottava8VAnoContinueText>
<ottava8VBnoText><sym>ottava</sym></ottava8VBnoText>
<ottava8VBnoContinueText><sym>octaveParensLeft</sym><sym>ottava</sym><sym>octaveParensRight</sym></ottava8VBnoContinueText>
<ottava15MAnoText><sym>quindicesima</sym></ottava15MAnoText>
<ottava15MAnoContinueText><sym>octaveParensLeft</sym><sym>quindicesima</sym><sym>octaveParensRight</sym></ottava15MAnoContinueText>
<ottava15MBnoText><sym>quindicesima</sym></ottava15MBnoText>
<ottava15MBnoContinueText><sym>octaveParensLeft</sym><sym>quindicesima</sym><sym>octaveParensRight</sym></ottava15MBnoContinueText>
<ottava22MAnoText><sym>ventiduesima</sym></ottava22MAnoText>
<ottava22MAnoContinueText><sym>octaveParensLeft</sym><sym>ventiduesima</sym><sym>octaveParensRight</sym></ottava22MAnoContinueText>
<ottava22MBnoText><sym>ventiduesima</sym></ottava22MBnoText>
<ottava22MBnoContinueText><sym>octaveParensLeft</sym><sym>ventiduesima</sym><sym>octaveParensRight</sym></ottava22MBnoContinueText>
<ottavaPosAbove x="-0.33" y="-2"/>
<ottavaPosBelow x="-0.5" y="2"/>
<ottavaHookAbove>0.5</ottavaHookAbove>
<ottavaHookBelow>-0.5</ottavaHookBelow>
<ottavaLineWidth>0.075</ottavaLineWidth>
<ottavaLineStyle>dashed</ottavaLineStyle>
<ottavaDashLineLen>10</ottavaDashLineLen> <!-- 0.75sp ideal, unit is multiple of line width-->
<ottavaDashGapLen>10</ottavaDashGapLen> <!-- 0.75sp ideal-->
<ottavaNumbersOnly>0</ottavaNumbersOnly>
<ottavaFontFace>Times New Roman</ottavaFontFace>
<ottavaFontSize>9.25</ottavaFontSize>
<ottavaLineSpacing>1</ottavaLineSpacing>
<ottavaFontSpatiumDependent>1</ottavaFontSpatiumDependent>
<ottavaMusicalSymbolsScale>1</ottavaMusicalSymbolsScale>
<ottavaFontStyle>0</ottavaFontStyle>
<ottavaColor r="0" g="0" b="0" a="255"/>
<ottavaTextAlignAbove>left,center</ottavaTextAlignAbove>
<ottavaTextAlignBelow>left,center</ottavaTextAlignBelow>
<ottavaFrameType>0</ottavaFrameType>
<ottavaFramePadding>0.2</ottavaFramePadding>
<ottavaFrameWidth>0.1</ottavaFrameWidth>
<ottavaFrameRound>0</ottavaFrameRound>
<ottavaFrameFgColor r="0" g="0" b="0" a="255"/>
<ottavaFrameBgColor r="255" g="255" b="255" a="0"/>
<tabClef>31</tabClef>
<tremoloWidth>1.2</tremoloWidth>
<tremoloBoxHeight>0.5</tremoloBoxHeight>
<tremoloLineWidth>0.5</tremoloLineWidth>
<tremoloDistance>0.75</tremoloDistance>
<tremoloStyle>1</tremoloStyle>
<tremoloStrokeLengthMultiplier>0.5</tremoloStrokeLengthMultiplier>
<tremoloNoteSidePadding>1.25</tremoloNoteSidePadding>
<tremoloOutSidePadding>0.5</tremoloOutSidePadding>
<linearStretch>1.5</linearStretch>
<crossMeasureValues>0</crossMeasureValues>
<keySigNaturals>2</keySigNaturals>
<tupletMaxSlope>0.5</tupletMaxSlope>
<tupletOutOfStaff>1</tupletOutOfStaff>
<tupletVHeadDistance>0.5</tupletVHeadDistance>
<tupletVStemDistance>0.5</tupletVStemDistance>
<tupletStemLeftDistance>0.5</tupletStemLeftDistance>
<tupletStemRightDistance>0.5</tupletStemRightDistance>
<tupletNoteLeftDistance>0.5</tupletNoteLeftDistance>
<tupletNoteRightDistance>0.5</tupletNoteRightDistance>
<tupletBracketWidth>0.075</tupletBracketWidth>
<tupletDirection>0</tupletDirection>
<tupletNumberType>0</tupletNumberType>
<tupletBracketType>0</tupletBracketType>
<tupletFontFace>Times New Roman</tupletFontFace>
<tupletFontSize>7</tupletFontSize> <!-- 7.7?? -->
<tupletLineSpacing>1</tupletLineSpacing>
<tupletFontSpatiumDependent>1</tupletFontSpatiumDependent>
<tupletMusicalSymbolsScale>1</tupletMusicalSymbolsScale>
<tupletFontStyle>3</tupletFontStyle>
<tupletColor r="0" g="0" b="0" a="255"/>
<tupletAlign>center,center</tupletAlign>
<tupletUseSymbols>0</tupletUseSymbols>
<tupletBracketHookHeight>0.5</tupletBracketHookHeight>
<tupletOffset x="0" y="0"/>
<tupletFrameType>0</tupletFrameType>
<tupletFramePadding>0.2</tupletFramePadding>
<tupletFrameWidth>0.1</tupletFrameWidth>
<tupletFrameRound>0</tupletFrameRound>
<tupletFrameFgColor r="0" g="0" b="0" a="255"/>
<tupletFrameBgColor r="255" g="255" b="255" a="0"/>
<scaleBarlines>1</scaleBarlines>
<barGraceDistance>1</barGraceDistance>
<minVerticalDistance>0.5</minVerticalDistance>
<skylineMinHorizontalClearance>0.25</skylineMinHorizontalClearance>
<ornamentStyle>0</ornamentStyle>
<autoplaceHairpinDynamicsDistance>0.5</autoplaceHairpinDynamicsDistance>
<dynamicsHairpinVoiceBasedPlacement>0</dynamicsHairpinVoiceBasedPlacement>
<dynamicsHairpinsAutoCenterOnGrandStaff>1</dynamicsHairpinsAutoCenterOnGrandStaff>
<dynamicsHairpinsAboveForVocalStaves>1</dynamicsHairpinsAboveForVocalStaves>
<dynamicsOverrideFont>0</dynamicsOverrideFont>
<dynamicsFont>Finale Maestro</dynamicsFont>
<dynamicsSize>1</dynamicsSize>
<dynamicsPlacement>1</dynamicsPlacement>
<dynamicsPosAbove x="0" y="-2"/>
<dynamicsPosBelow x="0" y="2"/>
<avoidBarLines>1</avoidBarLines>
<snapToDynamics>1</snapToDynamics>
<centerOnNotehead>1</centerOnNotehead>
<dynamicsMinDistance>0.5</dynamicsMinDistance>
<autoplaceVerticalAlignRange>2</autoplaceVerticalAlignRange>
<textLinePlacement>0</textLinePlacement>
<textLinePosAbove x="0" y="-1"/>
<textLinePosBelow x="0" y="1"/>
<textLineFrameType>0</textLineFrameType>
<textLineFramePadding>0.2</textLineFramePadding>
<textLineFrameWidth>0.1</textLineFrameWidth>
<textLineFrameRound>0</textLineFrameRound>
<textLineFrameFgColor r="0" g="0" b="0" a="255"/>
<textLineFrameBgColor r="255" g="255" b="255" a="0"/>
<systemTextLinePlacement>0</systemTextLinePlacement>
<systemTextLinePosAbove x="0" y="-1"/>
<systemTextLinePosBelow x="0" y="1"/>
<systemTextLineFrameType>0</systemTextLineFrameType>
<systemTextLineFramePadding>0.2</systemTextLineFramePadding>
<systemTextLineFrameWidth>0.1</systemTextLineFrameWidth>
<systemTextLineFrameRound>0</systemTextLineFrameRound>
<systemTextLineFrameFgColor r="0" g="0" b="0" a="255"/>
<systemTextLineFrameBgColor r="255" g="255" b="255" a="0"/>
<tremoloBarLineWidth>0.12</tremoloBarLineWidth>
<jumpPosAbove x="0" y="-3"/>
<markerPosAbove x="0" y="-3"/>
<defaultFontFace>Times New Roman</defaultFontFace>
<defaultFontSize>9.25</defaultFontSize>
<defaultLineSpacing>1</defaultLineSpacing>
<defaultFontSpatiumDependent>1</defaultFontSpatiumDependent>
<defaultFontStyle>0</defaultFontStyle>
<defaultColor r="0" g="0" b="0" a="255"/>
<defaultAlign>left,top</defaultAlign>
<defaultFrameType>0</defaultFrameType>
<defaultFramePadding>0.2</defaultFramePadding>
<defaultFrameWidth>0.1</defaultFrameWidth>
<defaultFrameRound>0</defaultFrameRound>
<defaultFrameFgColor r="0" g="0" b="0" a="255"/>
<defaultFrameBgColor r="255" g="255" b="255" a="0"/>
<defaultOffset x="0" y="0"/>
<defaultOffsetType>1</defaultOffsetType>
<defaultSystemFlag>0</defaultSystemFlag>
<defaultText></defaultText>
<titleFontFace>Times New Roman</titleFontFace>
<titleFontSize>24</titleFontSize>
<titleLineSpacing>1</titleLineSpacing>
<titleFontSpatiumDependent>0</titleFontSpatiumDependent>
<titleFontStyle>1</titleFontStyle>
<titleColor r="0" g="0" b="0" a="255"/>
<titleAlign>center,top</titleAlign>
<titleOffset x="0" y="1.56"/>
<titleOffsetType>0</titleOffsetType>
<titleFrameType>0</titleFrameType>
<titleFramePadding>0.2</titleFramePadding>
<titleFrameWidth>0.1</titleFrameWidth>
<titleFrameRound>0</titleFrameRound>
<titleFrameFgColor r="0" g="0" b="0" a="255"/>
<titleFrameBgColor r="255" g="255" b="255" a="0"/>
<subTitleFontFace>Times New Roman</subTitleFontFace>
<subTitleFontSize>12</subTitleFontSize>
<subTitleLineSpacing>1</subTitleLineSpacing>
<subTitleFontSpatiumDependent>0</subTitleFontSpatiumDependent>
<subTitleFontStyle>2</subTitleFontStyle>
<subTitleColor r="0" g="0" b="0" a="255"/>
<subTitleAlign>center,top</subTitleAlign>
<subTitleOffset x="0" y="12.4"/>
<subTitleOffsetType>0</subTitleOffsetType>
<subTitleFrameType>0</subTitleFrameType>
<subTitleFramePadding>0.2</subTitleFramePadding>
<subTitleFrameWidth>0.1</subTitleFrameWidth>
<subTitleFrameRound>0</subTitleFrameRound>
<subTitleFrameFgColor r="0" g="0" b="0" a="255"/>
<subTitleFrameBgColor r="255" g="255" b="255" a="0"/>
<composerFontFace>Times New Roman</composerFontFace>
<composerFontSize>12</composerFontSize>
<composerLineSpacing>1</composerLineSpacing>
<composerFontSpatiumDependent>0</composerFontSpatiumDependent>
<composerFontStyle>1</composerFontStyle>
<composerColor r="0" g="0" b="0" a="255"/>
<composerAlign>right,top</composerAlign>
<composerOffset x="0" y="18.11"/>
<composerOffsetType>0</composerOffsetType>
<composerFrameType>0</composerFrameType>
<composerFramePadding>0.2</composerFramePadding>
<composerFrameWidth>0.1</composerFrameWidth>
<composerFrameRound>0</composerFrameRound>
<composerFrameFgColor r="0" g="0" b="0" a="255"/>
<composerFrameBgColor r="255" g="255" b="255" a="0"/>
<lyricistFontFace>Times New Roman</lyricistFontFace>
<lyricistFontSize>12</lyricistFontSize>
<lyricistLineSpacing>1</lyricistLineSpacing>
<lyricistFontSpatiumDependent>0</lyricistFontSpatiumDependent>
<lyricistFontStyle>2</lyricistFontStyle>
<lyricistColor r="0" g="0" b="0" a="255"/>
<lyricistAlign>right,top</lyricistAlign>
<lyricistOffset x="0" y="23.66"/>
<lyricistOffsetType>0</lyricistOffsetType>
<lyricistFrameType>0</lyricistFrameType>
<lyricistFramePadding>0.2</lyricistFramePadding>
<lyricistFrameWidth>0.1</lyricistFrameWidth>
<lyricistFrameRound>0</lyricistFrameRound>
<lyricistFrameFgColor r="0" g="0" b="0" a="255"/>
<lyricistFrameBgColor r="255" g="255" b="255" a="0"/>
<fingeringFontFace>Times New Roman</fingeringFontFace>
<fingeringFontSize>8</fingeringFontSize>
<fingeringLineSpacing>1</fingeringLineSpacing>
<fingeringFontSpatiumDependent>1</fingeringFontSpatiumDependent>
<fingeringFontStyle>0</fingeringFontStyle>
<fingeringColor r="0" g="0" b="0" a="255"/>
<fingeringAlign>center,center</fingeringAlign>
<fingeringFrameType>0</fingeringFrameType>
<fingeringFramePadding>0.2</fingeringFramePadding>
<fingeringFrameWidth>0.1</fingeringFrameWidth>
<fingeringFrameRound>0</fingeringFrameRound>
<fingeringFrameFgColor r="0" g="0" b="0" a="255"/>
<fingeringFrameBgColor r="255" g="255" b="255" a="0"/>
<fingeringOffset x="0" y="0"/>
<lhGuitarFingeringFontFace>Times New Roman</lhGuitarFingeringFontFace>
<lhGuitarFingeringFontSize>8</lhGuitarFingeringFontSize>
<lhGuitarFingeringLineSpacing>1</lhGuitarFingeringLineSpacing>
<lhGuitarFingeringFontSpatiumDependent>1</lhGuitarFingeringFontSpatiumDependent>
<lhGuitarFingeringFontStyle>0</lhGuitarFingeringFontStyle>
<lhGuitarFingeringColor r="0" g="0" b="0" a="255"/>
<lhGuitarFingeringAlign>right,center</lhGuitarFingeringAlign>
<lhGuitarFingeringFrameType>0</lhGuitarFingeringFrameType>
<lhGuitarFingeringFramePadding>0.2</lhGuitarFingeringFramePadding>
<lhGuitarFingeringFrameWidth>0.1</lhGuitarFingeringFrameWidth>
<lhGuitarFingeringFrameRound>0</lhGuitarFingeringFrameRound>
<lhGuitarFingeringFrameFgColor r="0" g="0" b="0" a="255"/>
<lhGuitarFingeringFrameBgColor r="255" g="255" b="255" a="0"/>
<lhGuitarFingeringOffset x="-0.5" y="0"/>
<rhGuitarFingeringFontFace>Times New Roman</rhGuitarFingeringFontFace>
<rhGuitarFingeringFontSize>8</rhGuitarFingeringFontSize>
<rhGuitarFingeringLineSpacing>1</rhGuitarFingeringLineSpacing>
<rhGuitarFingeringFontSpatiumDependent>1</rhGuitarFingeringFontSpatiumDependent>
<rhGuitarFingeringFontStyle>2</rhGuitarFingeringFontStyle>
<rhGuitarFingeringColor r="0" g="0" b="0" a="255"/>
<rhGuitarFingeringAlign>center,center</rhGuitarFingeringAlign>
<rhGuitarFingeringFrameType>0</rhGuitarFingeringFrameType>
<rhGuitarFingeringFramePadding>0.2</rhGuitarFingeringFramePadding>
<rhGuitarFingeringFrameWidth>0.1</rhGuitarFingeringFrameWidth>
<rhGuitarFingeringFrameRound>0</rhGuitarFingeringFrameRound>
<rhGuitarFingeringFrameFgColor r="0" g="0" b="0" a="255"/>
<rhGuitarFingeringFrameBgColor r="255" g="255" b="255" a="0"/>
<rhGuitarFingeringOffset x="0" y="0"/>
<stringNumberFontFace>Times New Roman</stringNumberFontFace>
<stringNumberFontSize>8</stringNumberFontSize>
<stringNumberLineSpacing>1</stringNumberLineSpacing>
<stringNumberFontSpatiumDependent>1</stringNumberFontSpatiumDependent>
<stringNumberFontStyle>0</stringNumberFontStyle>
<stringNumberColor r="0" g="0" b="0" a="255"/>
<stringNumberAlign>center,center</stringNumberAlign>
<stringNumberFrameType>2</stringNumberFrameType>
<stringNumberFramePadding>0.2</stringNumberFramePadding>
<stringNumberFrameWidth>0.1</stringNumberFrameWidth>
<stringNumberFrameRound>0</stringNumberFrameRound>
<stringNumberFrameFgColor r="0" g="0" b="0" a="255"/>
<stringNumberFrameBgColor r="255" g="255" b="255" a="0"/>
<stringNumberOffset x="0" y="0"/>
<preferSameStringForTranspose>0</preferSameStringForTranspose>
<stringTuningsFontSize>9</stringTuningsFontSize>
<harpPedalDiagramFontFace>Times New Roman</harpPedalDiagramFontFace>
<harpPedalDiagramFontSize>10</harpPedalDiagramFontSize>
<harpPedalDiagramLineSpacing>1</harpPedalDiagramLineSpacing>
<harpPedalDiagramFontSpatiumDependent>1</harpPedalDiagramFontSpatiumDependent>
<harpPedalDiagramMusicalSymbolsScale>1</harpPedalDiagramMusicalSymbolsScale>
<harpPedalDiagramFontStyle>0</harpPedalDiagramFontStyle>
<harpPedalDiagramColor r="0" g="0" b="0" a="255"/>
<harpPedalDiagramAlign>center,center</harpPedalDiagramAlign>
<harpPedalDiagramFrameType>0</harpPedalDiagramFrameType>
<harpPedalDiagramFramePadding>0.2</harpPedalDiagramFramePadding>
<harpPedalDiagramFrameWidth>0.1</harpPedalDiagramFrameWidth>
<harpPedalDiagramFrameRound>0</harpPedalDiagramFrameRound>
<harpPedalDiagramFrameFgColor r="0" g="0" b="0" a="255"/>
<harpPedalDiagramFrameBgColor r="255" g="255" b="255" a="0"/>
<harpPedalDiagramOffset x="0" y="0"/>
<harpPedalDiagramPlacement>0</harpPedalDiagramPlacement>
<harpPedalDiagramPosAbove x="0" y="-1"/>
<harpPedalDiagramPosBelow x="0" y="2.5"/>
<harpPedalDiagramMinDistance>0.5</harpPedalDiagramMinDistance>
<harpPedalTextDiagramFontFace>Times New Roman</harpPedalTextDiagramFontFace>
<harpPedalTextDiagramFontSize>8</harpPedalTextDiagramFontSize>
<harpPedalTextDiagramLineSpacing>1</harpPedalTextDiagramLineSpacing>
<harpPedalTextDiagramFontSpatiumDependent>1</harpPedalTextDiagramFontSpatiumDependent>
<harpPedalTextDiagramFontStyle>0</harpPedalTextDiagramFontStyle>
<harpPedalTextDiagramColor r="0" g="0" b="0" a="255"/>
<harpPedalTextDiagramAlign>left,baseline</harpPedalTextDiagramAlign>
<harpPedalTextDiagramFrameType>0</harpPedalTextDiagramFrameType>
<harpPedalTextDiagramFramePadding>0.2</harpPedalTextDiagramFramePadding>
<harpPedalTextDiagramFrameWidth>0.1</harpPedalTextDiagramFrameWidth>
<harpPedalTextDiagramFrameRound>0</harpPedalTextDiagramFrameRound>
<harpPedalTextDiagramFrameFgColor r="0" g="0" b="0" a="255"/>
<harpPedalTextDiagramFrameBgColor r="255" g="255" b="255" a="0"/>
<harpPedalTextDiagramOffset x="0" y="0"/>
<harpPedalTextDiagramPlacement>1</harpPedalTextDiagramPlacement>
<harpPedalTextDiagramPosAbove x="0" y="-1.5"/>
<harpPedalTextDiagramPosBelow x="0" y="2.5"/>
<harpPedalTextDiagramMinDistance>0.5</harpPedalTextDiagramMinDistance>
<longInstrumentFontFace>Times New Roman</longInstrumentFontFace>
<longInstrumentFontSize>10.8</longInstrumentFontSize>
<longInstrumentLineSpacing>1</longInstrumentLineSpacing>
<longInstrumentFontSpatiumDependent>1</longInstrumentFontSpatiumDependent>
<longInstrumentFontStyle>0</longInstrumentFontStyle>
<longInstrumentColor r="0" g="0" b="0" a="255"/>
<longInstrumentAlign>right,center</longInstrumentAlign>
<longInstrumentOffset x="0" y="0"/>
<longInstrumentFrameType>0</longInstrumentFrameType>
<longInstrumentFramePadding>0.2</longInstrumentFramePadding>
<longInstrumentFrameWidth>0.1</longInstrumentFrameWidth>
<longInstrumentFrameRound>0</longInstrumentFrameRound>
<longInstrumentFrameFgColor r="0" g="0" b="0" a="255"/>
<longInstrumentFrameBgColor r="255" g="255" b="255" a="0"/>
<shortInstrumentFontFace>Times New Roman</shortInstrumentFontFace>
<shortInstrumentFontSize>10.8</shortInstrumentFontSize>
<shortInstrumentLineSpacing>1</shortInstrumentLineSpacing>
<shortInstrumentFontSpatiumDependent>1</shortInstrumentFontSpatiumDependent>
<shortInstrumentFontStyle>0</shortInstrumentFontStyle>
<shortInstrumentColor r="0" g="0" b="0" a="255"/>
<shortInstrumentAlign>right,center</shortInstrumentAlign>
<shortInstrumentOffset x="0" y="0"/>
<shortInstrumentFrameType>0</shortInstrumentFrameType>
<shortInstrumentFramePadding>0.2</shortInstrumentFramePadding>
<shortInstrumentFrameWidth>0.1</shortInstrumentFrameWidth>
<shortInstrumentFrameRound>0</shortInstrumentFrameRound>
<shortInstrumentFrameFgColor r="0" g="0" b="0" a="255"/>
<shortInstrumentFrameBgColor r="255" g="255" b="255" a="0"/>
<partInstrumentFontFace>Times New Roman</partInstrumentFontFace>
<partInstrumentFontSize>14</partInstrumentFontSize>
<partInstrumentLineSpacing>1</partInstrumentLineSpacing>
<partInstrumentFontSpatiumDependent>0</partInstrumentFontSpatiumDependent>
<partInstrumentFontStyle>0</partInstrumentFontStyle>
<partInstrumentColor r="0" g="0" b="0" a="255"/>
<partInstrumentAlign>left,top</partInstrumentAlign>
<partInstrumentOffset x="0" y="0"/>
<partInstrumentFrameType>0</partInstrumentFrameType>
<partInstrumentFramePadding>0.2</partInstrumentFramePadding>
<partInstrumentFrameWidth>0.1</partInstrumentFrameWidth>
<partInstrumentFrameRound>0</partInstrumentFrameRound>
<partInstrumentFrameFgColor r="0" g="0" b="0" a="255"/>
<partInstrumentFrameBgColor r="255" g="255" b="255" a="0"/>
<dynamicsFontFace>Times New Roman</dynamicsFontFace>
<dynamicsFontSize>9.25</dynamicsFontSize> <!--probably completely useless, but assumed to be based on resizing expression text (9.25) rather than dynamics (10) -->
<dynamicsLineSpacing>1</dynamicsLineSpacing>
<dynamicsFontSpatiumDependent>1</dynamicsFontSpatiumDependent>
<dynamicsFontStyle>2</dynamicsFontStyle>
<dynamicsColor r="0" g="0" b="0" a="255"/>
<dynamicsAlign>center,baseline</dynamicsAlign>
<dynamicsFrameType>0</dynamicsFrameType>
<dynamicsFramePadding>0.2</dynamicsFramePadding>
<dynamicsFrameWidth>0.1</dynamicsFrameWidth>
<dynamicsFrameRound>0</dynamicsFrameRound>
<dynamicsFrameFgColor r="0" g="0" b="0" a="255"/>
<dynamicsFrameBgColor r="255" g="255" b="255" a="0"/>
<expressionFontFace>Times New Roman</expressionFontFace>
<expressionFontSize>9.25</expressionFontSize>
<expressionLineSpacing>1</expressionLineSpacing>
<expressionFontSpatiumDependent>1</expressionFontSpatiumDependent>
<expressionFontStyle>2</expressionFontStyle>
<expressionColor r="0" g="0" b="0" a="255"/>
<expressionAlign>left,baseline</expressionAlign>
<expressionPlacement>1</expressionPlacement>
<expressionOffset x="0" y="2.5"/>
<expressionPosAbove x="0" y="-1.5"/>
<expressionPosBelow x="0" y="2.5"/>
<expressionFrameType>0</expressionFrameType>
<expressionFramePadding>0.2</expressionFramePadding>
<expressionFrameWidth>0.1</expressionFrameWidth>
<expressionFrameRound>0</expressionFrameRound>
<expressionFrameFgColor r="0" g="0" b="0" a="255"/>
<expressionFrameBgColor r="255" g="255" b="255" a="0"/>
<expressionMinDistance>0.5</expressionMinDistance>
<tempoFontFace>Times New Roman</tempoFontFace>
<tempoFontSize>10.8</tempoFontSize>
<tempoLineSpacing>1</tempoLineSpacing>
<tempoFontSpatiumDependent>1</tempoFontSpatiumDependent>
<tempoFontStyle>1</tempoFontStyle>
<tempoColor r="0" g="0" b="0" a="255"/>
<tempoAlign>left,baseline</tempoAlign>
<tempoSystemFlag>1</tempoSystemFlag>
<tempoPlacement>0</tempoPlacement>
<tempoPosAbove x="0" y="-3"/>
<tempoPosBelow x="0" y="3"/>
<tempoMinDistance>0.5</tempoMinDistance>
<tempoFrameType>0</tempoFrameType>
<tempoFramePadding>0.2</tempoFramePadding>
<tempoFrameWidth>0.1</tempoFrameWidth>
<tempoFrameRound>0</tempoFrameRound>
<tempoFrameFgColor r="0" g="0" b="0" a="255"/>
<tempoFrameBgColor r="255" g="255" b="255" a="0"/>
<tempoChangeFontFace>Times New Roman</tempoChangeFontFace>
<tempoChangeFontSize>10.8</tempoChangeFontSize>
<tempoChangeLineSpacing>1</tempoChangeLineSpacing>
<tempoChangeFontSpatiumDependent>1</tempoChangeFontSpatiumDependent>
<tempoChangeFontStyle>1</tempoChangeFontStyle>
<tempoChangeColor r="0" g="0" b="0" a="255"/>
<tempoChangeAlign>left,baseline</tempoChangeAlign>
<tempoChangeSystemFlag>1</tempoChangeSystemFlag>
<tempoChangePlacement>0</tempoChangePlacement>
<tempoChangePosAbove x="0" y="-2"/>
<tempoChangePosBelow x="0" y="3"/>
<tempoChangeMinDistance>0.5</tempoChangeMinDistance>
<tempoChangeFrameType>0</tempoChangeFrameType>
<tempoChangeFramePadding>0.2</tempoChangeFramePadding>
<tempoChangeFrameWidth>0.1</tempoChangeFrameWidth>
<tempoChangeFrameRound>0</tempoChangeFrameRound>
<tempoChangeFrameFgColor r="0" g="0" b="0" a="255"/>
<tempoChangeFrameBgColor r="255" g="255" b="255" a="0"/>
<tempoChangeLineWidth>0.075</tempoChangeLineWidth>
<tempoChangeLineStyle>dashed</tempoChangeLineStyle>
<tempoChangeDashLineLen>7.5</tempoChangeDashLineLen>
<tempoChangeDashGapLen>7.5</tempoChangeDashGapLen>
<metronomeFontFace>Times New Roman</metronomeFontFace>
<metronomeFontSize>9.25</metronomeFontSize>
<metronomeLineSpacing>1</metronomeLineSpacing>
<metronomeFontSpatiumDependent>1</metronomeFontSpatiumDependent>
<metronomeFontStyle>0</metronomeFontStyle>
<metronomeColor r="0" g="0" b="0" a="255"/>
<metronomePlacement>0</metronomePlacement>
<metronomeAlign>left,top</metronomeAlign>
<metronomeOffset x="0" y="0"/>
<metronomeFrameType>0</metronomeFrameType>
<metronomeFramePadding>0.2</metronomeFramePadding>
<metronomeFrameWidth>0.1</metronomeFrameWidth>
<metronomeFrameRound>0</metronomeFrameRound>
<metronomeFrameFgColor r="0" g="0" b="0" a="255"/>
<metronomeFrameBgColor r="255" g="255" b="255" a="0"/>
<measureNumberFontFace>Times New Roman</measureNumberFontFace>
<measureNumberFontSize>7.7</measureNumberFontSize>
<measureNumberLineSpacing>1</measureNumberLineSpacing>
<measureNumberFontSpatiumDependent>0</measureNumberFontSpatiumDependent>
<measureNumberFontStyle>2</measureNumberFontStyle>
<measureNumberColor r="0" g="0" b="0" a="255"/>
<measureNumberPosAbove x="0.21" y="-1.94"/>
<measureNumberPosBelow x="0" y="1"/>
<measureNumberOffsetType>1</measureNumberOffsetType>
<measureNumberVPlacement>0</measureNumberVPlacement>
<measureNumberHPlacement>0</measureNumberHPlacement>
<measureNumberMinDistance>0.5</measureNumberMinDistance>
<measureNumberAlign>left,baseline</measureNumberAlign>
<measureNumberFrameType>0</measureNumberFrameType>
<measureNumberFramePadding>0.2</measureNumberFramePadding>
<measureNumberFrameWidth>0.1</measureNumberFrameWidth>
<measureNumberFrameRound>0</measureNumberFrameRound>
<measureNumberFrameFgColor r="0" g="0" b="0" a="255"/>
<measureNumberFrameBgColor r="255" g="255" b="255" a="0"/>
<mmRestShowMeasureNumberRange>0</mmRestShowMeasureNumberRange>
<mmRestRangeBracketType>0</mmRestRangeBracketType>
<mmRestRangeFontFace>Times New Roman</mmRestRangeFontFace>
<mmRestRangeFontSize>8</mmRestRangeFontSize>
<mmRestRangeFontSpatiumDependent>0</mmRestRangeFontSpatiumDependent>
<mmRestRangeFontStyle>2</mmRestRangeFontStyle>
<mmRestRangeColor r="0" g="0" b="0" a="255"/>
<mmRestRangePosAbove x="0" y="-3"/>
<mmRestRangePosBelow x="0" y="1"/>
<mmRestRangeOffsetType>1</mmRestRangeOffsetType>
<mmRestRangeVPlacement>1</mmRestRangeVPlacement>
<mmRestRangeHPlacement>1</mmRestRangeHPlacement>
<mmRestRangeAlign>center,baseline</mmRestRangeAlign>
<mmRestRangeFrameType>0</mmRestRangeFrameType>
<mmRestRangeFramePadding>0.2</mmRestRangeFramePadding>
<mmRestRangeFrameWidth>0.1</mmRestRangeFrameWidth>
<mmRestRangeFrameRound>0</mmRestRangeFrameRound>
<mmRestRangeFrameFgColor r="0" g="0" b="0" a="255"/>
<mmRestRangeFrameBgColor r="255" g="255" b="255" a="0"/>
<mmRestRangeMinDistance>0.5</mmRestRangeMinDistance>
<translatorFontFace>Times New Roman</translatorFontFace>
<translatorFontSize>12</translatorFontSize>
<translatorLineSpacing>1</translatorLineSpacing>
<translatorFontSpatiumDependent>0</translatorFontSpatiumDependent>
<translatorFontStyle>0</translatorFontStyle>
<translatorColor r="0" g="0" b="0" a="255"/>
<translatorAlign>left,top</translatorAlign>
<translatorOffset x="0" y="0"/>
<translatorFrameType>0</translatorFrameType>
<translatorFramePadding>0.2</translatorFramePadding>
<translatorFrameWidth>0.1</translatorFrameWidth>
<translatorFrameRound>0</translatorFrameRound>
<translatorFrameFgColor r="0" g="0" b="0" a="255"/>
<translatorFrameBgColor r="255" g="255" b="255" a="0"/>
<systemTextFontFace>Times New Roman</systemTextFontFace>
<systemTextFontSize>9.25</systemTextFontSize>
<systemTextLineSpacing>1</systemTextLineSpacing>
<systemTextFontSpatiumDependent>1</systemTextFontSpatiumDependent>
<systemTextFontStyle>0</systemTextFontStyle>
<systemTextColor r="0" g="0" b="0" a="255"/>
<systemTextAlign>left,baseline</systemTextAlign>
<systemTextOffsetType>1</systemTextOffsetType>
<systemTextPlacement>0</systemTextPlacement>
<systemTextPosAbove x="0" y="-2"/>
<systemTextPosBelow x="0" y="3.5"/>
<systemTextMinDistance>0.5</systemTextMinDistance>
<systemTextFrameType>0</systemTextFrameType>
<systemTextFramePadding>0.2</systemTextFramePadding>
<systemTextFrameWidth>0.1</systemTextFrameWidth>
<systemTextFrameRound>0</systemTextFrameRound>
<systemTextFrameFgColor r="0" g="0" b="0" a="255"/>
<systemTextFrameBgColor r="255" g="255" b="255" a="0"/>
<staffTextFontFace>Times New Roman</staffTextFontFace>
<staffTextFontSize>9.25</staffTextFontSize>
<staffTextLineSpacing>1</staffTextLineSpacing>
<staffTextFontSpatiumDependent>1</staffTextFontSpatiumDependent>