diff --git a/Makefile b/Makefile
index 126130a019732cc9c3a891d2b7db1e69310a422c..03249a2332b0aa59d63d1ffaa8be6237ed911dd5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,37 +1,53 @@
-base = Mozart_BenedictusSitDeus
-SRCS = Mozart_BenedictusSitDeus_Music_01_Allegro.ily Mozart_BenedictusSitDeus_Music_02_Andante.ily Mozart_BenedictusSitDeus_Music_03_Allegro.ily $(base)_Settings.ily
 OUT=out
 
+base = Mozart_BenedictusSitDeus
+SRCS = $(base)_Music_01_Allegro.ily $(base)_Music_02_Andante.ily $(base)_Music_03_Allegro.ily $(base)_Settings_Global.ily $(base)_Settings.ily $(base)_Settings_VocalScore.ily $(base)_Settings_ChoralScore.ily $(base)_Settings_VocalVoice.ily $(base)_Settings_FullScore.ily $(base)_Settings_Instrument.ily
 instruments = FlI FlII CorI CorII TbeI TbeII Tim VI VII Va SSolo S A T B Continuo VcB
-scores = Long Full Vocal Particell Choral Original
+scores = Full Vocal Choral
+pdfs = $(instruments:%=$(OUT)/$(base)_Instrument_%.pdf) \
+     $(scores:%=$(OUT)/$(base)_Score_%.pdf)
+
 
-pdfs = $(instruments:%=$(OUT)/$(base)_Instrument_%.pdf) $(scores:%=$(OUT)/$(base)_Score_%.pdf)
-texs = $(scores:%=TeX_$(base)_Score_%.tex)
-texpdfs = $(scores:%=$(OUT)/TeX_$(base)_Score_%.pdf) $(OUT)/TeX_$(base)_Score_Instruments.pdf
+texbase = Mozart_BenedictusSitDeus
+texscores = Full Vocal Choral
+texs = $(texscores:%=TeX_$(texbase)_Score_%.tex)
+texpdfs = $(texs:%.tex=$(OUT)/%.pdf) \
+     $(OUT)/TeX_$(texbase)_Score_Instruments.pdf
 
 
+additionalscores = 
+
 .PHONY: all clean
-all: $(OUT) $(instruments) $(scores) tex
+all: $(OUT) $(instruments) $(scores) $(additionalscores) tex
 instruments: $(instruments)
 scores: $(scores)
 
+
 clean:
 	rm -rf $(OUT)
 
+lily: $(pdfs) $(additionalscores)
+
 $(OUT) :
 	mkdir -p $(OUT)
 
 $(instruments): % : $(OUT)/$(base)_Instrument_%.pdf $(SRCS)
 $(scores): % : $(OUT)/$(base)_Score_%.pdf $(SRCS)
 
-$(OUT)/%.pdf : %.ly $(SRCS)
+
+$(OUT)/%.pdf : %.ly
 	lilypond -o $(basename $@) $<
 
 $(OUT)/%.mp3 : %.midi
 	timidity -c /etc/timidity/fluidr3_gm.cfg -OwM $< -o $@
 
-tex: latex
-latex: $(texpdfs)
+$(additionalscores): $(OUT)/%.pdf: %.ly
+	lilypond -dbackend=eps -o $(basename $@) $<
+
+tex: $(additionalscores) latex
+latex: $(pdfs) $(texpdfs)
+latexpdf: $(texpdfs)
 
 $(OUT)/TeX_%.pdf : TeX_%.tex
-	TEXINPUTS=$(OUT): latex --output-directory=$(OUT)/ $<
+	TEXINPUTS=$(OUT):orchestrallily/:.//: pdflatex --output-directory=$(OUT)/ $<
+
diff --git a/Mozart_BenedictusSitDeus_Instrument_A.ly b/Mozart_BenedictusSitDeus_Instrument_A.ly
index 9920f3dc76592a03b06db50b0d0c3e60ce5b60b2..5b12de04a5432a8692e05a5807c6446def4248b1 100644
--- a/Mozart_BenedictusSitDeus_Instrument_A.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_A.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_VocalVoice.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_B.ly b/Mozart_BenedictusSitDeus_Instrument_B.ly
index d5fc67a93e3e93d4ae7ca89c47bb653785180c01..196e5bf86fda13b6a19a25febffab9daaf95f823 100644
--- a/Mozart_BenedictusSitDeus_Instrument_B.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_B.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_VocalVoice.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_Continuo.ly b/Mozart_BenedictusSitDeus_Instrument_Continuo.ly
index e5cf2e9bc8eeb2833254a2651fa854c4a778cf82..bb1e9f9bd7e1e399772afee2f63467ae0b0f6248 100644
--- a/Mozart_BenedictusSitDeus_Instrument_Continuo.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_Continuo.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_CorI.ly b/Mozart_BenedictusSitDeus_Instrument_CorI.ly
index d61baca9b2cd27da6c720b80cc4d22bda94f487f..16b90886c9d944d2399802d92066a0bd7574e690 100644
--- a/Mozart_BenedictusSitDeus_Instrument_CorI.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_CorI.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_CorII.ly b/Mozart_BenedictusSitDeus_Instrument_CorII.ly
index 2f1f7c481a37f4ba420f32c3728eb3f2d51e01dd..b773399e561e32166b758cea738e108691320ef5 100644
--- a/Mozart_BenedictusSitDeus_Instrument_CorII.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_CorII.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_FlI.ly b/Mozart_BenedictusSitDeus_Instrument_FlI.ly
index 249eb77da8ed71d3eb3e6747f916ba9ab2902c2b..8df3d8120c8fb0cd8f58ad9b0a1c09fb15beff92 100644
--- a/Mozart_BenedictusSitDeus_Instrument_FlI.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_FlI.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_FlII.ly b/Mozart_BenedictusSitDeus_Instrument_FlII.ly
index a8b5a43c36b8ab1867a57fc459606c35c2d857ad..69f852f3b454eee8ee30ce6fbbbff737964a3be7 100644
--- a/Mozart_BenedictusSitDeus_Instrument_FlII.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_FlII.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_S.ly b/Mozart_BenedictusSitDeus_Instrument_S.ly
index 5fa64166845c6b90215803800c7dda9ea60195b8..cdbd3b87549f9059aed15d4f246da145fbad7804 100644
--- a/Mozart_BenedictusSitDeus_Instrument_S.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_S.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_VocalVoice.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_SSolo.ly b/Mozart_BenedictusSitDeus_Instrument_SSolo.ly
index 8ba744bf92d40543062385179efbe434dfc26178..0fca5e85887d68735bea7da0f6291c3365986110 100644
--- a/Mozart_BenedictusSitDeus_Instrument_SSolo.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_SSolo.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_VocalVoice.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_T.ly b/Mozart_BenedictusSitDeus_Instrument_T.ly
index f6d095f198160d351a9f3b9f59c1dd72241970cb..7646c54045fb26984d323ac0683fcb494eb4f64e 100644
--- a/Mozart_BenedictusSitDeus_Instrument_T.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_T.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_VocalVoice.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_TbeI.ly b/Mozart_BenedictusSitDeus_Instrument_TbeI.ly
index 1efec86835661ab6c100d57797ccd5328ae4caac..deec1c03cf6d572ee9cbd04cdc96120e9875723c 100644
--- a/Mozart_BenedictusSitDeus_Instrument_TbeI.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_TbeI.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_TbeII.ly b/Mozart_BenedictusSitDeus_Instrument_TbeII.ly
index 99cebd37176d6ef758cc43ef327a5a1be15e41c1..698139e30a96d7803f3c54f147363c67c7ec15e9 100644
--- a/Mozart_BenedictusSitDeus_Instrument_TbeII.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_TbeII.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_Tim.ly b/Mozart_BenedictusSitDeus_Instrument_Tim.ly
index ba5032b24df76a3e96ce8cd44fd55b0ab090b5e8..602ac8e4f96670e856880d8219707cf60292a3ca 100644
--- a/Mozart_BenedictusSitDeus_Instrument_Tim.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_Tim.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_VI.ly b/Mozart_BenedictusSitDeus_Instrument_VI.ly
index f1f2e9fe37520b2d6d6794300f7543cb508dd1ac..d7ca97ef5de1991fc40964c3915063b69b2acb8b 100644
--- a/Mozart_BenedictusSitDeus_Instrument_VI.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_VI.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_VII.ly b/Mozart_BenedictusSitDeus_Instrument_VII.ly
index 5c6627aaeb43183c84c5aa3a03ed28f220e8ec75..6ac543f45c84954618c1d7d618e523a0d34a2b4c 100644
--- a/Mozart_BenedictusSitDeus_Instrument_VII.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_VII.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
diff --git a/Mozart_BenedictusSitDeus_Instrument_Va.ly b/Mozart_BenedictusSitDeus_Instrument_Va.ly
index 2e27ce0c930e2618074189e176022ec517e5973d..5a4ba384dac28b20f82d9973c7ede4012cea9f4c 100644
--- a/Mozart_BenedictusSitDeus_Instrument_Va.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_Va.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 % Vas is SimultaneousMusic[ Va, StaffGroup[ VaI, VaII ] ]!
 
diff --git a/Mozart_BenedictusSitDeus_Instrument_VcB.ly b/Mozart_BenedictusSitDeus_Instrument_VcB.ly
index 2ad9b743215a3a4308af6a57e88d62071b0ac6fb..46b420fd6e8e9305065a21040bcb3f1b44e9518b 100644
--- a/Mozart_BenedictusSitDeus_Instrument_VcB.ly
+++ b/Mozart_BenedictusSitDeus_Instrument_VcB.ly
@@ -1,10 +1,13 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
 
 \header {
   instrument = \VcBInstrumentName
   scorenumber = \markup{\scoreNumber \VcBNumber}
 }
+IAllegroVcBMusic = \IAllegroBCMusic
+IIAndanteVcBMusic = \IIAndanteBCMusic
+IIIAllegroVcBMusic = \IIIAllegroBCMusic
 
 \createScore #"IAllegro" #'("VcB")
 \createScore #"IIAndante" #'("VcB")
diff --git a/Mozart_BenedictusSitDeus_Music_01_Allegro.ily b/Mozart_BenedictusSitDeus_Music_01_Allegro.ily
index 516bce4363178af5a99a8a98925d04492c4feea7..83387de75f3c780acdcaf68552ce33717d2211b7 100644
--- a/Mozart_BenedictusSitDeus_Music_01_Allegro.ily
+++ b/Mozart_BenedictusSitDeus_Music_01_Allegro.ily
@@ -1,7 +1,7 @@
-\version "2.13.1"
+\version "2.13.34"
 
-IAllegroPieceName = "Coro"
-IAllegroPieceNameTacet = "Coro tacet (Allegro, 45 Takte)"
+IAllegroPieceName = "1. Coro"
+IAllegroPieceNameTacet = "1. Coro tacet (Allegro, 45 Takte)"
 IAllegroTempo = "Allegro."
 
 IAllegroKey = \key c \major
@@ -23,25 +23,25 @@ IAllegroTbeIMusic = \relative c'' {
   d8[ c] r4 r2 | % 5
   R1 | % 6
   d4 r r2 | % 7
-  d4 r4 r2 | % 8
+  \partcombineApartOnce d4 r4 r2 | % 8
   r2 c4. c8 | % 9
   c4 c8[ c8] c4 r4 | \barNumberCheck #10
   R1*5 | % 15
-  d4 d8[ d] d4 d | % 16
-  d8 d4 d8 d4 d | % 17
+  \partcombineApart d4 d8[ d] d4 d | % 16
+  \partcombineAutomatic d8 d4 d8 d4 d | % 17
   r8 d4 d8 e4 e | % 18
   e r r8 e16[ e] e8[ e] | % 19
   e4 r r2 | \barNumberCheck #20
   e8 e4 e8 e4 e | % 21
   r8 e4 e8 e4 e | % 22
-  d8 d4 d8 d4 d | % 23
-  r8 d4 d8 d4 d | % 24
+  \partcombineApart d8 d4 d8 d4 d | % 23
+  r8 d4 d8 \partcombineAutomatic d4 d | % 24
   c8 c4 c8 c4 c | % 25
   r8 c16[ c] c8[ c] c4 c | % 26
   r2 d4 e | % 27
-  d4 c8[ e] d4 r | % 28
+  d4 \partcombineChords c8[ e] \partcombineAutomatic d4 r | % 28
   R1*3 | % 31
-  g,4 r r2 | % 32
+  \partcombineApartOnce g,4 r r2 | % 32
   R1 | % 33
   r2 e'8[ e16 e] e8[ e] | % 34
   d4 r r2 | % 35
@@ -152,8 +152,8 @@ IAllegroVIMusic = \relative c'' {
   \once \override Stem #'direction = #UP
   d,[ fis' a g] fis[ e d c] h[ a g fis] g[ f e d] | % 24
   e[ c g' e] c'[g e' c] g'[ e c e] g,[ c e, g] | % 25
-  \once \override Stem #'direction = #UP 
-  c,[ 
+  \once \override Stem #'direction = #UP
+  c,[
   \once \override Stem #'direction = #DOWN
   e' g f] e[ d c b] a[ g f e] f[ f a c] | % 26
   f[ g a f] d[ e f d] h[ c d h] c[ d e c] | % 27
@@ -204,8 +204,8 @@ IAllegroVIIMusic = \relative c'' {
   \once \override Stem #'direction = #UP
   d,[ fis' a g] fis[ e d c] h[ a g fis] g[ f e d] | % 24
   e[ c g' e] c'[g e' c] g'[ e c e] g,[ c e, g] | % 25
-  \once \override Stem #'direction = #UP 
-  c,[ 
+  \once \override Stem #'direction = #UP
+  c,[
   \once \override Stem #'direction = #DOWN
   e' g f] e[ d c b] a[ g f e] f[ f a c] | % 26
   f[ g a f] d[ e f d] h[ c d h] c[ d e c] | % 27
@@ -321,46 +321,46 @@ IAllegroSMusic = \relative c'' {
   d4 c8 h r e e d | % 43
   c c f4 f( e | % 44
   d2) c4 r \bar"|."
-  
-  
+
+
 }
 \addQuote "IAllegroSMusic" { \IAllegroSMusic }
 
 IAllegroSLyrics = \lyricmode {
-  Be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  sit De -- us, De -- us, De -- us pa -- ter, 
-  u -- ni -- ge -- ni -- 
+  Be -- ne -- di -- ctus sit De -- us pa -- ter,
+  sit De -- us, De -- us, De -- us pa -- ter,
+  u -- ni -- ge -- ni --
   % 5
-  tus -- que, 
-  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us, 
-  san -- ctus quo -- que Spi -- ri -- tus, 
-  san -- ctus quo -- que Spi -- ri -- tus, 
+  tus -- que,
+  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
+  san -- ctus quo -- que Spi -- ri -- tus,
+  san -- ctus quo -- que Spi -- ri -- tus,
   % 10
-  qui -- a fe -- cit, 
+  qui -- a fe -- cit,
   qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am
   % 15
-  su -- am. 
-  Be -- ne -- di -- ctus, 
-  be -- ne -- di -- ctus sit De -- us, De -- us, 
-  De -- us pa -- 
+  su -- am.
+  Be -- ne -- di -- ctus,
+  be -- ne -- di -- ctus sit De -- us, De -- us,
+  De -- us pa --
   % 20
-  ter, be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  be -- ne -- di -- ctus sit De -- us fi -- li -- us, 
+  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
+  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
   be -- ne -- di -- ctus
   % 25
-  sit san -- ctus Spi -- ri -- tus, 
-  be -- ne -- di -- ctus sit De -- us pa -- ter, 
+  sit san -- ctus Spi -- ri -- tus,
+  be -- ne -- di -- ctus sit De -- us pa -- ter,
   u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni --
   % 30
-  tus -- que De -- i fi -- li -- us, 
-  san -- ctus quo -- que, 
-  san -- ctus quo -- que Spi -- ri -- tus, 
+  tus -- que De -- i fi -- li -- us,
+  san -- ctus quo -- que,
+  san -- ctus quo -- que Spi -- ri -- tus,
   % 35
-  qui -- a fe -- cit, 
-  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am, 
-  mi -- se -- ri -- cor -- di -- am 
+  qui -- a fe -- cit,
+  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
+  mi -- se -- ri -- cor -- di -- am
   % 40
-  su -- am, mi -- se -- ri -- cor -- di -- am, 
+  su -- am, mi -- se -- ri -- cor -- di -- am,
   mi -- se -- ri -- cor -- di -- am su -- am.
 }
 
@@ -374,7 +374,7 @@ IAllegroAMusic = \relative c'' {
   fis4 r r g~| % 8
   g8[( f e]) d c4 d8[( e]) | % 9
   f4. f8 e4 r | \barNumberCheck #10
-  r8 c4 d8 e4 e | % 11 
+  r8 c4 d8 e4 e | % 11
   r8 d4 e8 f4 f | % 12
   r e a8[( fis]) d4 | % 13
   r8 d8 d d g8. g16 g8 g | % 14
@@ -413,40 +413,40 @@ IAllegroAMusic = \relative c'' {
 \addQuote "IAllegroAMusic" { \IAllegroAMusic }
 
 IAllegroALyrics = \lyricmode {
-  Be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  sit De -- us, De -- us pa -- ter, 
-  u -- ni -- ge -- ni -- 
+  Be -- ne -- di -- ctus sit De -- us pa -- ter,
+  sit De -- us, De -- us pa -- ter,
+  u -- ni -- ge -- ni --
   % 5
-  tus -- que, 
-  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us, 
-  san -- ctus quo -- que Spi -- ri -- tus, 
+  tus -- que,
+  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
+  san -- ctus quo -- que Spi -- ri -- tus,
   % 10
   qui -- a fe -- cit,
-  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am, 
+  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
   mi -- se -- ri -- cor -- di -- am
   % 15
-  su -- am. 
-  Be -- ne -- di -- ctus, 
-  be -- ne -- di -- ctus sit De -- us, 
-  De -- us pa -- 
+  su -- am.
+  Be -- ne -- di -- ctus,
+  be -- ne -- di -- ctus sit De -- us,
+  De -- us pa --
   % 20
-  ter, be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  be -- ne -- di -- ctus sit De -- us fi -- li -- us, 
+  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
+  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
   be -- ne -- di -- ctus
   % 25
-  sit san -- ctus Spi -- ri -- tus, 
-  be -- ne -- di -- ctus sit De -- us pa -- ter, 
+  sit san -- ctus Spi -- ri -- tus,
+  be -- ne -- di -- ctus sit De -- us pa -- ter,
   u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni --
   % 30
-  tus -- que De -- i fi -- li -- us, 
-  san -- ctus quo -- que, 
-  san -- ctus quo -- que, __ san -- ctus quo -- que Spi -- ri -- tus, 
+  tus -- que De -- i fi -- li -- us,
+  san -- ctus quo -- que,
+  san -- ctus quo -- que, __ san -- ctus quo -- que Spi -- ri -- tus,
   % 35
-  qui -- a fe -- cit, 
-  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am, 
-  mi -- se -- ri -- cor -- di -- am, mi -- se -- ri -- cor -- 
+  qui -- a fe -- cit,
+  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
+  mi -- se -- ri -- cor -- di -- am, mi -- se -- ri -- cor --
   % 40
-  di -- am su -- am, mi -- se -- ri -- cor -- di -- am, 
+  di -- am su -- am, mi -- se -- ri -- cor -- di -- am,
   mi -- se -- ri -- cor -- di -- am su -- am.
 }
 
@@ -497,37 +497,37 @@ IAllegroTMusic = \relative c' {
 \addQuote "IAllegroTMusic" { \IAllegroTMusic }
 
 IAllegroTLyrics = \lyricmode {
-  Be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  sit De -- us, De -- us pa -- ter, 
-  u -- ni -- ge -- ni -- 
+  Be -- ne -- di -- ctus sit De -- us pa -- ter,
+  sit De -- us, De -- us pa -- ter,
+  u -- ni -- ge -- ni --
   % 5
-  tus -- que, 
-  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us, 
-  san -- ctus, san -- ctus quo -- que Spi -- ri -- tus, 
+  tus -- que,
+  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
+  san -- ctus, san -- ctus quo -- que Spi -- ri -- tus,
   % 10
-  qui -- a fe -- cit mi -- se -- ri -- cor -- di -- am, 
-  mi -- se -- ri -- 
+  qui -- a fe -- cit mi -- se -- ri -- cor -- di -- am,
+  mi -- se -- ri --
   % 15
-  cor -- di -- am su -- am. 
-  Be -- ne -- di -- ctus, 
+  cor -- di -- am su -- am.
+  Be -- ne -- di -- ctus,
   be -- ne -- di -- ctus sit De -- us, De -- us,
-  De -- us pa -- 
+  De -- us pa --
   % 20
-  ter, be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  be -- ne -- di -- ctus sit De -- us fi -- li -- us, 
+  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
+  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
   be -- ne -- di -- ctus
   % 25
-  sit san -- ctus Spi -- ri -- tus, 
-  be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni -- tus -- que De -- i 
+  sit san -- ctus Spi -- ri -- tus,
+  be -- ne -- di -- ctus sit De -- us pa -- ter,
+  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni -- tus -- que De -- i
   % 30
   fi -- li -- us, De -- i  fi -- li -- us,
-  san -- ctus, san -- ctus quo -- que Spi -- ri -- tus, 
+  san -- ctus, san -- ctus quo -- que Spi -- ri -- tus,
   % 35
-  qui -- a fe -- cit, 
-  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am, 
+  qui -- a fe -- cit,
+  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
   % 40
-  su -- am, mi -- se -- ri -- cor -- di -- am, 
+  su -- am, mi -- se -- ri -- cor -- di -- am,
   mi -- se -- ri -- cor -- di -- am su -- am.
 }
 
@@ -579,37 +579,37 @@ IAllegroBMusic = \relative c' {
 \addQuote "IAllegroBMusic" { \IAllegroBMusic }
 
 IAllegroBLyrics = \lyricmode {
-  Be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  sit De -- us, De -- us pa -- ter, 
-  u -- ni -- ge -- ni -- 
+  Be -- ne -- di -- ctus sit De -- us pa -- ter,
+  sit De -- us, De -- us pa -- ter,
+  u -- ni -- ge -- ni --
   % 5
-  tus -- que, 
-  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us, 
-  san -- ctus quo -- que Spi -- ri -- tus, 
+  tus -- que,
+  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
+  san -- ctus quo -- que Spi -- ri -- tus,
   % 10
-  qui -- a fe -- cit, qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- 
+  qui -- a fe -- cit, qui -- a fe -- cit no -- bis -- cum mi -- se -- ri --
   % 15
-  cor -- di -- am su -- am. 
-  Be -- ne -- di -- ctus, 
-  be -- ne -- di -- ctus sit De -- us, 
-  De -- us pa -- 
+  cor -- di -- am su -- am.
+  Be -- ne -- di -- ctus,
+  be -- ne -- di -- ctus sit De -- us,
+  De -- us pa --
   % 20
-  ter, be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  be -- ne -- di -- ctus sit De -- us fi -- li -- us, 
+  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
+  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
   be -- ne -- di -- ctus
   % 25
-  sit san -- ctus Spi -- ri -- tus, 
-  be -- ne -- di -- ctus sit De -- us pa -- ter, 
-  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni -- tus -- que De -- i 
+  sit san -- ctus Spi -- ri -- tus,
+  be -- ne -- di -- ctus sit De -- us pa -- ter,
+  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni -- tus -- que De -- i
   % 30
   fi -- li -- us, De -- i  fi -- li -- us,
-  san -- ctus quo -- que Spi -- ri -- tus, 
+  san -- ctus quo -- que Spi -- ri -- tus,
   % 35
-  qui -- a fe -- cit, 
-  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am, 
+  qui -- a fe -- cit,
+  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
   % 40
   su -- am, mi -- se -- ri -- cor -- di -- am,
-  mi -- se -- ri -- cor -- di -- am,  
+  mi -- se -- ri -- cor -- di -- am,
   mi -- se -- ri -- cor -- di -- am su -- am.
 }
 
@@ -661,9 +661,9 @@ IAllegroBCMusic = \relative c' {
 }
 
 IAllegroBCFbMusic = \figuremode {
-  s4 < 6 >8 s s s \set useBassFigureExtenders = ##t <6> <6> \set useBassFigureExtenders = ##f | % 2
+  s4 < 6 >8 s s s \bassFigureExtendersOn <6> <6> \bassFigureExtendersOff | % 2
   <6> <6 4> <6> <6 5> s4 <6>8 s | % 3
-  \set useBassFigureExtenders = ##t <7 3> <6 3> <8 3> <8 3> <9 7> <8 6> <8 6> <6\!>16 <5> | % 4
+  \bassFigureExtendersOn <7 3> <6 3> <8 3> <8 3> <9 7> <8 6> <8 6> <6\!>16 <5> | % 4
   s1 | % 5
   s2 <6>8 <6> <6> <6> | % 6
   s2 <7>8 <7> <7> <7> |% 7
@@ -704,4 +704,4 @@ IAllegroBCFbMusic = \figuremode {
   <5 4> <5 4> <5 3> <5 3> s4 s \bar"|."
 }
 
-IAllegroVcBMusic = \IAllegroBCMusic
+% IAllegroVcBMusic = \IAllegroBCMusic
diff --git a/Mozart_BenedictusSitDeus_Music_02_Andante.ily b/Mozart_BenedictusSitDeus_Music_02_Andante.ily
index ce19bba254ffbc0727211dfb98393e2c6de69167..b6f0c57042d55bf2a5db47e8c3b6f1e3fce517b7 100644
--- a/Mozart_BenedictusSitDeus_Music_02_Andante.ily
+++ b/Mozart_BenedictusSitDeus_Music_02_Andante.ily
@@ -1,7 +1,7 @@
-\version "2.13.1"
+\version "2.13.34"
 
-IIAndantePieceName = "Aria"
-IIAndantePieceNameTacet = "Aria tacet (Andante, 96 Takte)"
+IIAndantePieceName = "2. Aria"
+IIAndantePieceNameTacet = "2. Aria tacet (Andante, 96 Takte)"
 IIAndanteTempo = "Andante."
 
 IIAndanteKey = \key f \major
@@ -181,7 +181,7 @@ IIAndanteCorIMusic = \relative c'' {
   \transposition f'
   g2~ | % 2
   g2~ | % 3
-  g2~ | % 4 
+  g2~ | % 4
   g2 | % 5
   c4 r8 c8 | % 6
   d8[ d] d4 | % 7
@@ -203,30 +203,30 @@ IIAndanteCorIMusic = \relative c'' {
   d4 r8 d8 | % 23
   e4 r | % 24
   R2 | % 25
-  g,2 | % 26
+  \partcombineApartOnce g,2 | % 26
   R2*2 | % 28
   d'2 | % 29
   e | \barNumberCheck #30
-  r8 e d4 | % 31
+  r8 e \partcombineApartOnce d4 | % 31
   d r | % 32
   d2~ |  % 33
   d4 r | % 34
-  r8 e8 d4 | % 35
+  r8 e8 \partcombineApartOnce d4 | % 35
   d4 r | % 36
-  d2~| % 37
-  d4 r | % 38
-  r8 e8 d4 | % 39
+  \partcombineApart d2~| % 37
+  d4 \partcombineAutomatic r | % 38
+  r8 e8 \partcombineApartOnce d4 | % 39
   d r | \barNumberCheck #40
-  d r | % 41
+  \partcombineApart d r | % 41
   d2~ | % 42
   d2 | % 43
   d4\f r8 d8 | % 44
   d4 r8 d8 | % 45
-  d4 r8 d8 | % 46
-  d4 r8 d8 | % 47
-  d4 r | % 48
+  \partcombineAutomatic d4 r8 d8 | % 46
+  \partcombineApart d4 r8 d8 | % 47
+  \partcombineAutomatic d4 r | % 48
   r8 g,8[ g g] | % 49
-  g[ c] d4 | \barNumberCheck #50
+  g[ c] \partcombineApartOnce d4 | \barNumberCheck #50
   d8[ d] d4 | % 51
   g,2\p |  % 52
   R2*2 | % 54
@@ -272,7 +272,7 @@ IIAndanteCorIIMusic = \relative c'' {
   \transposition f'
   g2~ | % 2
   g2~ | % 3
-  g2~ | % 4 
+  g2~ | % 4
   g2 | % 5
   e4 r8 e8 | % 6
   g8[ g] g4 | % 7
@@ -330,7 +330,7 @@ IIAndanteCorIIMusic = \relative c'' {
   c4 e'8[( d]) | % 64
   c4 r | % 65
   R2*6 | % 71
-  c,4 r | % 72 
+  c,4 r | % 72
   R2 | % 73
   g'4(\p c8) r | % 74
   r d[ c g] | % 75
@@ -490,12 +490,12 @@ IIAndanteVIIMusic = \relative c' {
   e[ g, g g] | % 29
   c, r r4 | \barNumberCheck #30
   r8 a'16[( f]) e8[( d]) | % 31
-  \times 2/3 {\once \override Stem #'direction = #UP c16[\f 
+  \times 2/3 {\once \override Stem #'direction = #UP c16[\f
     \once \override Stem #'direction = #DOWN g'' f]} \times 2/3 {e[ d c]} \times 2/3 {h[ a g]} \times 2/3 {f[ e d]} | % 32
   c8[ e'\p d c] | % 33
   h4( c8)[ c~] | % 34
   c8[ a16( f]) e8[( d]) | % 35
-  \times 2/3 {\once \override Stem #'direction = #UP c16[\f 
+  \times 2/3 {\once \override Stem #'direction = #UP c16[\f
     \once \override Stem #'direction = #DOWN g'' f]} \times 2/3 {e[ d c]} \times 2/3 {h[ a g]} \times 2/3 {f[ e d]} | % 36
   c8[ e'\p d c] | % 37
   h4( c8)[ c~] | % 38
@@ -657,8 +657,8 @@ IIAndanteVaIMusic = \relative c' {
   r8 a8[\ff b a] | % 94
   f r f r | % 95
   c2:16 | % 96
-  c8[ c] c4 \bar "|." 
-  
+  c8[ c] c4 \bar "|."
+
 }
 \addQuote "IIAndanteVaIMusic" { \IIAndanteVaIMusic }
 
@@ -769,7 +769,7 @@ IIAndanteSSoloMusic = \relative c'' {
   c8.[( d32 e f8]) a, | % 24
   a8. g16 g4 | % 25
   r8 c8 c b | % 26
-  
+
   \times 2/3 { a16[\melisma b g} a8] \times 2/3 { f'16[ e d]} \times 2/3 {c[ h a]} | % 27
   \times 2/3 { h16[ c a} h8] \times 2/3 { f'16[ e d]} \times 2/3 {d[ c h]} | % 28
   c8.[ d32 h c8]\melismaEnd b | % 29
@@ -832,40 +832,40 @@ IIAndanteSSoloMusic = \relative c'' {
 \addQuote "IIAndanteSSoloMusic" { \IIAndanteSSoloMusic }
 
 IIAndanteSSoloLyrics = \lyricmode {
-  In -- tro -- i -- bo, 
-  in -- tro -- 
+  In -- tro -- i -- bo,
+  in -- tro --
   % 20
-  i -- bo do -- mum tu -- am, 
-  Do -- mi -- ne, 
+  i -- bo do -- mum tu -- am,
+  Do -- mi -- ne,
   % 25
-  in ho -- lo -- cau -- stis, 
-  red -- dam ti -- bi 
+  in ho -- lo -- cau -- stis,
+  red -- dam ti -- bi
   % 30
-  vo -- ta me -- a, 
-  quae di -- stin -- xe -- runt la -- bi -- a me -- 
+  vo -- ta me -- a,
+  quae di -- stin -- xe -- runt la -- bi -- a me --
   % 35
-  a, 
-  quae di -- stin -- xe -- runt la -- bi -- a me -- a, 
-  quae di -- stin -- 
+  a,
+  quae di -- stin -- xe -- runt la -- bi -- a me -- a,
+  quae di -- stin --
   % 40
   xe -- runt la -- bi -- a me -- a.
   % 45
   % 50
-  In tro -- i -- bo do -- mum tu -- am, Do -- mi -- ne, 
+  In tro -- i -- bo do -- mum tu -- am, Do -- mi -- ne,
   % 55
   in ho -- lo -- cau -- stis,
   % 60
-  red -- dam ti -- bi vo -- ta me -- a, 
-  quae di -- stin -- 
+  red -- dam ti -- bi vo -- ta me -- a,
+  quae di -- stin --
   % 65
   xe -- runt la -- bi -- a
   % 70
   me -- a,
-  quae di -- stin -- xe -- runt la -- bi -- a me -- 
+  quae di -- stin -- xe -- runt la -- bi -- a me --
   % 75
   a,
-  quae di -- stin -- xe -- runt la -- bi -- a me -- a, 
-  quae di -- stin -- 
+  quae di -- stin -- xe -- runt la -- bi -- a me -- a,
+  quae di -- stin --
   % 80
   xe -- runt la -- bi -- a me -- a,
   % 85
@@ -874,7 +874,7 @@ IIAndanteSSoloLyrics = \lyricmode {
 }
 
 IIAndanteBCMusic = \relative c {
-  r8 f8[ a f] | % 2 
+  r8 f8[ a f] | % 2
   c'8[ b] a4 | % 3
   r8 f16[ g] a8[ f] | % 4
   r8 c8[ f f,] | % 5
@@ -983,9 +983,9 @@ IIAndanteFiguredBassMusic = \figuremode {
   s4 <6>8 s | % 8
   s8 <6> <6 5> <7> | % 9
   s <6> s <6> | \barNumberCheck #10
-  s16 \set useBassFigureExtenders = ##t <6 4> <6 4> <6 4> <5 3>16 s s s | % 11
+  s16 \bassFigureExtendersOn <6 4> <6 4> <6 4> <5 3>16 s s s | % 11
   s2 | % 12
-  s8 \set useBassFigureExtenders = ##f <6 5> <6 4> <5 3> | % 13
+  s8 \bassFigureExtendersOff <6 5> <6 4> <5 3> | % 13
   s2 | % 14
   s8 <6 5> <6 4> <5 3> | % 15
   s2*2 | % 17
@@ -996,7 +996,7 @@ IIAndanteFiguredBassMusic = \figuremode {
   s s <6> s  | % 22
   s <6> <6 5> <7> | % 23
   s s <6> <7> | % 24
-  \set useBassFigureExtenders = ##t <6 4>8 <6 4> <5 3> s | % 25
+  \bassFigureExtendersOn <6 4>8 <6 4> <5 3> s | % 25
   s <6> s <6 4 3> | % 26
   s2 | % 27
   <4! 2>8 <4! 2> <4! 2> <4! 2> | % 28
@@ -1026,7 +1026,7 @@ IIAndanteFiguredBassMusic = \figuremode {
   s4 s8 <_!> | % 53
   s <6> <9 4> <7 _!> | % 54
   s4 <6 4>8 <7! 4\! 2> | % 55
-  s4 <6\+ 3>8 <8 4> % 56 % TODO: use backward slash!!!
+  s4 <6\\ 3>8 <8 4> % 56
   <5> <5> <5> <6> | % 57
   <7 3+> <7 3+> <7 3+> <7 3+> | % 58
   <6 4> <6 4> <6 4> <6 4> | % 59
@@ -1043,14 +1043,14 @@ IIAndanteFiguredBassMusic = \figuremode {
   s s s <6> | \barNumberCheck #70
   <6\! 4>16 <6 4> <6 4> <6 4> <5 3> <5 3> <5 3> <5 3>  | % 71
   s2 | % 72
-  s8 <6> <4 2> <6> \set useBassFigureExtenders = ##f | % 73
+  s8 <6> <4 2> <6> \bassFigureExtendersOff | % 73
   <6 5> <7> s s | % 74
   s <6 5> <6 4> <5 3> | % 75
   s2 | % 76
   s8 <6> <6 5> s | % 77
   <6 5> <7> s s | % 78
   s <6 5> <6 4> <5 3> | % 79
-  s <6> <6>\set useBassFigureExtenders = ##t s | \barNumberCheck #80
+  s <6> <6>\bassFigureExtendersOn s | \barNumberCheck #80
   <6 5> <7> s s | % 81
   s2 | % 82
   <6 4>8 <6 4> <6 4> <6 4> | % 83
@@ -1070,5 +1070,5 @@ IIAndanteFiguredBassMusic = \figuremode {
   s2 \bar"|."
 }
 
-IIAndanteVcBMusic = \IIAndanteBCMusic
-\addQuote "IIAndanteVcBMusic" { \IIAndanteVcBMusic }
+% IIAndanteVcBMusic = \IIAndanteBCMusic
+% \addQuote "IIAndanteVcBMusic" { \IIAndanteVcBMusic }
diff --git a/Mozart_BenedictusSitDeus_Music_03_Allegro.ily b/Mozart_BenedictusSitDeus_Music_03_Allegro.ily
index ce91b7c6423d95f4977af9a2e3a2a29a6628b1a9..475ffdf03748132daa5dc511d21d6138bab768cb 100644
--- a/Mozart_BenedictusSitDeus_Music_03_Allegro.ily
+++ b/Mozart_BenedictusSitDeus_Music_03_Allegro.ily
@@ -1,7 +1,7 @@
-\version "2.13.1"
+\version "2.13.34"
 
-IIIAllegroPieceName = "Coro"
-IIIAllegroPieceNameTacet = "Coro tacet (Allegro, 48 Takte)"
+IIIAllegroPieceName = "3. Coro"
+IIIAllegroPieceNameTacet = "3. Coro tacet (Allegro, 48 Takte)"
 IIIAllegroTempo = "Allegro."
 
 IIIAllegroKey = \key c \major
@@ -29,14 +29,14 @@ IIIAllegroTbeIMusic = \relative c'' {
   e8[ c16 c] c8[ c] c[ c] c4 | % 13
   R1*3 | % 16
   r2 r8 d[ d d] | % 17
-  e4 r d4 d8[ d] | % 18
+  e4 r \partcombineApart d4 d8[ d] | % 18
   d4 r g, r | % 19
-  d'4 r8 d8 d4 e | \barNumberCheck #20
-  d d d2 | % 21
-  d4 r8 d8 d4 r | % 22
+  \partcombineAutomatic d'4 r8 d8 d4 e | \barNumberCheck #20
+  \partcombineApartOnce d d \partcombineApartOnce d2 | % 21
+  d4 r8 \partcombineApartOnce d8 d4 r | % 22
   R1*3 | % 25
-  r8 d4 d8 d2 | % 26
-  d4 r r e8[ e] | % 27
+  r8 \partcombineApart d4 d8 d2 | % 26
+  \partcombineAutomatic d4 r r e8[ e] | % 27
   e4 r r2 | % 28
   e4 r c r | % 29
   R1*3 | % 32
@@ -45,8 +45,8 @@ IIIAllegroTbeIMusic = \relative c'' {
   r4 e4 e r8 e8 | % 35
   e4 r r2 | % 36
   R1*2 | % 38
-  r2 e4 r | % 39
-  d4 r c r | \barNumberCheck #40
+  r2 \partcombineApartOnce e4 r | % 39
+  \partcombineApartOnce d4 r \partcombineApartOnce c r | \barNumberCheck #40
   c4 c8[ c] d4 e | % 41
   r4 e8[ d] c4 r8 d8 | % 42
   c4 r r c8[ c] | % 43
@@ -129,7 +129,7 @@ IIIAllegroTimMusic = \relative c {
   r2 g4 g8[ g] | % 46
   c4 r g g8[ g] | % 47
   c4 r8 g c4 r8 g8 | % 48
-  c8.[ c16] c8[ c] c2 \bar"|."  
+  c8.[ c16] c8[ c] c2 \bar"|."
 }
 \addQuote "IIIAllegroTimMusic" { \IIIAllegroTimMusic }
 
@@ -324,41 +324,41 @@ IIIAllegroSMusic = \relative c'' {
 \addQuote "IIIAllegroSMusic" { \IIIAllegroSMusic }
 
 IIIAllegroSLyrics = \lyricmode {
-  Ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  Ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
   % 5
   ju -- bi -- la -- te, ju -- bi -- la -- te.
-  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus, 
+  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus,
   da -- te
   % 10
   glo -- ri -- am lau -- di e -- jus.
   Ju -- bi -- la -- te.
   % 15
   Ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
   ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   % 20
-  ju -- bi -- la -- te De -- o o -- mnis ter -- ra, 
+  ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
   % 25
   ju -- bi -- la -- te, ju -- bi -- la -- te.
   % 30
-  Ju -- bi -- la -- te, 
+  Ju -- bi -- la -- te,
   ju -- bi -- la -- te, ju -- bi -- la -- te.
   % 35
   Ju -- bi -- la -- te,
   % 40
   ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la --
   % 45
-  te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te.
 }
 
@@ -409,8 +409,8 @@ IIIAllegroAMusic = \relative c' {
 \addQuote "IIIAllegroAMusic" { \IIIAllegroAMusic }
 
 IIIAllegroALyrics = \lyricmode {
-  Ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  Ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
   % 5
   ju -- bi -- la -- te, ju -- bi -- la -- te.
@@ -418,33 +418,33 @@ IIIAllegroALyrics = \lyricmode {
   Ju -- bi -- la -- te.
   % 15
   Ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
   ju -- bi -- la -- te,
   ju -- bi -- la -- te,
-  ju -- bi -- 
+  ju -- bi -- la -- te,
+  ju -- bi --
   % 20
-  la -- te, 
-  ju -- bi -- la -- te De -- o o -- mnis ter -- 
+  la -- te,
+  ju -- bi -- la -- te De -- o o -- mnis ter --
   % 25
-  ra, 
+  ra,
   ju -- bi -- la -- te, ju -- bi -- la -- te.
   % 30
   Ju -- bi -- la -- te.
   % 35
-  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus, 
+  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus,
   da -- te glo -- ri -- am lau -- di e -- jus.
   Ju -- bi -- la -- te,
   % 40
   ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la --
   % 45
-  te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te.
 }
 
@@ -494,25 +494,25 @@ IIIAllegroTMusic = \relative c' {
 \addQuote "IIIAllegroTMusic" { \IIIAllegroTMusic }
 
 IIIAllegroTLyrics = \lyricmode {
-  Ju -- bi -- la -- te, 
+  Ju -- bi -- la -- te,
   ju -- bi -- la -- te
   % 5
-  De -- o o -- mnis ter -- ra, 
+  De -- o o -- mnis ter -- ra,
   ju -- bi -- la -- te, ju -- bi -- la -- te.
   % 10
   Ju -- bi -- la -- te.
-  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus, 
+  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus,
   da -- te
   % 15
   glo -- ri -- am lau -- di e -- jus.
   Ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
   ju -- bi -- la -- te,
   ju -- bi -- la -- te,
-  ju -- bi -- 
+  ju -- bi -- la -- te,
+  ju -- bi --
   % 20
-  la -- te, 
-  ju -- bi -- la -- te De -- o o -- mnis ter -- ra, 
+  la -- te,
+  ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
   % 25
   ju -- bi -- la -- te, ju -- bi -- la -- te,
   ju -- bi -- la -- te, ju -- bi -- la -- te.
@@ -524,15 +524,15 @@ IIIAllegroTLyrics = \lyricmode {
   % 40
   la -- te,
   ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la --
   % 45
-  te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te.
 }
 
@@ -582,51 +582,51 @@ IIIAllegroBMusic = \relative c {
 \addQuote "IIIAllegroBMusic" { \IIIAllegroBMusic }
 
 IIIAllegroBLyrics = \lyricmode {
-  Ju -- bi -- la -- te, 
+  Ju -- bi -- la -- te,
   ju -- bi -- la -- te,
   ju -- bi -- la -- te
   % 5
-  De -- o o -- mnis ter -- ra, 
+  De -- o o -- mnis ter -- ra,
   ju -- bi -- la -- te, ju -- bi -- la -- te.
   % 10
   Ju -- bi -- la -- te.
   % 15
   Ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te,
   ju -- bi -- la -- te,
   % 20
   ju -- bi -- la -- te,
-  ju -- bi -- la -- te De -- o o -- mnis ter -- 
+  ju -- bi -- la -- te De -- o o -- mnis ter --
   % 25
-  ra, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  ra,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te.
-  Psal -- mum di -- ci -- te no -- mi -- ni e -- 
+  Psal -- mum di -- ci -- te no -- mi -- ni e --
   % 30
-  jus, 
+  jus,
   da -- te glo -- ri -- am lau -- di e -- jus.
-  Ju -- bi -- la -- te, 
+  Ju -- bi -- la -- te,
   ju -- bi -- la -- te,
   ju -- bi -- la -- te,
   ju -- bi -- la -- te.
   % 35
-  Ju -- bi -- la -- te, 
+  Ju -- bi -- la -- te,
   ju -- bi -- la -- te,
   ju -- bi --
   % 40
   la -- te,
   ju -- bi -- la -- te,
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la --
   % 45
-  te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
-  ju -- bi -- la -- te, 
+  te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
+  ju -- bi -- la -- te,
   ju -- bi -- la -- te.
 }
 
@@ -676,23 +676,23 @@ IIIAllegroBCMusic = \relative c {
   c[ e f f] g[ g g, g] | % 46
   c[ c f f] g[ g g, g] | % 47
   c[ c g' g,] c[ c g' g,] | % 48
-  c8.[ c'16] g16.[ c32 g16. e32] c2 \bar"|."  
+  c8.[ c'16] g16.[ c32 g16. e32] c2 \bar"|."
 }
 
 IIIAllegroBCFbMusic = \figuremode {
   \IIIAllegroSettings
-  \set useBassFigureExtenders = ##t 
+  \bassFigureExtendersOn
   <8 3>8 <5 3>8 <5 3\!> <5 3> <6> <6> <6> <6> | % 2
-  \set useBassFigureExtenders = ##f <6> <6 4> <6> <6 5> s s <6> <7> | % 3
+  \bassFigureExtendersOff <6> <6 4> <6> <6 5> s s <6> <7> | % 3
   s1 | % 4
   s2 s8 s <6> <7> | % 5
   s1 | % 6
-  \set useBassFigureExtenders = ##t <7>8 <7> <6 5> <6 5> s2 | % 7
-  s4 s8 <6\+> s2 | % 8 % TODO: Backslash through <6>
+  \bassFigureExtendersOn <7>8 <7> <6 5> <6 5> s2 | % 7
+  s4 s8 <6\\> s2 | % 8
   s1*5 | % 13
   s2 <6>16 <6> <6> <6> <6> <6> <6> <6> | % 14
   <6\!> <6> <6> <6> s s s s <6> <6> <6> <6> <6> <6> <6> <6> | % 15
-  <7 _+>8 <5> <6>16 <6> <6> <6> s s s s <6\+> <6\+> <6\+> <6\+> | % 16 TODO: Backslash through <6>
+  <7 _+>8 <5> <6\\>16 <6\\> <6\\> <6\\> s s s s <6> <6> <6> <6> | % 16
   <6\! 5> <6 5> <6 5> <6 5>  <_+> <_+> <_+> <_+> <6> <6> <6> <6>  s4 | % 17
   <6>8 s s <6 5> <_+> <_+> s s | % 18
   s s <6 5> <6 5> <6 5>4 s | % 19
@@ -702,8 +702,8 @@ IIIAllegroBCFbMusic = \figuremode {
   s <9 4>8 <9 4> <7 5> <7 5> | % 23
   s1 | % 24
   s2 <7 5>8 <7 5> <6 5\!> <6 5> | % 25
-  \set useBassFigureExtenders = ##f s <6> <6\+> <6 5> s <6> <6> <6 5> | % 26 TODO: Backslash through <6>
-  s s \set useBassFigureExtenders = ##t <6 4> <6 3> <3+> <4\+ 3> <6> <6\+> | % 27 TODO: Backslash through <6>
+  \bassFigureExtendersOff s <6> <6\\> <6 5> s <6> <6> <6 5> | % 26
+  s s \bassFigureExtendersOn <6 4> <6 3> <3+> <4\+ 3> <6> <6\\> | % 27
   s s s <6> <7> <7> <6> <6> | % 28
   <_+>4 <_!>8 <6 4 3> <5>16 s s8 s4 | % 29
   <6>16 <6> <6> <6> <6> <6> <6> <6> <6\!> <6>  <6>  <6>  s4 | \barNumberCheck #30
@@ -726,4 +726,4 @@ IIIAllegroBCFbMusic = \figuremode {
   s1 \bar"|."
 }
 
-IIIAllegroVcBMusic = \IIIAllegroBCMusic
\ No newline at end of file
+% IIIAllegroVcBMusic = \IIIAllegroBCMusic
diff --git a/Mozart_BenedictusSitDeus_Score_Choral.ly b/Mozart_BenedictusSitDeus_Score_Choral.ly
index 91498d4922b92703f1272ef4316063231ed5db84..345ffe889c883785e58dd3c8da201f8047e1a329 100644
--- a/Mozart_BenedictusSitDeus_Score_Choral.ly
+++ b/Mozart_BenedictusSitDeus_Score_Choral.ly
@@ -1,5 +1,5 @@
-\version "2.13.1"
-\include "Mozart_BenedictusSitDeus_Settings_VocalScore.ily"
+\version "2.13.34"
+\include "Mozart_BenedictusSitDeus_Settings_ChoralScore.ily"
 \setCreateMIDI ##t
 \setCreatePDF ##t
 
@@ -8,7 +8,6 @@
   scorenumber = \markup{\scoreNumber \ChoralScoreNumber}
 }
 
-\createNoCuesScore #"IAllegro" #'("ChoralScore")
-\createNoCuesScore #"IIAndante" #'("ChoralScore")
-\createNoCuesScore #"IIIAllegro" #'("ChoralScore")
-
+\createScore #"IAllegro" #'("ChoralScore")
+\createScore #"IIAndante" #'("ChoralScore")
+\createScore #"IIIAllegro" #'("ChoralScore")
diff --git a/Mozart_BenedictusSitDeus_Score_Full.ly b/Mozart_BenedictusSitDeus_Score_Full.ly
index 2ff136b8a0b447910ee2629dc95a30f2ce85e50b..85c958598e3b73bd59d529a6730ca3ea79fbee52 100644
--- a/Mozart_BenedictusSitDeus_Score_Full.ly
+++ b/Mozart_BenedictusSitDeus_Score_Full.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_FullScore.ily"
 \setCreateMIDI ##t
 \setCreatePDF ##t
@@ -8,7 +8,8 @@
   scorenumber = \markup{\scoreNumber \FullScoreNumber}
 }
 
+#(set-global-staff-size 12.5)
+
 \createNoCuesScore #"IAllegro" #'("FullScore")
 \createNoCuesScore #"IIAndante" #'("FullScore")
 \createNoCuesScore #"IIIAllegro" #'("FullScore")
-
diff --git a/Mozart_BenedictusSitDeus_Score_Long.ly b/Mozart_BenedictusSitDeus_Score_Long.ly
deleted file mode 100644
index 12190af8a130dd90229d0c13241c6a81ffcbefe9..0000000000000000000000000000000000000000
--- a/Mozart_BenedictusSitDeus_Score_Long.ly
+++ /dev/null
@@ -1,14 +0,0 @@
-\version "2.13.1"
-\include "Mozart_BenedictusSitDeus_Settings_FullScore.ily"
-\setCreateMIDI ##t
-\setCreatePDF ##t
-
-\header {
-  scoretype = \LongScoreTitle
-  scorenumber = \markup{\scoreNumber \LongScoreNumber}
-}
-
-\createNoCuesScore #"IAllegro" #'("LongScore")
-\createNoCuesScore #"IIAndante" #'("LongScore")
-\createNoCuesScore #"IIIAllegro" #'("LongScore")
-
diff --git a/Mozart_BenedictusSitDeus_Score_Original.ly b/Mozart_BenedictusSitDeus_Score_Original.ly
deleted file mode 100644
index 57530562db592d9aa12709e0eef7f1db9fe3afa9..0000000000000000000000000000000000000000
--- a/Mozart_BenedictusSitDeus_Score_Original.ly
+++ /dev/null
@@ -1,14 +0,0 @@
-\version "2.13.1"
-\include "Mozart_BenedictusSitDeus_Settings_FullScore.ily"
-\setCreateMIDI ##t
-\setCreatePDF ##t
-
-\header {
-  scoretype = \OriginalScoreTitle
-  scorenumber = \markup{\scoreNumber \OriginalScoreNumber}
-}
-
-\createNoCuesScore #"IAllegro" #'("OriginalScore")
-\createNoCuesScore #"IIAndante" #'("OriginalScore")
-\createNoCuesScore #"IIIAllegro" #'("OriginalScore")
-
diff --git a/Mozart_BenedictusSitDeus_Score_Particell.ly b/Mozart_BenedictusSitDeus_Score_Particell.ly
deleted file mode 100644
index 80cb68637675866d5797bd4fece60d2cb6e37ebe..0000000000000000000000000000000000000000
--- a/Mozart_BenedictusSitDeus_Score_Particell.ly
+++ /dev/null
@@ -1,14 +0,0 @@
-\version "2.13.1"
-\include "Mozart_BenedictusSitDeus_Settings_FullScore.ily"
-\setCreateMIDI ##t
-\setCreatePDF ##t
-
-\header {
-  scoretype = \ParticellTitle
-  scorenumber = \markup{\scoreNumber \ParticellNumber}
-}
-
-\createNoCuesScore #"IAllegro" #'("Particell")
-\createNoCuesScore #"IIAndante" #'("Particell")
-\createNoCuesScore #"IIIAllegro" #'("Particell")
-
diff --git a/Mozart_BenedictusSitDeus_Score_Vocal.ly b/Mozart_BenedictusSitDeus_Score_Vocal.ly
index e3fb57422d3f7a301941ff40034f31183a01c070..0a6324bcec0668b178db3924e2ef23fec4c0f81c 100644
--- a/Mozart_BenedictusSitDeus_Score_Vocal.ly
+++ b/Mozart_BenedictusSitDeus_Score_Vocal.ly
@@ -1,4 +1,4 @@
-\version "2.13.1"
+\version "2.13.34"
 \include "Mozart_BenedictusSitDeus_Settings_VocalScore.ily"
 \setCreateMIDI ##t
 \setCreatePDF ##t
@@ -8,7 +8,6 @@
   scorenumber = \markup{\scoreNumber \VocalScoreNumber}
 }
 
-\createNoCuesScore #"IAllegro" #'("VocalScore")
-\createNoCuesScore #"IIAndante" #'("VocalScore")
-\createNoCuesScore #"IIIAllegro" #'("VocalScore")
-
+\createScore #"IAllegro" #'("VocalScore")
+\createScore #"IIAndante" #'("VocalScore")
+\createScore #"IIIAllegro" #'("VocalScore")
diff --git a/Mozart_BenedictusSitDeus_Settings.ily b/Mozart_BenedictusSitDeus_Settings.ily
index e4beb5e8e9f1aad4ed5425094ae4fbf347269821..dfe9c8c8a0fbf22688862917c513f4abe3dd9268 100644
--- a/Mozart_BenedictusSitDeus_Settings.ily
+++ b/Mozart_BenedictusSitDeus_Settings.ily
@@ -1,4 +1,4 @@
-#(set-default-paper-size "a4")
+\version "2.13.34"
 #(ly:set-option 'point-and-click #f)
 
 \include "deutsch.ly"
diff --git a/Mozart_BenedictusSitDeus_Settings_ChoralScore.ily b/Mozart_BenedictusSitDeus_Settings_ChoralScore.ily
new file mode 100644
index 0000000000000000000000000000000000000000..83a6bd7aea8f50f25eb7d9795eb6f2b67c51f56b
--- /dev/null
+++ b/Mozart_BenedictusSitDeus_Settings_ChoralScore.ily
@@ -0,0 +1,3 @@
+\version "2.13.34"
+\include "orchestrallily/oly_settings_choralscore.ily"
+\include "Mozart_BenedictusSitDeus_Settings.ily"
diff --git a/Mozart_BenedictusSitDeus_Settings_FullScore.ily b/Mozart_BenedictusSitDeus_Settings_FullScore.ily
index db7e03d30f9d1e77ae0b5a543a4e46074d481131..dbe61dd988b842dcabd264579255ca15ef53446c 100644
--- a/Mozart_BenedictusSitDeus_Settings_FullScore.ily
+++ b/Mozart_BenedictusSitDeus_Settings_FullScore.ily
@@ -1,2 +1,3 @@
+\version "2.13.34"
 \include "orchestrallily/oly_settings_fullscore.ily"
 \include "Mozart_BenedictusSitDeus_Settings.ily"
diff --git a/Mozart_BenedictusSitDeus_Settings_Global.ily b/Mozart_BenedictusSitDeus_Settings_Global.ily
index b68c6b39b7acb55cbcad9f924b683d82f04f2c6a..3ae3756d0d54be78010188bd9dddd57c19cec127 100644
--- a/Mozart_BenedictusSitDeus_Settings_Global.ily
+++ b/Mozart_BenedictusSitDeus_Settings_Global.ily
@@ -1,6 +1,5 @@
-\version "2.13.1"
+\version "2.13.34"
 
-\include "orchestrallily/orchestrallily.ily"
 \include "orchestrallily/oly_settings_names.ily"
 
 scorenumber="EK-0004"
@@ -11,16 +10,16 @@ scorenumber="EK-0004"
 %   subsubtitle = "KV 117"
   composer = "Wolfgang Amadeus Mozart (1756-1791)"
   copyright = \markup \abs-fontsize #9 \column{
-      \line { "2009, Edition Kainhofer, Vienna. Alle Rechte vorbehalten / All rights reserved / Printed in Austria."}
-      \line {"Die Ausgabe darf kopiert und ohne Einschränkungen aufgeführt werden. / May be copied and performed without restriction."}
+      \line { 2009, \with-url #"http://www.edition-kainhofer.com/" {Edition Kainhofer, Vienna,} \concat{\scorenumber.} Alle Rechte vorbehalten / All rights reserved / Printed in Austria. }
+%       \line {"Die Ausgabe darf kopiert und ohne Einschränkungen aufgeführt werden. / May be copied and performed without restriction."}
   }
 }
 
-% Possibly adjust the \orchestralScoreStructure here...
+%% Possibly adjust the \orchestralScoreStructure here...
 
 #(oly:modify_score_structure '("VaGroup" "GrandStaff" ("VaI" "VaII")))
 #(oly:modify_score_structure '("Vas" "SimultaneousMusic" ("Va" "VaGroup")))
-#(oly:modify_score_structure '("Str" "StaffGroup" ("V" "Vas" "VcB")))
+#(oly:modify_score_structure '("Str" "StaffGroup" ("VV" "Vas")))
 
 CorKey = {
   \key c \major
@@ -30,16 +29,23 @@ CorIKey = \CorKey
 CorIIKey = \CorKey
 
 
-CorInstrumentName = \markup{\column{"Corno I,II" "in Fa/F"}}
-CorIInstrumentName = \markup{\column{"Corno I" "in Fa/F"}}
-CorIIInstrumentName = \markup{\column{"Corno II" "in Fa/F"}}
-TbeInstrumentName = \markup{\column{"Trombe I,II" "in Do/C"}}
-TbeIInstrumentName = \markup{\column{"Tromba I" "in Do/C"}}
-TbeIIInstrumentName = \markup{\column{"Tromba II" "in Do/C"}}
-TimInstrumentName = \markup{\column{"Timpani" "in Do/C"}}
+CorInstrumentName = \markup{\center-column{"Corno I,II" "in Fa/F"}}
+CorIInstrumentName = \markup{\center-column{"Corno I" "in Fa/F"}}
+CorIIInstrumentName = \markup{\center-column{"Corno II" "in Fa/F"}}
+TbeInstrumentName = \markup{\center-column{"Tromba I,II" "in Do/C"}}
+TbeIInstrumentName = \markup{\center-column{"Tromba I" "in Do/C"}}
+TbeIIInstrumentName = \markup{\center-column{"Tromba II" "in Do/C"}}
+TimInstrumentName = \markup{\center-column{"Timpani" "in Do/C"}}
 
-SClef = \clef #"soprano"
-AClef = \clef #"alto"
-TClef = \clef #"tenor"
+SClef = \clef #"soprano/treble"
+AClef = \clef #"alto/treble"
+TClef = \clef #"tenor/treble_8"
 SSoloClef = \SClef
 TSoloClef = \TClef
+
+#(oly:modify_score_structure '("Fl" "GrandStaff" ("FlI" "FlII")))
+FlInstrumentName = ""
+FlShortInstrumentName = ""
+
+ContinuoInstrumentName = \markup { \center-column { \line{Violoncello, Basso} \line{ ed Organo}}}
+ContinuoShortInstrumentName = \markup { \center-column { \line{Vc. e B.} \line{Org.}}}
diff --git a/Mozart_BenedictusSitDeus_Settings_Instrument.ily b/Mozart_BenedictusSitDeus_Settings_Instrument.ily
index 1d37c85850379e6a52d90afbedde83258d238c27..4a995a83880b3df7d3a206f088e7ff4229bdd89e 100644
--- a/Mozart_BenedictusSitDeus_Settings_Instrument.ily
+++ b/Mozart_BenedictusSitDeus_Settings_Instrument.ily
@@ -1,2 +1,3 @@
+\version "2.13.34"
 \include "orchestrallily/oly_settings_instrument.ily"
 \include "Mozart_BenedictusSitDeus_Settings.ily"
diff --git a/Mozart_BenedictusSitDeus_Settings_VocalScore.ily b/Mozart_BenedictusSitDeus_Settings_VocalScore.ily
index 72fa9dd34e446db3bedd1ea9bdd2a433fb1cf4d2..7351dd4815fb1641ca747a9e1dcd9682e89930dd 100644
--- a/Mozart_BenedictusSitDeus_Settings_VocalScore.ily
+++ b/Mozart_BenedictusSitDeus_Settings_VocalScore.ily
@@ -1,2 +1,3 @@
+\version "2.13.34"
 \include "orchestrallily/oly_settings_vocalscore.ily"
 \include "Mozart_BenedictusSitDeus_Settings.ily"
diff --git a/Mozart_BenedictusSitDeus_Settings_VocalVoice.ily b/Mozart_BenedictusSitDeus_Settings_VocalVoice.ily
index 79c9e86268f39237360b0444e4836aa05663eb85..55ea810a7ffb990d491994c65f38b96eebf74f02 100644
--- a/Mozart_BenedictusSitDeus_Settings_VocalVoice.ily
+++ b/Mozart_BenedictusSitDeus_Settings_VocalVoice.ily
@@ -1,2 +1,3 @@
+\version "2.13.34"
 \include "orchestrallily/oly_settings_vocalvoice.ily"
 \include "Mozart_BenedictusSitDeus_Settings.ily"
diff --git a/TeX_Mozart_BenedictusSitDeus_Include_About.itex b/TeX_Mozart_BenedictusSitDeus_Include_About.itex
index e163082927bfdf9c940b9fc21855a3a49f391234..2d199ed49c35931b12af910dce94b1915ae9527b 100644
--- a/TeX_Mozart_BenedictusSitDeus_Include_About.itex
+++ b/TeX_Mozart_BenedictusSitDeus_Include_About.itex
@@ -1,9 +1,10 @@
 \addcontentsline{toc}{section}{Vorwort / Preface}
-\chapter*{Vorwort / Preface}
 
-\begin{multicols}{2}
+\begin{multicols}{2}\raggedcolumns
+\prefacesection{Vorwort}
 TODO
 \columnbreak
+\prefacesection{Preface}
 TODO
 \end{multicols}
 \vfill
diff --git a/TeX_Mozart_BenedictusSitDeus_Include_Bio.itex b/TeX_Mozart_BenedictusSitDeus_Include_Bio.itex
new file mode 100644
index 0000000000000000000000000000000000000000..ea4f73baed9dea6d6867d28dba887560b4d62618
--- /dev/null
+++ b/TeX_Mozart_BenedictusSitDeus_Include_Bio.itex
@@ -0,0 +1,14 @@
+\section*{Das Leben von Wolfgang Amadeus Mozart}
+
+\begin{multicols}{2}
+TODO
+\end{multicols}
+
+\section*{The life of Wolfgang Amadeus Mozart}
+
+\begin{multicols}{2}
+TODO
+\end{multicols}
+
+Quellen / Sources:\\[0em]
+TODO
diff --git a/TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex b/TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex
index cd19c65329a6e990b65b9aa0f9efcbeb04c03ce1..9724f297ea2a2b831a45abcf9d1ea88d0492124e 100644
--- a/TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex
+++ b/TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex
@@ -200,6 +200,8 @@ TODO
 \end{enumerate}
 
 
+
+
 \paragraph*{Diverses}
 
 \begin{enumerate}
diff --git a/TeX_Mozart_BenedictusSitDeus_Include_Leben.itex b/TeX_Mozart_BenedictusSitDeus_Include_Leben.itex
deleted file mode 100644
index 64aaf286b99bbf0982644b1e03441926b1a4ab42..0000000000000000000000000000000000000000
--- a/TeX_Mozart_BenedictusSitDeus_Include_Leben.itex
+++ /dev/null
@@ -1,14 +0,0 @@
-\section*{Das Leben von Wolfgang Amadeus Mozart (1756-1791)}
-
-\begin{multicols}{2}
-TODO
-\end{multicols}
-
-\section*{The life of Wolfgang Amadeus Mozart (1756-1791)}
-
-\begin{multicols}{2}
-TODO
-\end{multicols}
-
-Quellen / Sources:\\[0em]
-TODO
diff --git a/TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex b/TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex
index a3731062863ae28694bddd0b38eb5c8515602d02..fb836f041002de062fc55b6c75c27f837cc4eb22 100644
--- a/TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex
+++ b/TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex
@@ -3,10 +3,12 @@
 
 \input{TeX_Mozart_BenedictusSitDeus_Include_ContentsMaterial.itex}
 \cleardoublepage
+\begin{preface}
 \input{TeX_Mozart_BenedictusSitDeus_Include_About.itex}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Text.itex}
 \pagebreak
-\input{TeX_Mozart_BenedictusSitDeus_Include_Leben.itex}
+\input{TeX_Mozart_BenedictusSitDeus_Include_Bio.itex}
+\end{preface}
 
 \mainmatter
 \cleardoublepage
diff --git a/TeX_Mozart_BenedictusSitDeus_Include_Text.itex b/TeX_Mozart_BenedictusSitDeus_Include_Text.itex
index 90d90b709b307bb3e1e625e2d6abe4678f0394b9..7ca0994139851baabe12034f2fccf3afa51156da 100644
--- a/TeX_Mozart_BenedictusSitDeus_Include_Text.itex
+++ b/TeX_Mozart_BenedictusSitDeus_Include_Text.itex
@@ -1,6 +1,6 @@
 \section*{Text des Offertoriums / Text of the Offertory}
 
-\begin{small}
+\begin{lyricstext}
 % \newenvironment{lyricstable}{\begin{supertabular}{p{0.26\textwidth}p{0.33\textwidth}p{0.33\textwidth}}}{\end{supertabular}}
 
 
@@ -29,6 +29,5 @@ date gloriam laudi ejus.    & gebt Ehre seinem Lob.                 & make his p
 Jubilate.                   & Jubelt.                               & Shout with joy. \\[0.5em]
 \end{lyricstable}
 
-
-\end{small}
+\end{lyricstext}
 
diff --git a/TeX_Mozart_BenedictusSitDeus_Include_Todo.itex b/TeX_Mozart_BenedictusSitDeus_Include_Todo.itex
index 92fdae45a54be235d13fef1abcbbcbfc34374dd4..21a48eb0bcfe57c9bc523596a2dc3144a4bc08c5 100644
--- a/TeX_Mozart_BenedictusSitDeus_Include_Todo.itex
+++ b/TeX_Mozart_BenedictusSitDeus_Include_Todo.itex
@@ -1,10 +1,8 @@
 % \todos{
 % \chapter*{Offene Fragen}
 %
-% \section*{Literaturvergleich mit dem Autograph:}
 % \begin{itemize}
 % \item
 %
 % \end{itemize}
-%
 % }
diff --git a/TeX_Mozart_BenedictusSitDeus_Score_Choral.tex b/TeX_Mozart_BenedictusSitDeus_Score_Choral.tex
index 22aff55602af8c301b5f2bed432cc3e99d91c4d9..0b4788e36600a5097036d2101afb54e610c3ca45 100644
--- a/TeX_Mozart_BenedictusSitDeus_Score_Choral.tex
+++ b/TeX_Mozart_BenedictusSitDeus_Score_Choral.tex
@@ -1,5 +1,5 @@
 \documentclass[a4paper,10pt,naustrian,twoside]{report}
-\usepackage{orchestrallily/editionkainhofer}
+\usepackage[choralscore]{editionkainhofer}
 \input{TeX_Mozart_BenedictusSitDeus_Settings.itex}
 
 \hypersetup{
@@ -8,20 +8,16 @@
 
 \scoretype{\ChoralScoreType}
 \scorenumber{\scoreNumber\ChoralScoreNumber}
-\ChoralScoreSettings
 
 \begin{document}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Coverpage.itex}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex}
 
+
 \phantomsection
 \addcontentsline{toc}{section}{\ChoralScoreType}
 \includescore{Score_Choral}
 
-\cleardoublepage
-\backmatter
-\appendix
-\input{TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex}
 
 \input{TeX_Mozart_BenedictusSitDeus_Include_Backpage.itex}
 \end{document}
diff --git a/TeX_Mozart_BenedictusSitDeus_Score_Full.tex b/TeX_Mozart_BenedictusSitDeus_Score_Full.tex
index 08cd9418db5dabc873cea447a29c6b4189f95d0d..99372959485056ea761ad948fdfbbbf551222de8 100644
--- a/TeX_Mozart_BenedictusSitDeus_Score_Full.tex
+++ b/TeX_Mozart_BenedictusSitDeus_Score_Full.tex
@@ -1,5 +1,5 @@
 \documentclass[a4paper,10pt,naustrian,twoside]{report}
-\usepackage{orchestrallily/editionkainhofer}
+\usepackage[fullscore]{editionkainhofer}
 \input{TeX_Mozart_BenedictusSitDeus_Settings.itex}
 
 \hypersetup{
@@ -8,16 +8,17 @@
 
 \scoretype{\FullScoreType}
 \scorenumber{\scoreNumber\FullScoreNumber}
-\FullScoreSettings
 
 \begin{document}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Coverpage.itex}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex}
 
+
 \phantomsection
 \addcontentsline{toc}{section}{\FullScoreType}
 \includescore{Score_Full}
 
+
 \cleardoublepage
 \backmatter
 \appendix
diff --git a/TeX_Mozart_BenedictusSitDeus_Score_Instruments.tex b/TeX_Mozart_BenedictusSitDeus_Score_Instruments.tex
index 7fe7aba8274e2f89d1fce7d22f1358c0376e8cea..d0c720b9493396002a3dd9dbb0427cfb31a9ec6b 100644
--- a/TeX_Mozart_BenedictusSitDeus_Score_Instruments.tex
+++ b/TeX_Mozart_BenedictusSitDeus_Score_Instruments.tex
@@ -1,5 +1,5 @@
 \documentclass[a4paper,10pt,naustrian,twoside]{report}
-\usepackage{orchestrallily/editionkainhofer}
+\usepackage[instrumentalparts]{editionkainhofer}
 \input{TeX_Mozart_BenedictusSitDeus_Settings.itex}
 
 \hypersetup{
@@ -8,12 +8,13 @@
 
 \scoretype{\InstrumentalPartsType}
 \scorenumber{\scoreNumber\InstrumentalPartsNumber}
-\InstrumentalPartsSettings
 
 \begin{document}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Coverpage.itex}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex}
 
+
+
 \phantomsection
 \addcontentsline{toc}{section}{\FlIName}
 \includescore{Instrument_FlI}
@@ -67,10 +68,6 @@
 \includescore{Instrument_VcB}
 
 
-\cleardoublepage
-\backmatter
-\appendix
-\input{TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex}
 
 \input{TeX_Mozart_BenedictusSitDeus_Include_Backpage.itex}
 \end{document}
diff --git a/TeX_Mozart_BenedictusSitDeus_Score_Long.tex b/TeX_Mozart_BenedictusSitDeus_Score_Long.tex
deleted file mode 100644
index 02ca94012adaec73aff90cdfd74777bb654765df..0000000000000000000000000000000000000000
--- a/TeX_Mozart_BenedictusSitDeus_Score_Long.tex
+++ /dev/null
@@ -1,27 +0,0 @@
-\documentclass[a4paper,10pt,naustrian,twoside]{report}
-\usepackage{orchestrallily/editionkainhofer}
-\input{TeX_Mozart_BenedictusSitDeus_Settings.itex}
-
-\hypersetup{
-    pdftitle={\scoreTitle, \LongScoreType},
-}
-
-\scoretype{\LongScoreType}
-\scorenumber{\scoreNumber\LongScoreNumber}
-\LongScoreSettings
-
-\begin{document}
-\input{TeX_Mozart_BenedictusSitDeus_Include_Coverpage.itex}
-\input{TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex}
-
-\phantomsection
-\addcontentsline{toc}{section}{\LongScoreType}
-\includescore{Score_Long}
-
-\cleardoublepage
-\backmatter
-\appendix
-\input{TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex}
-
-\input{TeX_Mozart_BenedictusSitDeus_Include_Backpage.itex}
-\end{document}
diff --git a/TeX_Mozart_BenedictusSitDeus_Score_Original.tex b/TeX_Mozart_BenedictusSitDeus_Score_Original.tex
deleted file mode 100644
index 3b9fe3acfb035f9e3c9d6dc7400f8062e7ae56b0..0000000000000000000000000000000000000000
--- a/TeX_Mozart_BenedictusSitDeus_Score_Original.tex
+++ /dev/null
@@ -1,27 +0,0 @@
-\documentclass[a4paper,10pt,naustrian,twoside]{report}
-\usepackage{orchestrallily/editionkainhofer}
-\input{TeX_Mozart_BenedictusSitDeus_Settings.itex}
-
-\hypersetup{
-    pdftitle={\scoreTitle, \OriginalScoreType},
-}
-
-\scoretype{\OriginalScoreType}
-\scorenumber{\scoreNumber\OriginalScoreNumber}
-\OriginalScoreSettings
-
-\begin{document}
-\input{TeX_Mozart_BenedictusSitDeus_Include_Coverpage.itex}
-\input{TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex}
-
-\phantomsection
-\addcontentsline{toc}{section}{\OriginalScoreType}
-\includescore{Score_Original}
-
-\cleardoublepage
-\backmatter
-\appendix
-\input{TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex}
-
-\input{TeX_Mozart_BenedictusSitDeus_Include_Backpage.itex}
-\end{document}
diff --git a/TeX_Mozart_BenedictusSitDeus_Score_Particell.tex b/TeX_Mozart_BenedictusSitDeus_Score_Particell.tex
deleted file mode 100644
index f8e8bf3c04b58a5e7b73cf50c9274d0b3fb58b3c..0000000000000000000000000000000000000000
--- a/TeX_Mozart_BenedictusSitDeus_Score_Particell.tex
+++ /dev/null
@@ -1,27 +0,0 @@
-\documentclass[a4paper,10pt,naustrian,twoside]{report}
-\usepackage{orchestrallily/editionkainhofer}
-\input{TeX_Mozart_BenedictusSitDeus_Settings.itex}
-
-\hypersetup{
-    pdftitle={\scoreTitle, \ParticellScoreType},
-}
-
-\scoretype{\ParticellScoreType}
-\scorenumber{\scoreNumber\ParticellScoreNumber}
-\ParticellScoreSettings
-
-\begin{document}
-\input{TeX_Mozart_BenedictusSitDeus_Include_Coverpage.itex}
-\input{TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex}
-
-\phantomsection
-\addcontentsline{toc}{section}{\ParticellScoreType}
-\includescore{Score_Particell}
-
-\cleardoublepage
-\backmatter
-\appendix
-\input{TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex}
-
-\input{TeX_Mozart_BenedictusSitDeus_Include_Backpage.itex}
-\end{document}
diff --git a/TeX_Mozart_BenedictusSitDeus_Score_Vocal.tex b/TeX_Mozart_BenedictusSitDeus_Score_Vocal.tex
index c2580ae78e7dd33971418f7e482a903fef1cd74b..25d60baf47a715928a89f4b20a48957ce1d724ef 100644
--- a/TeX_Mozart_BenedictusSitDeus_Score_Vocal.tex
+++ b/TeX_Mozart_BenedictusSitDeus_Score_Vocal.tex
@@ -1,5 +1,5 @@
 \documentclass[a4paper,10pt,naustrian,twoside]{report}
-\usepackage{orchestrallily/editionkainhofer}
+\usepackage[vocalscore]{editionkainhofer}
 \input{TeX_Mozart_BenedictusSitDeus_Settings.itex}
 
 \hypersetup{
@@ -8,20 +8,16 @@
 
 \scoretype{\VocalScoreType}
 \scorenumber{\scoreNumber\VocalScoreNumber}
-\VocalScoreSettings
 
 \begin{document}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Coverpage.itex}
 \input{TeX_Mozart_BenedictusSitDeus_Include_Preface_Long.itex}
 
+
 \phantomsection
 \addcontentsline{toc}{section}{\VocalScoreType}
 \includescore{Score_Vocal}
 
-\cleardoublepage
-\backmatter
-\appendix
-\input{TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex}
 
 \input{TeX_Mozart_BenedictusSitDeus_Include_Backpage.itex}
 \end{document}
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_A.pdf b/out/Mozart_BenedictusSitDeus_Instrument_A.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..de84ebb2a91a0767dcbd8aea83ae81f78b8207dc
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_A.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_B.pdf b/out/Mozart_BenedictusSitDeus_Instrument_B.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7fd02270c3d367435f602cb55cc6bee106471fcf
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_B.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_Continuo.pdf b/out/Mozart_BenedictusSitDeus_Instrument_Continuo.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..88ac59254f3d00400e86b8e17ddbea54efb37ea6
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_Continuo.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_CorI.pdf b/out/Mozart_BenedictusSitDeus_Instrument_CorI.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2bcbee6e65f8df3cfcde7f66fb909a7db5ee1585
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_CorI.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_CorII.pdf b/out/Mozart_BenedictusSitDeus_Instrument_CorII.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..21cc4a8111c47fddbb156f413e2f918dc3c92db7
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_CorII.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_FlI.pdf b/out/Mozart_BenedictusSitDeus_Instrument_FlI.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f7dfd0d10cf1f44f8f2e54de287bf83ce794e6f5
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_FlI.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_FlII.pdf b/out/Mozart_BenedictusSitDeus_Instrument_FlII.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ba791b83386fa032ae3b172fda54b2eceff69e83
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_FlII.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_S.pdf b/out/Mozart_BenedictusSitDeus_Instrument_S.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d4d87529e6533e4d3913720b875cda2a058b60ae
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_S.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_SSolo.pdf b/out/Mozart_BenedictusSitDeus_Instrument_SSolo.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e0c69415414617f2ff5e5fed109428c501e93cbb
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_SSolo.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_T.pdf b/out/Mozart_BenedictusSitDeus_Instrument_T.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7541738a831401bba894476d01b28e1b411c2128
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_T.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_TbeI.pdf b/out/Mozart_BenedictusSitDeus_Instrument_TbeI.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c0b1f5456be2af2330b6e070cfc93090d1de33fa
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_TbeI.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_TbeII.pdf b/out/Mozart_BenedictusSitDeus_Instrument_TbeII.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ea6d44e6289f7066de21f6883e0e2064e8f8dfea
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_TbeII.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_Tim.pdf b/out/Mozart_BenedictusSitDeus_Instrument_Tim.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..581ff812d34cad3e6d6acfd3ca65cb3fcba08a13
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_Tim.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_VI.pdf b/out/Mozart_BenedictusSitDeus_Instrument_VI.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..aa6f7158c4025132061c6d0bfbe6e24ad3b4ebff
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_VI.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_VII.pdf b/out/Mozart_BenedictusSitDeus_Instrument_VII.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e6ebb9a0fb14f99824b331e7350bddd95e35713c
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_VII.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_Va.pdf b/out/Mozart_BenedictusSitDeus_Instrument_Va.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..33adb1300a860d8312799a5590123aee1490264c
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_Va.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Instrument_VcB.pdf b/out/Mozart_BenedictusSitDeus_Instrument_VcB.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f6d63bee7091be1a8e5733c1d9fc41e1fc674381
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Instrument_VcB.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Choral-1.midi b/out/Mozart_BenedictusSitDeus_Score_Choral-1.midi
new file mode 100644
index 0000000000000000000000000000000000000000..b8d41a3a1b0d8b75a0cb894f653a4d19a219ad55
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Choral-1.midi differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Choral.midi b/out/Mozart_BenedictusSitDeus_Score_Choral.midi
new file mode 100644
index 0000000000000000000000000000000000000000..cc703c36feb4ce0bbf4b51c5f202cdbf48b9219c
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Choral.midi differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Choral.pdf b/out/Mozart_BenedictusSitDeus_Score_Choral.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d2aafc15b07527272e2a533cf5bb394a70a246dd
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Choral.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Choral.toc b/out/Mozart_BenedictusSitDeus_Score_Choral.toc
new file mode 100644
index 0000000000000000000000000000000000000000..117a78f83f05eb9b1a5cdc66189030c85c5b16de
--- /dev/null
+++ b/out/Mozart_BenedictusSitDeus_Score_Choral.toc
@@ -0,0 +1,3 @@
+1, section, 1, {1. Coro}, toc63,
+3, section, 1, {2. Aria tacet (Andante, 96 Takte)}, toc64,
+3, section, 1, {3. Coro}, toc65
\ No newline at end of file
diff --git a/out/Mozart_BenedictusSitDeus_Score_Full-1.midi b/out/Mozart_BenedictusSitDeus_Score_Full-1.midi
new file mode 100644
index 0000000000000000000000000000000000000000..ea0aed6ad9e02e08fa6b8a75a8e437c085c65634
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Full-1.midi differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Full-2.midi b/out/Mozart_BenedictusSitDeus_Score_Full-2.midi
new file mode 100644
index 0000000000000000000000000000000000000000..4ca243c6d1e59b9fe185b90a9256195c4d087d5d
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Full-2.midi differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Full.midi b/out/Mozart_BenedictusSitDeus_Score_Full.midi
new file mode 100644
index 0000000000000000000000000000000000000000..d2c1093419d863171a35cdfda898ee41007cc520
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Full.midi differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Full.pdf b/out/Mozart_BenedictusSitDeus_Score_Full.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..06f200cc6e9e0f277780fb141dc57bf09a08432a
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Full.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Full.toc b/out/Mozart_BenedictusSitDeus_Score_Full.toc
new file mode 100644
index 0000000000000000000000000000000000000000..8ed019de5d01a11f0f41f7111eec245e820c83af
--- /dev/null
+++ b/out/Mozart_BenedictusSitDeus_Score_Full.toc
@@ -0,0 +1,3 @@
+1, section, 1, {1. Coro}, toc63,
+6, section, 1, {2. Aria}, toc64,
+13, section, 1, {3. Coro}, toc65
\ No newline at end of file
diff --git a/out/Mozart_BenedictusSitDeus_Score_Vocal-1.midi b/out/Mozart_BenedictusSitDeus_Score_Vocal-1.midi
new file mode 100644
index 0000000000000000000000000000000000000000..b8d41a3a1b0d8b75a0cb894f653a4d19a219ad55
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Vocal-1.midi differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Vocal.midi b/out/Mozart_BenedictusSitDeus_Score_Vocal.midi
new file mode 100644
index 0000000000000000000000000000000000000000..cc703c36feb4ce0bbf4b51c5f202cdbf48b9219c
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Vocal.midi differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Vocal.pdf b/out/Mozart_BenedictusSitDeus_Score_Vocal.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9c213e610f72d46cb4804c2a422a15a9ae6d2537
Binary files /dev/null and b/out/Mozart_BenedictusSitDeus_Score_Vocal.pdf differ
diff --git a/out/Mozart_BenedictusSitDeus_Score_Vocal.toc b/out/Mozart_BenedictusSitDeus_Score_Vocal.toc
new file mode 100644
index 0000000000000000000000000000000000000000..dcb2bcb1cbc6c6bdcb59e42f20239e0af344f509
--- /dev/null
+++ b/out/Mozart_BenedictusSitDeus_Score_Vocal.toc
@@ -0,0 +1,3 @@
+1, section, 1, {1. Coro}, toc63,
+4, section, 1, {2. Aria tacet (Andante, 96 Takte)}, toc64,
+4, section, 1, {3. Coro}, toc65
\ No newline at end of file
diff --git a/out/TeX_Mozart_BenedictusSitDeus_Score_Choral.pdf b/out/TeX_Mozart_BenedictusSitDeus_Score_Choral.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e5857303ad05c93e80614ba8961edbe6a995d28c
Binary files /dev/null and b/out/TeX_Mozart_BenedictusSitDeus_Score_Choral.pdf differ
diff --git a/out/TeX_Mozart_BenedictusSitDeus_Score_Full.pdf b/out/TeX_Mozart_BenedictusSitDeus_Score_Full.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d74e9b6b2098c234a29010d0cf86edc93e45c288
Binary files /dev/null and b/out/TeX_Mozart_BenedictusSitDeus_Score_Full.pdf differ
diff --git a/out/TeX_Mozart_BenedictusSitDeus_Score_Instruments.pdf b/out/TeX_Mozart_BenedictusSitDeus_Score_Instruments.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b6e1c422f304589c7cc0596bb44756b87d3191b7
Binary files /dev/null and b/out/TeX_Mozart_BenedictusSitDeus_Score_Instruments.pdf differ
diff --git a/out/TeX_Mozart_BenedictusSitDeus_Score_Vocal.pdf b/out/TeX_Mozart_BenedictusSitDeus_Score_Vocal.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..58dd0004b6c4e47182379b07132719b8c6c11ac8
Binary files /dev/null and b/out/TeX_Mozart_BenedictusSitDeus_Score_Vocal.pdf differ
diff --git a/patches/Mozart_BenedictusSitDeus_Instrument_Va.ly.patch b/patches/Mozart_BenedictusSitDeus_Instrument_Va.ly.patch
new file mode 100644
index 0000000000000000000000000000000000000000..484e98f6a627d7098c97f99529638f3a5035bfe6
--- /dev/null
+++ b/patches/Mozart_BenedictusSitDeus_Instrument_Va.ly.patch
@@ -0,0 +1,19 @@
+--- Mozart_BenedictusSitDeus_Instrument_Va.ly.new	2010-09-28 02:19:20.000000000 +0200
++++ Mozart_BenedictusSitDeus_Instrument_Va.ly	2010-09-28 02:14:57.000000000 +0200
+@@ -1,12 +1,13 @@
+ \version "2.13.34"
+ \include "Mozart_BenedictusSitDeus_Settings_Instrument.ily"
++% Vas is SimultaneousMusic[ Va, StaffGroup[ VaI, VaII ] ]!
+ 
+ \header {
+   instrument = \VaInstrumentName
+   scorenumber = \markup{\scoreNumber \VaNumber}
+ }
+ 
+-\createScore #"IAllegro" #'("Va")
+-\createScore #"IIAndante" #'("Va")
+-\createScore #"IIIAllegro" #'("Va")
++\createScore #"IAllegro" #'("Vas")
++\createScore #"IIAndante" #'("Vas")
++\createScore #"IIIAllegro" #'("Vas")
+ 
diff --git a/patches/Mozart_BenedictusSitDeus_Instrument_VcB.ly.patch b/patches/Mozart_BenedictusSitDeus_Instrument_VcB.ly.patch
new file mode 100644
index 0000000000000000000000000000000000000000..7eef935bab4d495d0eaf42e15ea385c976fd753d
--- /dev/null
+++ b/patches/Mozart_BenedictusSitDeus_Instrument_VcB.ly.patch
@@ -0,0 +1,12 @@
+--- Mozart_BenedictusSitDeus_Instrument_VcB.ly.new	2010-09-28 02:19:20.000000000 +0200
++++ Mozart_BenedictusSitDeus_Instrument_VcB.ly	2010-09-28 02:15:11.000000000 +0200
+@@ -5,6 +5,9 @@
+   instrument = \VcBInstrumentName
+   scorenumber = \markup{\scoreNumber \VcBNumber}
+ }
++IAllegroVcBMusic = \IAllegroBCMusic
++IIAndanteVcBMusic = \IIAndanteBCMusic
++IIIAllegroVcBMusic = \IIIAllegroBCMusic
+ 
+ \createScore #"IAllegro" #'("VcB")
+ \createScore #"IIAndante" #'("VcB")
diff --git a/patches/Mozart_BenedictusSitDeus_Music_01_Allegro.ily.patch b/patches/Mozart_BenedictusSitDeus_Music_01_Allegro.ily.patch
new file mode 100644
index 0000000000000000000000000000000000000000..3d76aee418eb1ba01adccefb5c1495ac554fcc50
--- /dev/null
+++ b/patches/Mozart_BenedictusSitDeus_Music_01_Allegro.ily.patch
@@ -0,0 +1,800 @@
+--- Mozart_BenedictusSitDeus_Music_01_Allegro.ily.new	2010-09-28 02:19:20.000000000 +0200
++++ Mozart_BenedictusSitDeus_Music_01_Allegro.ily	2010-09-28 02:15:54.000000000 +0200
+@@ -2,7 +2,7 @@
+ 
+ IAllegroPieceName = "1. Coro"
+ IAllegroPieceNameTacet = "1. Coro tacet (Allegro, 45 Takte)"
+-IAllegroTempo = "TODO"
++IAllegroTempo = "Allegro."
+ 
+ IAllegroKey = \key c \major
+ IAllegroTimeSignature = \time 4/4
+@@ -12,142 +12,696 @@
+ }
+ 
+ 
+-IAllegroFlIMusic = \relative c' {
+-  s8
+-  % TODO
++IAllegroCueLabels = \notemode {
++  \IAllegroSettings
+ }
+-\addQuote "IAllegroFlIMusic" { \IAllegroFlIMusic }
+ 
+-
+-IAllegroFlIIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IAllegroFlIIMusic" { \IAllegroFlIIMusic }
+-
+-
+-IAllegroCorIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IAllegroCorIMusic" { \IAllegroCorIMusic }
+-
+-
+-IAllegroCorIIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IAllegroCorIIMusic" { \IAllegroCorIIMusic }
+-
+-
+-IAllegroTbeIMusic = \relative c' {
+-  s8
+-  % TODO
++IAllegroTbeIMusic = \relative c'' {
++  c4 r8 d8 c4 r | % 2
++  r2 c4 r | % 3
++  R1 | % 4
++  d8[ c] r4 r2 | % 5
++  R1 | % 6
++  d4 r r2 | % 7
++  \partcombineApartOnce d4 r4 r2 | % 8
++  r2 c4. c8 | % 9
++  c4 c8[ c8] c4 r4 | \barNumberCheck #10
++  R1*5 | % 15
++  \partcombineApart d4 d8[ d] d4 d | % 16
++  \partcombineAutomatic d8 d4 d8 d4 d | % 17
++  r8 d4 d8 e4 e | % 18
++  e r r8 e16[ e] e8[ e] | % 19
++  e4 r r2 | \barNumberCheck #20
++  e8 e4 e8 e4 e | % 21
++  r8 e4 e8 e4 e | % 22
++  \partcombineApart d8 d4 d8 d4 d | % 23
++  r8 d4 d8 \partcombineAutomatic d4 d | % 24
++  c8 c4 c8 c4 c | % 25
++  r8 c16[ c] c8[ c] c4 c | % 26
++  r2 d4 e | % 27
++  d4 \partcombineChords c8[ e] \partcombineAutomatic d4 r | % 28
++  R1*3 | % 31
++  \partcombineApartOnce g,4 r r2 | % 32
++  R1 | % 33
++  r2 e'8[ e16 e] e8[ e] | % 34
++  d4 r r2 | % 35
++  R1 | % 36
++  r2 r4 d | % 37
++  c r r2 | % 38
++  r2 d4 r | % 39
++  d4 e d e~ | \barNumberCheck #40
++  e d c r | % 41
++  R1*2 | % 43
++  r2 d4 e | % 44
++  d2 c4 r \bar"|."
+ }
+ \addQuote "IAllegroTbeIMusic" { \IAllegroTbeIMusic }
+ 
+-
+ IAllegroTbeIIMusic = \relative c' {
+-  s8
+-  % TODO
++  e4 r8 g8 e4 r | % 2
++  r2 e4 r | % 3
++  R1 | % 4
++  g8[ e] r4 r2 | % 5
++  R1 | % 6
++  g4 r r2 | % 7
++  d'4 r r2 | % 8
++  r2 c,4. c8 | % 9
++  c4 c8[ c] c4 r | \barNumberCheck #10
++  R1*5 | % 15
++  d'4 d8[ d] d4 d | % 16
++  g,8 g4 g8 g4 g | % 17
++  r8 g4 g8 e4 e | % 18
++  e r r8 e16[ e] e8[ e] | % 19
++  e4 r r2 | \barNumberCheck #20
++  e8 e4 e8 e4 e | % 21
++  r8 e4 e8 e4 e | % 22
++  d'8 d4 d8 d4 d | % 23
++  r8 d4 d8 g,4 g | % 24
++  c,8 c4 c8 c4 c | % 25
++  r8 c16[ c] c8[ c] c4 c | % 26
++  r2 g'4 c | % 27
++  g4 e8[ c] g'4 r | % 28
++  R1*3 | % 31
++  g4 r4 r2 | % 32
++  R1 | % 33
++  r2 c8[ c16 c] c8[ c] | % 34
++  g4 r r2 | % 35
++  R1 | % 36
++  r2 r4 g | % 37
++  c, r r2 | % 38
++  r2 g'4 r4 | % 39
++  g c g c~ | \barNumberCheck #40
++  c g e r4 | % 41
++  R1*2 | % 43
++  r2 g4 c~ | % 44
++  c g e r \bar"|."
+ }
+ \addQuote "IAllegroTbeIIMusic" { \IAllegroTbeIIMusic }
+ 
+-
+-IAllegroTimMusic = \relative c' {
+-  s8
+-  % TODO
++IAllegroTimMusic = \relative c {
++  c4 r8 g8 c4 r | % 2
++  r2 c4 r | % 3
++  R1 | % 4
++  g8[ c] r4 r2 | % 5
++  R1 | % 6
++  g4 r r2 | % 7
++  R1*2 | % 9
++  r2 c4 r | \barNumberCheck #10
++  R1*6 | % 16
++  g4 r r2 | % 17
++  R1*7 | % 24
++  c8[ c16 c] c8[ c] c4 c | % 25
++  R1*2 | % 27
++  r4 c g r | % 28
++  R1*3 | % 31
++  g4 r r2 | % 32
++  R1*2 | % 34
++  g4 r r2 | % 35
++  R1*4 | % 39
++  r2 g4 c | \barNumberCheck #40
++  g4 g8[ g] c4 r | % 41
++  R1*2 | % 43
++  r2 g4 g8[ g] | % 44
++  g4 g c r \bar"|."
+ }
+ \addQuote "IAllegroTimMusic" { \IAllegroTimMusic }
+ 
+-
+-IAllegroVIMusic = \relative c' {
+-  s8
+-  % TODO
++IAllegroVIMusic = \relative c'' {
++  c8[ c, e g] c[ e16 f] g8[ c,] | % 2
++  d16[( f) e( g)] f8.[\trill e32 f] e8[ g16( e)] c4~ | % 3
++  c8[ h] d4. c8 e8[ d16 c] | % 4
++  <h d, g,>8[ <c d, g,>] r4 e8[ e] e[ d16 e] | % 5
++  c8[ c c c] d8[ d] d[ c16 d] | % 6
++  h16[ h' g h] h,[ h' g h] h,[ h' g h] h,[ h' g h] | % 7
++  a,4 r r g'~ | % 8
++  g8[ f e d] c4 d8[ e] | % 9
++  f16[ a c, a'] c,[ a' c, a'] g[ c, d e] f[ g a h] | \barNumberCheck #10
++  c8 c,4( d8) e4 e | % 11
++  r8 d4( e8) f4 f | % 12
++  r e8.[ fis32 g] a8[( fis]) d4 | % 13
++  r8 d[ d d] g[ g g g] | % 14
++  fis[ fis fis fis] g[ g g g] | % 15
++  fis[ fis g g] g[ g fis fis] | % 16
++  g16[ g, h g] d'[h g'd] h'[ g d g] h,[ d g, h] | % 17
++  d,[ g h g] d'[ h g' d] h'[ gis d gis] h,[ d gis, h] | % 18
++  e,4 r r8 gis'8[ a h] | % 19
++  e,4. g8 a[ a a a] | \barNumberCheck #20
++  gis16[ e, gis e] h'[gis e' h] gis'[e h' gis] e[ gis h, e] | % 21
++  gis,[ gis' h a] gis[ f e d] c[ h a gis] a[ g fis e] | % 22
++  fis[ d a'fis] d'[ a fis' d] a'[ fis d fis] a,[ d fis, a] | % 23
++  \once \override Stem #'direction = #UP
++  d,[ fis' a g] fis[ e d c] h[ a g fis] g[ f e d] | % 24
++  e[ c g' e] c'[g e' c] g'[ e c e] g,[ c e, g] | % 25
++  \once \override Stem #'direction = #UP
++  c,[
++  \once \override Stem #'direction = #DOWN
++  e' g f] e[ d c b] a[ g f e] f[ f a c] | % 26
++  f[ g a f] d[ e f d] h[ c d h] c[ d e c] | % 27
++  f8[ d'] c4 h r | % 28
++  r2 a8[ a] a8[ g16 a] | % 29
++  f8[ f f f] f[ f] f[ g16 f] | \barNumberCheck #30
++  e8[ f] g4. f8 e16[ c' e, c'] | % 31
++  d,4 g4. f8[ e d] | % 32
++  c[ h a g] f[ g16 a] h[ c d e] | % 33
++  f[ f g f] e[ c' e, c'] e,[ c' e, c'] e,[ c' e, c'] | % 34
++  d,[ g, a h] c[ d e fis] g8 d4( e8) | % 35
++  f4 f r8 e4( f8) | % 36
++  g4 g r h,8[ \times 2/3 { d16( c h)]} | % 37
++  g'8[( e]) c4 r8 c8[ c c] | % 38
++  f[ f f f] f[ f f f] | % 39
++  f[ f e e] d[ d e e] | \barNumberCheck #40
++  e16[\staccato e( d c)] d4:16 c4 r4 | % 41
++  r8 c8[ d e] f4. e8 | % 42
++  d[ d g g] g[ g g g~] | % 43
++  g[ f a a,] f'[ f e e] | % 44
++  d[ c' d, h'] c8[ \once \override Stem #'direction = #UP c,,] r4 \bar"|."
+ }
+ \addQuote "IAllegroVIMusic" { \IAllegroVIMusic }
+ 
+-
+-IAllegroVIIMusic = \relative c' {
+-  s8
+-  % TODO
++IAllegroVIIMusic = \relative c'' {
++  c8[ c, e g] c c,4 g'8 | % 2
++  a16[( d) c( e)] d8.[\trill c32 d] c4 r8 e | % 3
++  f4. d8 g g,4 a8 | % 4
++  g16[ f e8] r4 g8[ g] g[ f16 g] | % 5
++  e8[ e e e] fis[ fis] fis[ e16 fis] | % 6
++  g16[ g' d g] g,[ g' d g] g,[ g' e g] g,[ g' e g] | % 7
++  fis,4 d'4. c8[ h a] | % 8
++  g[ a16 h] c4. h8 a16[ h c8] | % 9
++  c16[ f a, f'] a,[ f' a, f'] e[ c h c] d[ e f d] | \barNumberCheck #10
++  e4 r4 r8 g,4( a8) | % 11
++  h4 h r8 a4( h8) | % 12
++  c4 c r a8.[ h32 c] | % 13
++  d8[( h]) g4 r2 | % 14
++  r8 a8[ a a] a[ a a a] | % 15
++  a[ a h h] a[ a a a] | % 16
++  g16[ g h g] d'[ h g' d] h'[ g d g] h,[ d g,h] | % 17
++  d,[ g h g] d'[ h g' d] h'[ gis d gis] h,[ d gis, h] | % 18
++  e,8[ h' c d] e4 d | % 19
++  c8[ d] e4. d16[ c] d8[ d] | \barNumberCheck #20
++  e16[ e, gis e] h'[ gis e' h] gis'[ e h' gis] e[ gis h, e] | % 21
++  gis,[ gis' h a] gis[ f e d] c[ h a gis] a[ g fis e] | % 22
++  fis[ d a'fis] d'[ a fis' d] a'[ fis d fis] a,[ d fis, a] | % 23
++  \once \override Stem #'direction = #UP
++  d,[ fis' a g] fis[ e d c] h[ a g fis] g[ f e d] | % 24
++  e[ c g' e] c'[g e' c] g'[ e c e] g,[ c e, g] | % 25
++  \once \override Stem #'direction = #UP
++  c,[
++  \once \override Stem #'direction = #DOWN
++  e' g f] e[ d c b] a[ g f e] f[ f a c] | % 26
++  f[ g a f] d[ e f d] h[ c d h] c[ d e c] | % 27
++  f8[ f] e4 d r | % 28
++  r2 c8[ c] c[ h16 c] | % 29
++  d8[ d d d] d[ d] d[ e16 d] | \barNumberCheck #30
++  c8[ d] e4. d8 c16[ e c e] | % 31
++  h4 r r c~ | % 32
++  c8[ d16 e] f8[ c,] d4 g~ | % 33
++  g8 g4 c16[ e] c[ a' c, a'] c,[ a' c, a'] | % 34
++  h,[ g fis g] a[ h c a] h4 r | % 35
++  r8 a4( h8) c4 c | % 36
++  r8 h4( c8) d4 d | % 37
++  r g,8.[ a32 h] c8[( a]) f4 | % 38
++  r8 g[ g g] d'[ d d d] | % 39
++  d[ d c c] h[ h c c] | \barNumberCheck #40
++  c[ c h h] c4 r4 | % 41
++  r2 r8 a8[ h c] | % 42
++  d4 c8[ h] r8 e[ e d] | % 43
++  c[ c f f] d[ d c c] | % 44
++  c[ d h d] \once \override Stem #'direction = #DOWN e[ c,] r4 \bar"|."
+ }
+ \addQuote "IAllegroVIIMusic" { \IAllegroVIIMusic }
+ 
+-
+-IAllegroVaMusic = \relative c' {
+-  s8
+-  % TODO
++IAllegroVaMusic = \relative c'' {
++  c8[ c, e g] c[ g] r c, | % 2
++  c[ g'a g] g4 r | % 3
++  r8 d f4. e8 g8[ f16 e] | % 4
++  d8[ c] r4 r2 | % 5
++  c8[ c] c[ h16 c] a8[ a a a] | % 6
++  d8[ d d d] e[ e e e] | % 7
++  a,4 r r2 | % 8
++  c4. h8 a[ g f g] | % 9
++  a[ f' f f] c4 r | \barNumberCheck #10
++  R1*2 | % 12
++  r2 r8 d4 c8 | % 13
++  h4 h r8 c8[ c c] | % 14
++  d[ d d d] e[ e e e] | % 15
++  d[ d d d] d[ d d d] | % 16
++  d[ d d d] d[ d d d] | % 17
++  d[ d d d] d[ d d d] | % 18
++  d[ gis, a h] c4 h | % 19
++  a8[ h c h] a[ a' a a] | \barNumberCheck #20
++  h[ h, h h] h[ h h h] | % 21
++  h[ h h h] c[ c c c] | % 22
++  a[ a a a] a[ a a a] | % 23
++  a[ a a a] h[ h h h] | % 24
++  g[ g g g] g[ g g g] | % 25
++  g[ g g g] a[ a a a] | % 26
++  a[ a a a] d16[ e f d] c8[ c] | % 27
++  d[ g] g4 g4 r4 | % 28
++  e8[ e] e[ d16 e] c8[ c c c] | % 29
++  h[ d] d[ c16 d] h8[ h h h] | \barNumberCheck #30
++  c8[ c c c] a[ a' a a] | % 31
++  g4 r c,4. h8 | % 32
++  a8[ g] f[ g16 a] h8[ c d c] | % 33
++  h8[ c16 d] g,8[ g] a[ a a a] | % 34
++  g4 r r2 | % 35
++  R1*2 | % 37
++  r8 c4( h8) a4 a | % 38
++  r8 h4 h8 g8[ g g g] | % 39
++  g[ g g g] g[ g g g] | \barNumberCheck #40
++  g[ g g g] g4 r4 | % 41
++  R1 | % 42
++  r8 g8[ a h] c4. h8 | % 43
++  a8[ a d d] g[ g g g] | % 44
++  g[ g g g] g[ c,] r4 \bar"|."
+ }
+ \addQuote "IAllegroVaMusic" { \IAllegroVaMusic }
+ 
++IAllegroSMusic = \relative c'' {
++  c4. h8 c16[( h]) c8 r c | % 2
++  d e f4 e8 g, c4~ | % 3
++  c8 h d4. c8 e8 d16[( c]) | % 4
++  h8 c r4 e8 e e d16[( e]) | % 5
++  c4 c d8 d d c16[( d]) | % 6
++  h8 h h h h4. h8 | % 7
++  a4 d4. c8 h a | % 8
++  g a16 h c4. h8 a16[( h]) c8 | % 9
++  c4. c8 c4 r | \barNumberCheck #10
++  r2 r8 g4 a8 | % 11
++  h4 h r8 a4 h8 | % 12
++  c4 c r a | % 13
++  d8[( h]) g4 r2 | % 14
++  r8 a8 a a a4 a8 a | % 15
++  a4( h a2) | % 16
++  g8 h4 h8 h4 h | % 17
++  r8 h4 h8 h4 h4 | % 18
++  r8 h8 c d e4 d | % 19
++  c8[( d] e4.) d16[( c]) d4 | \barNumberCheck #20
++  e8 e4 e8 e4 e | % 21
++  r8 e8 e d c8.[( h16]) a4 | % 22
++  r8 d4 d8 d4 d | % 23
++  r8 d8 d c h8. a16 g4 | % 24
++  r8 c4 c8 c4 c | % 25
++  r8 c8 c b a8. g16 f4 | % 26
++  f'4 d h c8 c | % 27
++  f8 f e4 d r | % 28
++  r2 c8 c c h16[( c]) | % 29
++  d4 d d8 d d e16[( d]) | \barNumberCheck #30
++  c8 d e4. d8 c8. c16 | % 31
++  h4 r4 r c4~ | % 32
++  c8 h a g f8[( g16 a] h[ c d e] | % 33
++  f4) e8 c4 c8 c8. c16 | % 34
++  h4 r r2 | % 35
++  r8 a4 h8 c4 c | % 36
++  r8 h4 c8 d4 d | % 37
++  r4 g, c8[( a]) f4 | % 38
++  r8 g g g d'4. d8 | % 39
++  d d c c h4 c8 c | \barNumberCheck #40
++  c4( h) c r | % 41
++  r2 r8 a h c | % 42
++  d4 c8 h r e e d | % 43
++  c c f4 f( e | % 44
++  d2) c4 r \bar"|."
+ 
+-IAllegroSSoloMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IAllegroSSoloMusic" { \IAllegroSSoloMusic }
+ 
+-IAllegroSSoloLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IAllegroSMusic = \relative c' {
+-  s8
+-  % TODO
+ }
+ \addQuote "IAllegroSMusic" { \IAllegroSMusic }
+ 
+ IAllegroSLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IAllegroAMusic = \relative c' {
+-  s8
+-  % TODO
++  Be -- ne -- di -- ctus sit De -- us pa -- ter,
++  sit De -- us, De -- us, De -- us pa -- ter,
++  u -- ni -- ge -- ni --
++  % 5
++  tus -- que,
++  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
++  san -- ctus quo -- que Spi -- ri -- tus,
++  san -- ctus quo -- que Spi -- ri -- tus,
++  % 10
++  qui -- a fe -- cit,
++  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am
++  % 15
++  su -- am.
++  Be -- ne -- di -- ctus,
++  be -- ne -- di -- ctus sit De -- us, De -- us,
++  De -- us pa --
++  % 20
++  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
++  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
++  be -- ne -- di -- ctus
++  % 25
++  sit san -- ctus Spi -- ri -- tus,
++  be -- ne -- di -- ctus sit De -- us pa -- ter,
++  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni --
++  % 30
++  tus -- que De -- i fi -- li -- us,
++  san -- ctus quo -- que,
++  san -- ctus quo -- que Spi -- ri -- tus,
++  % 35
++  qui -- a fe -- cit,
++  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am
++  % 40
++  su -- am, mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am su -- am.
++}
++
++IAllegroAMusic = \relative c'' {
++  g4. g8 g g r g | % 2
++  a g f[( g]) a4 r8 e | % 3
++  f4. d8 g4. a8 | % 4
++  g g r4 g8 g g f16[( g]) | % 5
++  e4 e fis8 fis fis e16[( fis]) | % 6
++  d8 d g4. g8 g8. g16 | % 7
++  fis4 r r g~| % 8
++  g8[( f e]) d c4 d8[( e]) | % 9
++  f4. f8 e4 r | \barNumberCheck #10
++  r8 c4 d8 e4 e | % 11
++  r8 d4 e8 f4 f | % 12
++  r e a8[( fis]) d4 | % 13
++  r8 d8 d d g8. g16 g8 g | % 14
++  fis4. fis8 g8. g16 g4 | % 15
++  fis4( g2 fis4) | % 16
++  g8 g4 g8 g4 g | % 17
++  r8 g4 g8 gis4 gis | % 18
++  r2 r8 gis8 a h | % 19
++  e,4. g8 a2 | \barNumberCheck #20
++  gis8 gis4 gis8 gis4 gis | % 21
++  r8 h8 h h a8.([ e16]) d4 | % 22
++  r8 fis4 fis8 fis4 fis | % 23
++  r8 a8 a a g8. d16 d4 | % 24
++  r8 g4 g8 g4 g4 | % 25
++  r8 g8 g g f8. c16 c4 | % 26
++  a'4 f f e8 a | % 27
++  g g g4 g r | % 28
++  r2 a8 a a g16[( a]) | % 29
++  f4 f f8 f f g16[( f]) | \barNumberCheck #30
++  e8 f g4. f8 e8. a16 | % 31
++  g4 g4. f8 e d | % 32
++  c8[( d16 e f8]) c8 d4 g4~ | % 33
++  g8 g4 g8 a8 a a8. a16 | % 34
++  g4 r r8 d4 e8 | % 35
++  f4 f r8 e4 f8 | % 36
++  g4 g r h, | % 37
++  g'8[( e]) c4 r8 c8 c c | % 38
++  f4. f8 f f f f | % 39
++  f f e e d d e4~ | \barNumberCheck #40
++  e8 d16 c d4 c4 r | % 41
++  r8 c8 d e f4. e8 | % 42
++  d8 d g4. g8 g4~ | % 43
++  g8 f a4 g2~ | % 44
++  g2 g4 r \bar"|."
+ }
+ \addQuote "IAllegroAMusic" { \IAllegroAMusic }
+ 
+ IAllegroALyrics = \lyricmode {
+-  % TODO
++  Be -- ne -- di -- ctus sit De -- us pa -- ter,
++  sit De -- us, De -- us pa -- ter,
++  u -- ni -- ge -- ni --
++  % 5
++  tus -- que,
++  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
++  san -- ctus quo -- que Spi -- ri -- tus,
++  % 10
++  qui -- a fe -- cit,
++  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am
++  % 15
++  su -- am.
++  Be -- ne -- di -- ctus,
++  be -- ne -- di -- ctus sit De -- us,
++  De -- us pa --
++  % 20
++  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
++  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
++  be -- ne -- di -- ctus
++  % 25
++  sit san -- ctus Spi -- ri -- tus,
++  be -- ne -- di -- ctus sit De -- us pa -- ter,
++  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni --
++  % 30
++  tus -- que De -- i fi -- li -- us,
++  san -- ctus quo -- que,
++  san -- ctus quo -- que, __ san -- ctus quo -- que Spi -- ri -- tus,
++  % 35
++  qui -- a fe -- cit,
++  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am, mi -- se -- ri -- cor --
++  % 40
++  di -- am su -- am, mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am su -- am.
+ }
+ 
+-
+ IAllegroTMusic = \relative c' {
+-  s8
+-  % TODO
++  e4. d8 e16[( d]) e8 r c | % 2
++  c c c[( d]) c4 r | % 3
++  r8 d8 f4. e8 g f16[( e]) | % 4
++  d8 c r4 r2 | % 5
++  c8 c c h16[( c]) a8 a a a | % 6
++  h h d d e e e8. e16 | % 7
++  a,4 r r2 | % 8
++  c4. h8 a g f g | % 9
++  a4. a8 g4 r | \barNumberCheck #10
++  R1*2 | % 12
++  r2 r8 d'4 c8 | % 13
++  h4 h r8 c c c | % 14
++  d4. d8 e e e e | % 15
++  d4 d8 d d2 | % 16
++  d8 d4 d8 d4 d | % 17
++  r8 d4 d8 d4 d | % 18
++  r8 gis,8 a h c4 h | % 19
++  a8[( h c]) h a2 | \barNumberCheck #20
++  h8 h4 h8 h4 h | % 21
++  r8 e8 e e e8.[( d16]) c4 | % 22
++  r8 a4 a8 a4 a | % 23
++  r8 d8 d d d8. c16 h4 | % 24
++  r8 e4 e8 e4 e | % 25
++  r8 c8 c c c8. b16 a4 | % 26
++  c4 a d  c8 e | % 27
++  d8 d c4 h r | % 28
++  e8 e e d16[( e]) c4 c | % 29
++  h8 d d c16[( d]) h8 h h h | \barNumberCheck #30
++  c8. c16 c4 a8 a a8. e'16 | % 31
++  d4 r c4. h8 | % 32
++  a8[( g f g16 a] h8[ c d c] | % 33
++  h[ c16 d] g,8) e' e e e8. e16 | % 34
++  d4 r4 r2 | % 35
++  R1*2 | % 37
++  r8 c4 h8 a4 a | % 38
++  r8 h4 h8 g4 g8 g | % 39
++  g4 g8 g g g g g16 g | \barNumberCheck #40
++  g2 g4 r | % 41
++  R1 | % 42
++  r8 g8 a h c4. h8 | % 43
++  a a d d d4 c8 c | % 44
++  c4( h) c4 r \bar"|."
+ }
+ \addQuote "IAllegroTMusic" { \IAllegroTMusic }
+ 
+ IAllegroTLyrics = \lyricmode {
+-  % TODO
++  Be -- ne -- di -- ctus sit De -- us pa -- ter,
++  sit De -- us, De -- us pa -- ter,
++  u -- ni -- ge -- ni --
++  % 5
++  tus -- que,
++  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
++  san -- ctus, san -- ctus quo -- que Spi -- ri -- tus,
++  % 10
++  qui -- a fe -- cit mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri --
++  % 15
++  cor -- di -- am su -- am.
++  Be -- ne -- di -- ctus,
++  be -- ne -- di -- ctus sit De -- us, De -- us,
++  De -- us pa --
++  % 20
++  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
++  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
++  be -- ne -- di -- ctus
++  % 25
++  sit san -- ctus Spi -- ri -- tus,
++  be -- ne -- di -- ctus sit De -- us pa -- ter,
++  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni -- tus -- que De -- i
++  % 30
++  fi -- li -- us, De -- i  fi -- li -- us,
++  san -- ctus, san -- ctus quo -- que Spi -- ri -- tus,
++  % 35
++  qui -- a fe -- cit,
++  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
++  % 40
++  su -- am, mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am su -- am.
+ }
+ 
+-
+ IAllegroBMusic = \relative c' {
+-  s8
+-  % TODO
++  c4. g8 c8 c, r e | % 2
++  f g a[( h]) c4 r8 c, | % 3
++  d4. d8 e4. f8 | % 4
++  g8 c, r4 r2 | % 5
++  a'8 a a g16[( a]) fis8 fis fis fis | % 6
++  g8 g g fis16[( g]) cis,8 cis cis cis | % 7
++  d4 r g4.( f8 | % 8
++  e[ d c]) d16[( e]) f4. c8 | % 9
++  f4. f8 c4 r | \barNumberCheck #10
++  R1*2 | % 12
++  r8 a'4 g8 fis4 fis | % 13
++  r8 g4 fis8 e4 a,8 a | % 14
++  d4 d cis4 cis8 cis | % 15
++  d4 d8 d d2 | % 16
++  g,8 g'4 g8 f4 f | % 17
++  r8 f4 f8 e4 e | % 18
++  r2 r8 e8 fis gis | % 19
++  a4. g8 f2 | \barNumberCheck #20
++  e8 e4 e8 e4 e | % 21
++  r8 gis8 gis gis a4 a, | % 22
++  r8 d4 d8 d4 d | % 23
++  r8 fis8 fis fis g8. g,16 g4 | % 24
++  r8 c'4 c8 c4 c, | % 25
++  r8 e e e f8. f,16 f4 | % 26
++  f'4 f g a8 a | % 27
++  h8 h c4 g r | % 28
++  c8 c c h16[( c]) a4 a | % 29
++  h8 h h a16[( h]) g8 g g g | \barNumberCheck #30
++  a8. a16 e4 f8 f fis8. fis16 | % 31
++  g4 r r2 | % 32
++  f4.( e8 d[ c h]) a | % 33
++  g8[( a16 h c8]) c'8 fis,4. fis8 | % 34
++  g4 r r2 | % 35
++  R1 | % 36
++  r2 r8 g4 f8 | % 37
++  e4 e r8 f4 e8 | % 38
++  d4 d8 d h4 h8 h | % 39
++  h4 c g' c,8 c | \barNumberCheck #40
++  g2 c8 c d e | % 41
++  f4. e8 d4. c8 | % 42
++  h4 a8[( g]) e'4. e8 | % 43
++  f8 f f f g4 g8 g | % 44
++  g,2 c4 r \bar"|."
+ }
+ \addQuote "IAllegroBMusic" { \IAllegroBMusic }
+ 
+ IAllegroBLyrics = \lyricmode {
+-  % TODO
++  Be -- ne -- di -- ctus sit De -- us pa -- ter,
++  sit De -- us, De -- us pa -- ter,
++  u -- ni -- ge -- ni --
++  % 5
++  tus -- que,
++  u -- ni -- ge -- ni -- tus -- que De -- i fi -- li -- us,
++  san -- ctus quo -- que Spi -- ri -- tus,
++  % 10
++  qui -- a fe -- cit, qui -- a fe -- cit no -- bis -- cum mi -- se -- ri --
++  % 15
++  cor -- di -- am su -- am.
++  Be -- ne -- di -- ctus,
++  be -- ne -- di -- ctus sit De -- us,
++  De -- us pa --
++  % 20
++  ter, be -- ne -- di -- ctus sit De -- us pa -- ter,
++  be -- ne -- di -- ctus sit De -- us fi -- li -- us,
++  be -- ne -- di -- ctus
++  % 25
++  sit san -- ctus Spi -- ri -- tus,
++  be -- ne -- di -- ctus sit De -- us pa -- ter,
++  u -- ni -- ge -- ni -- tus -- que, u -- ni -- ge -- ni -- tus -- que De -- i
++  % 30
++  fi -- li -- us, De -- i  fi -- li -- us,
++  san -- ctus quo -- que Spi -- ri -- tus,
++  % 35
++  qui -- a fe -- cit,
++  qui -- a fe -- cit no -- bis -- cum mi -- se -- ri -- cor -- di -- am,
++  % 40
++  su -- am, mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am,
++  mi -- se -- ri -- cor -- di -- am su -- am.
++}
++
++
++IAllegroBCMusic = \relative c' {
++  c8[ c, e g] c[ c,16 d] e8[ e] | % 2
++  f[ g a h] c[ c,16 d] e8[ c] | % 3
++  d4. d8 e4. f8 | % 4
++  g8[ c,] r4 \SClef << {e''8[ e] e[ d16 e] } \\ {g,8[ g] g[ f16 g] } >> | % 5
++  \BClef a,8[ a] a[ g16 a] fis8[ fis fis fis] | % 6
++  g8[ g] g[ fis16 g] cis,8[ cis cis cis] | % 7
++  d4 \SClef d''4 \BClef g,,4. f?8 | % 8
++  e8[ d] c[ d16 e] f4. c8 | % 9
++  f8[ f f f] c4 r4 | \barNumberCheck #10
++  \SClef << { r2 r8 g''4 a8 | h4 h r8 a4 h8 | c8 } \\ { r8 c,4 d8 e4 e | r8 d4 e8 f4 f | e8} >>
++  \BClef a,4 g8 fis4 fis | % 13
++  r8 g4 fis8 e8[ e a, a] | % 14
++  d[ d d d] cis[ cis cis cis] | % 15
++  d8[ d d d] d[ d d d] | % 16
++  g,8[ g' g g] f[ f f f] | % 17
++  f[ f f f] e[ e e e] | % 18
++  e4 r r8 e[ fis gis] | % 19
++  a[ a a g] f[ f f f] | \barNumberCheck #20
++  e[ e e e] e[ e e e] | % 21
++  gis[ gis gis gis] a4 a, | % 22
++  d8[ d d d] d[ d d d] | % 23
++  fis[ fis fis fis] g4 g, | % 24
++  c8[ c c c] c[ c c c] | % 25
++  e[ e e e] f4 f, | % 26
++  f'8[ f f f] g[ g a a] | % 27
++  h[ h,] c16[ d e f] g4 r | % 28
++  c8[ c] c[ h16 c] a4 a | % 29
++  h8[ h] h8[ a16 h] g8[ g g g] | \barNumberCheck #30
++  a[ a e e] f[ f fis fis] | % 31
++  g4 \AClef g' \TClef c,4. h8 | % 32
++  \BClef f4. e8 d[ c h a] | % 33
++  g8[ a16 h] c8[ c'] fis,[ fis fis fis] | % 34
++  g4 r \SClef r8 d'4 e8 | % 35
++  << { r8 a4 h8 c4 c | r8 h4 c8 d } \\ {f,4 f r8 e4 f8 | g4 g r8} >> \BClef g,4 f8 | % 37
++  e4 e r8 f4 e8 | % 38
++  d8[ d d d] h[ h h h] | % 39
++  h[ h c c] g'[ g c, c] | \barNumberCheck #40
++  \override Stem #'direction = #DOWN
++  g'[ g \revert Stem #'direction g, g] c[ c d e] | % 41
++  f4. e8 d4. c8 | % 42
++  h4 a8[ g] e'[ e e e] | % 43
++  f[ f f f] g[ g g g] | % 44
++  g,[ g g g] c4 r \bar"|."
++}
++
++IAllegroBCFbMusic = \figuremode {
++  s4 < 6 >8 s s s \bassFigureExtendersOn <6> <6> \bassFigureExtendersOff | % 2
++  <6> <6 4> <6> <6 5> s4 <6>8 s | % 3
++  \bassFigureExtendersOn <7 3> <6 3> <8 3> <8 3> <9 7> <8 6> <8 6> <6\!>16 <5> | % 4
++  s1 | % 5
++  s2 <6>8 <6> <6> <6> | % 6
++  s2 <7>8 <7> <7> <7> |% 7
++  <_+>4 s2. | % 8
++  <6>8 <5>16 <6>16 s2. | % 9
++  s1*3 | % 12
++  s2 <6>4 <6>8 <5> | % 13
++  s2 <6>8 <6> <7> <7> | % 14
++  <3+>8 <3+> <3+> <3+> <6 5> <6 5> <6 5> <6 5> | % 15
++  <5\! 3+> <5 3+> <6 4> <6 4> <5 4> <5 4> <5 3+> <5 3+> | % 16
++  s2 <4 2>8 <4 2> <4 2> <4 2> | % 17
++  <4 2> <4 2> <4 2> <4 2> <7 _+> <7 _+> <7 _+> <7 _+> | % 18
++  <7 _+>4 s4 <8 6>8 <8 6> <6\! 4> <6 4> | % 19
++  s4 s8 <6> <7> <7> <6> <6> | \barNumberCheck #20
++  <_+> <_+> <_+> <_+> <_+> <_+> <_+> <_+> | % 21
++  <6> <6> <6> <5> s2 | % 22
++  <_+>8 <_+> <_+> <_+> <_+> <_+> <_+> <_+> | % 23
++  <6> <6> <6> <5> s2 | % 24
++  s1 | % 25
++  <6>8 <6> <6> <5-> s2 | % 26
++  <5>8 <5> <6> <6> <7> <7> s4 | % 27
++  <6 5>8 <6 5> s2. | % 28
++  s1 | % 29
++  <5>8 <5> <5> <5>16 <5> <7>8 <7> <7> <7> | \barNumberCheck #30
++  s4 <6>8 <6> <9 7> <8 6> <7> s | % 31
++  s1 | % 32
++  s4. <6>8 <6\!>4 <6\!> | % 33
++  <7>8 s s s <7> <7> <7> <7> | % 34
++  s1*2 | % 36
++  s2 s4 s8 <2> | % 37
++  <6>4 <6> s8 s4 <2>8 | % 38
++  <6 4 3>8 <6 4 3> <6 4 3> <6 4 3> <6\! 5> <6 5> <6 5> <6 5> | % 39
++  <6 5> <6 5>  s4 s2 | \barNumberCheck #40
++  <6 4>8 <6 4> <5 3> s s2 | % 41
++  <5>4 <6>8 <8> <5 3>4 <6 3>8 <8 3\!> | % 42
++  <6>4 <6 3>16 <6> <6 3>8 <_ 6\!> <8 6> <8 6> <7 5> | % 43
++  <9 5\!> <8 5> <8 6> <8 6> <7 5> <7 5> <6 4> <6 4> | % 44
++  <5 4> <5 4> <5 3> <5 3> s4 s \bar"|."
+ }
+ 
+-
+-IAllegroContinuoMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IAllegroContinuoMusic" { \IAllegroContinuoMusic }
+-
+-
+-IAllegroVcBMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IAllegroVcBMusic" { \IAllegroVcBMusic }
+-
+-
++% IAllegroVcBMusic = \IAllegroBCMusic
diff --git a/patches/Mozart_BenedictusSitDeus_Music_02_Andante.ily.patch b/patches/Mozart_BenedictusSitDeus_Music_02_Andante.ily.patch
new file mode 100644
index 0000000000000000000000000000000000000000..7a191635f6b837c25fa800b4e3ee9745424eceae
--- /dev/null
+++ b/patches/Mozart_BenedictusSitDeus_Music_02_Andante.ily.patch
@@ -0,0 +1,1193 @@
+--- Mozart_BenedictusSitDeus_Music_02_Andante.ily.new	2010-09-28 02:19:20.000000000 +0200
++++ Mozart_BenedictusSitDeus_Music_02_Andante.ily	2010-09-28 02:16:03.000000000 +0200
+@@ -2,152 +2,1073 @@
+ 
+ IIAndantePieceName = "2. Aria"
+ IIAndantePieceNameTacet = "2. Aria tacet (Andante, 96 Takte)"
+-IIAndanteTempo = "TODO"
++IIAndanteTempo = "Andante."
+ 
+-IIAndanteKey = \key c \major
+-IIAndanteTimeSignature = \time 4/4
++IIAndanteKey = \key f \major
++IIAndanteTimeSignature = \time 2/4
+ 
+ IIAndanteSettings = \notemode {
+   \tempo \IIAndanteTempo
+ }
+ 
++IIAndanteCueLabels = \notemode {
++  \IIAndanteSettings
++}
++
+ 
+-IIAndanteFlIMusic = \relative c' {
+-  s8
+-  % TODO
++IIAndanteFlIMusic = \relative c'' {
++  c4. f8 | % 2
++  e8.[( f32 g]) f8[\staccato f]\staccato | % 3
++  c4. a'8 | % 4
++  g8.[( a32 b]) a8[\staccato a]\staccato | % 5
++  c4 a16[( f c) a']\staccato | % 6
++  b16[\staccato g\staccato e\staccato c]\staccato b'4 | % 7
++  c2~ | % 8
++  c2~ | % 9
++  c16[ f,( e f)] r d'[( b g]) | \barNumberCheck #10
++  f4( e8) r | % 11
++  R2 | % 12
++  r8 d'16[ b] a8[ g] | % 13
++  f r r4 | % 14
++  r8 d'16[ b] a8[ g] | % 15
++  f[ c'32( d c b)] a8[\staccato a]\staccato | % 16
++  a2 | % 17
++  R2*6 | % 23
++  r4 r8 a8\p | % 24
++  a4( g8) r | % 25
++  R2 |  % 26
++  c2 | % 27
++  d2 | % 28
++  R2*2 | \barNumberCheck #30
++  r8 a16[( f]) e8[( d]) | % 31
++  c4 r | % 32
++  R2*2 | % 34
++  r8 a'16[( f]) e8[( d]) | % 35
++  c4 r | % 36
++  R2*2 | % 38
++  r8 a'16[( f]) e8[( d]) | % 39
++  c4 r | \barNumberCheck #40
++  g'8.[( f16]) e8[ a] | % 41
++  c2 | % 42
++  h | % 43
++  c4\f e,16[( c g) e']\staccato | % 44
++  f[\staccato d\staccato h\staccato g]\staccato f'4 | % 45
++  g2~ | % 46
++  g2 | % 47
++  r8 g8[ g g] | % 48
++  g8.[\trill f32 e] f16[ g a h] | % 49
++  c8.[ d16] c8[ h]\trill | \barNumberCheck #50
++  c8[\staccato g32( a g f]) e4 | % 51
++  R2*3 | % 54
++  r8 g8[(\f a) h(] | % 55
++  c4) r4 | % 56
++  R2*4 | \barNumberCheck #60
++  r8 f,8[(\p e d]) | % 61
++  \times 2/3 { c16[ d e] } \times 2/3 { f[ g a]} c,8[( b]) | % 62
++  a8[ f'(\f e d)] | % 63
++  \times 2/3 {c16[ d e]} \times 2/3 { f[ g a]} c8[( b]) | % 64
++  a4 r | % 65
++  R2*4 | % 69
++  r4 r16 c16[(\p b a]) | \barNumberCheck #70
++  a8[ g] r4 | % 71
++  R2*3 | % 74
++  r8 d'16[( b]) a8[( b]) | % 75
++  f4 r | % 76
++  R2*2 | % 78
++  r8 d'16[( b]) a8[( g]) | % 79
++  f4 r | \barNumberCheck #80
++  b4 a | % 81
++  d8 r b r | % 82
++  a2 | % 83
++  g2 | % 84
++  a2~\f | % 85
++  a2~ | % 86
++  a2 | % 87
++  a4 r\fermata | % 88
++  f4 a16[( f c) a']\staccato | % 89
++  b[\staccato g\staccato e\staccato c]\staccato b'4 | \barNumberCheck #90
++  a16[( c]) c4.~ | % 91
++  c2 | % 92
++  r8 c[\ff c c] | % 93
++  c8.[ b32 a] b16[\staccato b( a g]) | % 94
++  f8 r d' r | % 95
++  a4 g\trill | % 96
++  f8[ c'32( b a g]) f4 \bar"|."
+ }
+ \addQuote "IIAndanteFlIMusic" { \IIAndanteFlIMusic }
+ 
+-
+-IIAndanteFlIIMusic = \relative c' {
+-  s8
+-  % TODO
++IIAndanteFlIIMusic = \relative c'' {
++  R2*2 | % 3
++  a4. f'8 | % 4
++  e8.[( f32 g]) f8[\staccato f]\staccato | % 5
++  c'2~ | % 6
++  c2 | % 7
++  c4 a16[( f c) a']\staccato | % 8
++  b16[\staccato g\staccato e\staccato c]\staccato b'4 | % 9
++  a8[ c,]( d16[) f( d b)] | \barNumberCheck #10
++  a4( g8) r | % 11
++  R2 | % 12
++  r8 f'16[ g] f8[ e] | % 13
++  f r r4 | % 14
++  r8 f16[ g] f8[ e] | % 15
++  f[ a32( b a g)] f8[\staccato f]\staccato | % 16
++  f2 | % 17
++  R2*6 | % 23
++  r4 r8 f8\p | % 24
++  f4( e8) r | % 25
++  R2 |  % 26
++  a2 | % 27
++  h2 | % 28
++  R2*2 | \barNumberCheck #30
++  r8 f16[( d]) c8[( h]) | % 31
++  c4 r | % 32
++  R2*2 | % 34
++  r8 f16[( d]) c8[( h]) | % 35
++  c4 r | % 36
++  R2*2 | % 38
++  r8 f16[( d]) c8[( h]) | % 39
++  c4 r | \barNumberCheck #40
++  d4 c | % 41
++  e2 | % 42
++  d | % 43
++  e8\f g4 g8 | % 44
++  g2~ | % 45
++  g4 e16[( c g) e']\staccato | % 46
++  f16[\staccato d\staccato h\staccato g]\staccato f'4 | % 47
++  e8[ g8 g g] | % 48
++  g8.[\trill f32 e] f16[ g a h] | % 49
++  c8[ a e d]\trill | \barNumberCheck #50
++  c8[\staccato e32( f e d]) c4 | % 51
++  R2*3 | % 54
++  r8 e8[(\f f) d(] | % 55
++  e4) r4 | % 56
++  R2*4 | \barNumberCheck #60
++  r8 d8[(\p c b]) | % 61
++  \times 2/3 { a16[ b c] } \times 2/3 { d[ e f]} a,8[( g]) | % 62
++  f8[ d'(\f c b)] | % 63
++  \times 2/3 {a16[ b c]} \times 2/3 { d[ e f]} a8[( g]) | % 64
++  f4 r | % 65
++  R2*4 | % 69
++  r4 r16 a16[(\p g f]) | \barNumberCheck #70
++  f8[ e] r4 | % 71
++  R2*3 | % 74
++  r8 b'16[( g]) f8[( e]) | % 75
++  f4 r | % 76
++  R2*2 | % 78
++  r8 f16[( g]) f8[( e]) | % 79
++  f4 r | \barNumberCheck #80
++  g4 f | % 81
++  f8 r g r | % 82
++  f2 | % 83
++  e2 | % 84
++  f2~\f | % 85
++  f2~ | % 86
++  f2 | % 87
++  f4 r\fermata | % 88
++  f8 c'4 c8 | % 89
++  c2~ | \barNumberCheck #90
++  c4 a16[( f c) a']\staccato | % 91
++  b16[\staccato g\staccato e\staccato c]\staccato b'4 | % 92
++  a8[ c\ff c c] | % 93
++  c8.[ b32 a] b16[\staccato g( f e]) | % 94
++  f8 r f r | % 95
++  f4. e8 | % 96
++  f8[ a32( g f e]) f4 \bar"|."
+ }
+ \addQuote "IIAndanteFlIIMusic" { \IIAndanteFlIIMusic }
+ 
+-
+-IIAndanteCorIMusic = \relative c' {
+-  s8
+-  % TODO
++IIAndanteCorIMusic = \relative c'' {
++  \transposition f'
++  g2~ | % 2
++  g2~ | % 3
++  g2~ | % 4
++  g2 | % 5
++  c4 r8 c8 | % 6
++  d8[ d] d4 | % 7
++  e4 r8 e8 | % 8
++  d8[ d] d4 | % 9
++  c4 r8 c | \barNumberCheck #10
++  g2 | % 11
++  c8 r r4 | % 12
++  r8 f8[ e d] | % 13
++  c r r4 | % 14
++  r8 f8[ e d] | % 15
++  c4 c8[ c] | % 16
++  c2 | % 17
++  g2~\p | % 18
++  g2~ | % 19
++  g2~ | \barNumberCheck #20
++  g2 | % 21
++  c4 r8 c | % 22
++  d4 r8 d8 | % 23
++  e4 r | % 24
++  R2 | % 25
++  \partcombineApartOnce g,2 | % 26
++  R2*2 | % 28
++  d'2 | % 29
++  e | \barNumberCheck #30
++  r8 e \partcombineApartOnce d4 | % 31
++  d r | % 32
++  d2~ |  % 33
++  d4 r | % 34
++  r8 e8 \partcombineApartOnce d4 | % 35
++  d4 r | % 36
++  \partcombineApart d2~| % 37
++  d4 \partcombineAutomatic r | % 38
++  r8 e8 \partcombineApartOnce d4 | % 39
++  d r | \barNumberCheck #40
++  \partcombineApart d r | % 41
++  d2~ | % 42
++  d2 | % 43
++  d4\f r8 d8 | % 44
++  d4 r8 d8 | % 45
++  \partcombineAutomatic d4 r8 d8 | % 46
++  \partcombineApart d4 r8 d8 | % 47
++  \partcombineAutomatic d4 r | % 48
++  r8 g,8[ g g] | % 49
++  g[ c] \partcombineApartOnce d4 | \barNumberCheck #50
++  d8[ d] d4 | % 51
++  g,2\p |  % 52
++  R2*2 | % 54
++  r8 g4\f g8 | % 55
++  g4 r | % 56
++  R2*4 | \barNumberCheck #60
++  c2~\p | % 61
++  c4 g | % 62
++  c8[ c16\f c] c8[ c] | % 63
++  c4 g'8[( f]) | % 64
++  e4 r | % 65
++  R2*6 | % 71
++  c4 r | % 72
++  R2 | % 73
++  d4(\p e8) r | % 74
++  r f[ e d] | % 75
++  c4 r | % 76
++  R2 | % 77
++  d4( e8) r | % 78
++  r f[ e d] | % 79
++  c[ c( d e]) | \barNumberCheck #80
++  d4 c | % 81
++  c8 r c r | % 82
++  e2 | % 83
++  d | % 84
++  e~\f | % 85
++  e~ | % 86
++  e | % 87
++  e4 r4\fermata | % 88
++  c4 r8 c | % 89
++  d4 r8 d | \barNumberCheck #90
++  e4 r8 e8 | % 91
++  d4 r8 d | % 92
++  c4 r | % 93
++  r8 c[\ff c c] | % 94
++  c r c r | % 95
++  e4 d\trill | % 96
++  c8[ c] c4 \bar"|."
+ }
+ \addQuote "IIAndanteCorIMusic" { \IIAndanteCorIMusic }
+ 
+-
+-IIAndanteCorIIMusic = \relative c' {
+-  s8
+-  % TODO
++IIAndanteCorIIMusic = \relative c'' {
++  \transposition f'
++  g2~ | % 2
++  g2~ | % 3
++  g2~ | % 4
++  g2 | % 5
++  e4 r8 e8 | % 6
++  g8[ g] g4 | % 7
++  c4 r8 c8 | % 8
++  g8[ g] g4 | % 9
++  c,4 r8 c | \barNumberCheck #10
++  g2 | % 11
++  e'8 r r4 | % 12
++  r8 d'[ c g] | % 13
++  e r r4 | % 14
++  r8 d'[ c g] | % 15
++  e4 e8[ e] | % 16
++  e2 | % 17
++  g2~\p | % 18
++  g2~ | % 19
++  g2~ | \barNumberCheck #20
++  g2 | % 21
++  e4 r8 e8 | % 22
++  g4 r8 g8 | % 23
++  c4 r | % 24
++  R2 | % 25
++  g | % 26
++  R2*2 | % 28
++  g2 | % 29
++  c | \barNumberCheck #30
++  r8 c d4 | % 31
++  g,4 r | % 32
++  d'2~ |  % 33
++  d4 r4 | % 34
++  r8 c8 d4 | % 35
++  g, r | % 36
++  d'2~ | % 37
++  d4 r | % 38
++  r8 c8 d4 | % 39
++  g, r | \barNumberCheck #40
++  d' r | % 41
++  d2~ | % 42
++  d2 | % 43
++  g,4\f r8 d'8 | % 44
++  d4 r8 d | % 45
++  g,4 r8 g | % 46
++  d'r r8 d | % 47
++  g,4 r4 | % 48
++  r8 g,8[ g g] | % 49
++  g[ c] d'4 | \barNumberCheck #50
++  g,8[ g] g4 | % 51
++  g,2\p | % 52
++  R2*2 | % 54
++  r8 g4\f g8 | % 55
++  g4 r | % 56
++  R2*4 | \barNumberCheck #60
++  c2~\p | % 61
++  c4 g | % 62
++  c8[ c16\f c] c8[ c] | % 63
++  c4 e'8[( d]) | % 64
++  c4 r | % 65
++  R2*6 | % 71
++  c,4 r | % 72
++  R2 | % 73
++  g'4(\p c8) r | % 74
++  r d[ c g] | % 75
++  e4 r | % 76
++  R2 | % 77
++  g4( c8) r | % 78
++  r d[ c g] | % 79
++  e[ e( g c]) | \barNumberCheck #80
++  g4 c, | % 81
++  c8 r c r | % 82
++  c'2 | % 83
++  g | % 84
++  c2~\f | % 85
++  c2 | % 86
++  c, | % 87
++  g4 r\fermata |  % 88
++  e'4 r8 e8 | % 89
++  g4 r8 g | \barNumberCheck #90
++  c4 r8 c | % 91
++  g4 r8 g | % 92
++  e4 r | % 93
++  r8 c8[\ff c c] | % 94
++  c r c r | % 95
++  c'4. g8 | % 96
++  e8[ e] e4 \bar"|."
+ }
+ \addQuote "IIAndanteCorIIMusic" { \IIAndanteCorIIMusic }
+ 
+-
+-IIAndanteTbeIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteTbeIMusic" { \IIAndanteTbeIMusic }
+-
+-
+-IIAndanteTbeIIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteTbeIIMusic" { \IIAndanteTbeIIMusic }
+-
+-
+-IIAndanteTimMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteTimMusic" { \IIAndanteTimMusic }
+-
+-
+-IIAndanteVIMusic = \relative c' {
+-  s8
+-  % TODO
++IIAndanteVIMusic = \relative c'' {
++  c4. f8 | % 2
++  e8.[( f32 g]) f8[\staccato f]\staccato | % 3
++  c4. a'8 | % 4
++  g8.[( a32 b]) a8[\staccato a]\staccato | % 5
++  c4 a16[( f c) a']\staccato | % 6
++  b[\staccato g\staccato e\staccato c]\staccato b,4\trill | % 7
++  c''4 a16[( f c) a']\staccato | % 8
++  b[\staccato g\staccato e\staccato c]\staccato b,4\trill | % 9
++  a16[\staccato f''( e f]) d[\staccato d'( b g]) | \barNumberCheck #10
++  f4( e8) r | % 11
++  \times 2/3 {r16 a[\staccato g]\staccato} \times 2/3 {f[\staccato e\staccato d]\staccato} \times 2/3 {c[\staccato b\staccato a]\staccato} \times 2/3 {g[\staccato f\staccato e]\staccato} | % 12
++  d8[ \appoggiatura {e'32} d16 c32 b] a8[ g] | % 13
++  \times 2/3 {r16 a'[\staccato g]\staccato} \times 2/3 {f[\staccato e\staccato d]\staccato} \times 2/3 {c[\staccato b\staccato a]\staccato} \times 2/3 {g[\staccato f\staccato e]\staccato} | % 14
++  d8[ \appoggiatura {e'32} d16 c32 b] a8[ g] | % 15
++  f8[ c'32( d c b)] <a f>8[\staccato <a f>]\staccato | % 16
++  <a f>2 | % 17
++  c4.\p f8 | % 18
++  e8.[( f32 g]) f8[\staccato f]\staccato | % 19
++  c4. a'8 | \barNumberCheck #20
++  g8.[( a32 b]) a8[\staccato a]\staccato | % 21
++  c,4 f16[( c f) a]\staccato | % 22
++  b[\staccato g\staccato e\staccato c]\staccato b,4\trill | % 23
++  a8 f''4 a,8 | % 24
++  a4( g8[) g'32( f e d)] | % 25
++  c8 c'4 b8 | % 26
++  a8[ a a a] | % 27
++  h8[ h h h] | % 28
++  c8 c,4( b8) | % 29
++  gis16[( a) h( c)] cis[( d) e( f)] | \barNumberCheck #30
++  a,[( d) f( d)] c8[( h]) | % 31
++  \times 2/3 {c16[\f g' f]} \times 2/3 {e[ d c]} \times 2/3 {h[ a g]} \times 2/3 {f[ e d]} | % 32
++  c8 g''4\p g8 | % 33
++  g8.[( a32 g]) c16[( g) f( e)] | % 34
++  e[( d) f( d)] c8[( h]) | % 35
++  \times 2/3 {c16[\f g' f]} \times 2/3 {e[ d c]} \times 2/3 {h[ a g]} \times 2/3 {f[ e d]} | % 36
++  c8 g''4\p g8 | % 37
++  g8.[( a32 g]) c16[( g) f( e)] | % 38
++  e[( d) f( d)] c8[( h]) | % 39
++  c8[ g' g g] | \barNumberCheck #40
++  g8.[( f16]) e8[ a] | % 41
++  e2:16 | % 42
++  d2:16 | % 43
++  c4\f e16[( c g) e']\staccato | % 44
++  f16[\staccato d\staccato h\staccato g]\staccato g,4\sf | % 45
++  c'4 e16[( c g) e']\staccato | % 46
++  f16[\staccato d\staccato h\staccato g]\staccato g,4\sf | % 47
++  r8 g''8[ g g] | % 48
++  g8.[\trill f32 e] f16[ g a h] | % 49
++  \times 2/3 {c16[ g e]} \times 2/3 {a[ f d]} g,8[ d']\trill | \barNumberCheck #50
++  c8[\staccato g32( a g f]) e4 | % 51
++  c'4\p c | % 52
++  c8 c4 d16[\trill c32 d] | % 53
++  e16[( c') a( g)] g8.[( f16]) | % 54
++  e8[ g16\trill\f f32 g] a8[ h16\trill a32 h] | % 55
++  c8 c,4\p c8 | % 56
++  c[ c c c] | % 57
++  c[ c c c] | % 58
++  b8[ b b b] | % 59
++  b[ b b b] | \barNumberCheck #60
++  a[ f'( e d]) | % 61
++  \times 2/3 {c16[ d e]} \times 2/3 {f[ g a]} c,8[( b]) | % 62
++  a[ f'(\f e d)] | % 63
++  \times 2/3 {c16[ d e]} \times 2/3 {f[ g a]} a8[( g]) | % 64
++  f4 r | % 65
++  es8[\p es es es] | % 66
++  es[ es es es] | % 67
++  d,[ d' e, e'] | % 68
++  f,[ f' g, g'] | % 69
++  a,4 r16 c[( b a]) | \barNumberCheck #70
++  a8[ g] r4 | % 71
++  \times 2/3 { r16 c'[\f b]} \times 2/3 {a[ g f]} \times 2/3 {e[ d c]} \times 2/3 {b[ a g]} | % 72
++  f8[ f'(\p e f)] | % 73
++  g,8.[( a32 b] \times 2/3{a16[) b c]} \times 2/3 {d[ e f]} | % 74
++  g,16[ d'] \appoggiatura {c32} b16[ a32 g] f8[( e]) | % 75
++  \times 2/3 {\once\override Stem #'direction = #UP f16[\f c'' b]} \times 2/3 {a[ g f]} \times 2/3 {e[ d c]} \times 2/3 { b[ a g] } | % 76
++  f8[ f'(\p g a)] | % 77
++  b4( a8.[) f16] | % 78
++  g,16[ d'] \appoggiatura {c32} b16[ a32 g] f8[( e]) | % 79
++  f8[ f'( e f)] | \barNumberCheck #80
++  g8[ \times 2/3 {b,16 a g]} \times 2/3 { a[ b c]} \times 2/3 { d[ e f]} | % 81
++  d8 r d r | % 82
++  f16[ f f f] f4:16 | % 83
++  e2:16 | % 84
++  <f a,>8[\f a32( g f e]) f16[ a, f'8]~ | % 85
++  f8[ a32( g f e]) f16[ a, f'8~] | % 86
++  f8[ a32( g f e]) f16[ a, f' h,,] | % 87
++  c4 r\fermata | % 88
++  f'4 a16[( f c) a']\staccato | % 89
++  b[\staccato g\staccato e\staccato c] b,4\trill | \barNumberCheck #90
++  f''4 a16[( f c) a']\staccato | % 91
++  b[\staccato g\staccato e\staccato c] b,4\trill | % 92
++  r8 c''[\ff c c] | % 93
++  c8.[ b32 a] b16[\staccato g( f e)] |
++  f[\staccato c( b a]) d[\staccato b( a g)] |
++  c,4 g''8.[\trill f32 g] |
++  f8[ c32( b a g)] f4 \bar"|."
+ }
+ \addQuote "IIAndanteVIMusic" { \IIAndanteVIMusic }
+ 
+-
+ IIAndanteVIIMusic = \relative c' {
+-  s8
+-  % TODO
++  c16[ f a f] c[ f a f] | % 2
++  c[ g' b g] c,[ f a f] | % 3
++  c[ f a f] c[ f a f] | % 4
++  c[ e g e] c[ f a f] | % 5
++  c[ c c c] c4:16 | % 6
++  c4:16 c4:16 | % 7
++  c4:16 c4:16 | % 8
++  c4:16 c4:16 | % 9
++  c8[ c'( d) d] | \barNumberCheck #10
++  a4( g8) r | % 11
++  \times 2/3 {r16 f'[\staccato e]\staccato} \times 2/3 {d[\staccato c\staccato b]\staccato} \times 2/3 {a[\staccato g\staccato f]\staccato} \times 2/3 {e[\staccato d\staccato c]\staccato} | % 12
++  b8[ f'16 g] f8[ e] | % 13
++  \times 2/3 {r16 f'[\staccato e]\staccato} \times 2/3 {d[\staccato c\staccato b]\staccato} \times 2/3 {a[\staccato g\staccato f]\staccato} \times 2/3 {e[\staccato d\staccato c]\staccato} | % 14
++  b8[ \appoggiatura { c'32} b16 a32 g] f8[ e] | % 15
++  f8[ a32( b a g]) <f a,>8[\staccato <f a,>]\staccato | % 16
++  <f a,>2 | % 17
++  c16[\p f a f] c[ f a f] | % 18
++  c[ g' b g] c,[ f a f] | % 19
++  c[ f a f] c[ f a f] | \barNumberCheck #20
++  c[ e g e] c[ f a f] | % 21
++  c4:16 c4:16 | % 22
++  c4:16 c4:16 | % 23
++  c8 a'4 f8 | % 24
++  f4( e8[) e'32( d c h]) | % 25
++  c8[ c,( d) e] | % 26
++  f[ c'c c] | % 27
++  d[ d d d] | % 28
++  e[ g, g g] | % 29
++  c, r r4 | \barNumberCheck #30
++  r8 a'16[( f]) e8[( d]) | % 31
++  \times 2/3 {\once \override Stem #'direction = #UP c16[\f
++    \once \override Stem #'direction = #DOWN g'' f]} \times 2/3 {e[ d c]} \times 2/3 {h[ a g]} \times 2/3 {f[ e d]} | % 32
++  c8[ e'\p d c] | % 33
++  h4( c8)[ c~] | % 34
++  c8[ a16( f]) e8[( d]) | % 35
++  \times 2/3 {\once \override Stem #'direction = #UP c16[\f
++    \once \override Stem #'direction = #DOWN g'' f]} \times 2/3 {e[ d c]} \times 2/3 {h[ a g]} \times 2/3 {f[ e d]} | % 36
++  c8[ e'\p d c] | % 37
++  h4( c8)[ c~] | % 38
++  c8[ a16( f]) e8[( d]) | % 39
++  c8[ c'h e] | \barNumberCheck #40
++  d4 c | % 41
++  c2:16 | % 42
++  h2:16 | % 43
++  c16[\f g g g] g4:16 | % 44
++  g2:16 | % 45
++  <g g,>2:16 | % 46
++  <g g,>2:16 | % 47
++  <g g,>4 r | % 48
++  r8 e'[ f d] | % 49
++  e[ \times 2/3 {a16 f d]} g,16[ c8 h16] | \barNumberCheck #50
++  c8[\staccato e,32( f e d]) c4 | % 51
++  r8 a'8[\p g f] | % 52
++  e16[( g) e\staccato d\staccato] c[ e h d] | % 53
++  g8[ c16( e]) e8.[( d16]) | % 54
++  c8[ e16\f\trill d32 e] f8[ d16\trill c32 d] | % 55
++  c8[ e,\p fis g] | % 56
++  a[ a] a[ \times 2/3 {a16 b g]} | % 57
++  fis8[ fis fis fis] | % 58
++  g[ g g g] | % 59
++  e[ e e e] | \barNumberCheck #60
++  f[ d'( c b]) | % 61
++  \times 2/3 {a16[ b c]} \times 2/3 { d[ e f]} a,8[( g]) | % 62
++  g8[ d'(\f c b]) | % 63
++  \times 2/3 {a16[ b c]} \times 2/3 {d[ e f]} c8[( b]) | % 64
++  a4 r | % 65
++  c8[\p c c c] | % 66
++  c[ c c c] | % 67
++  b8[\staccato b16( g]) c,8[\staccato c'16( g)] | % 68
++  c,8[\staccato c'16( a]) c,8[\staccato e'16( c]) | % 69
++  c,4 r16 a'[( g f]) | \barNumberCheck #70
++  f8[ e] r4 | % 71
++  \times 2/3 { r16 c''[\f b]} \times 2/3 {a[ g f]} \times 2/3 {e[ d c]} \times 2/3 {b[ a g]} | % 72
++  f8[ c(\p g' f]) | % 73
++  c4~ c8 r | % 74
++  r16 f \appoggiatura {e32} d16[ c32 b] a8[( g]) | % 75
++  \times 2/3 {\once\override Stem #'direction = #UP a16[\f c'' b]} \times 2/3 {a[ g f]} \times 2/3 {e[ d c]} \times 2/3 { b[ a g] } | % 76
++  f8[ c(\p b' a]) | % 77
++  g4( f) | % 78
++  r8 \appoggiatura {e32} d16[ c32 b] a8[( g]) | % 79
++  a8[ c'( b a]) | \barNumberCheck #80
++  g8 c,4 a'8 | % 81
++  f r f r | % 82
++  a2:16 | % 83
++  g2:16 | % 84
++  \override Stem #'direction = #UP <a f'>16[\f <a f>8 <a f> <a f> <a f>16]~ | % 85
++  \revert Stem #'direction
++  <a f>16[ <a f>8 <a f>8 <a f> <a f>16]~ | % 86
++  <a f>16[ <a f>8 <a f> <a f> <a f>16] | % 87
++  <a f>4 r4\fermata | % 88
++  f'16[ c, c c] c4:16 | % 89
++  c2:16 | \barNumberCheck #90
++  c2:16 | % 91
++  c2:16 | % 92
++  c4 r | % 93
++  r8 f'8[\ff g b,] | % 94
++  a r g r | % 95
++  c,16[ f' f f] f[ f e e] | % 96
++  f8[ a,32( g f e]) f4 \bar"|."
+ }
+ \addQuote "IIAndanteVIIMusic" { \IIAndanteVIIMusic }
+ 
+-
+-IIAndanteVaMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteVaMusic" { \IIAndanteVaMusic }
+-
+-
+-IIAndanteSSoloMusic = \relative c' {
+-  s8
+-  % TODO
++IIAndanteVaIMusic = \relative c' {
++  c4. f8 | % 2
++  e8.([ f32 g]) f8[\staccato f]\staccato | % 3
++  c4. a'8 | % 4
++  g8.[( a32 b]) a8[\staccato a]\staccato | % 5
++  a2 | % 6
++  b | % 7
++  a | % 8
++  b | % 9
++  a16[\staccato f( e f)] r d'([ b g]) | \barNumberCheck #10
++  f4( e16[) d\staccato c\staccato b]\staccato | % 11
++  f'4 r | % 12
++  r8 \appoggiatura {c'32} b16[ a32 g] f8[ e] | % 13
++  f4 r | % 14
++  r8 f16[ g] f8[ e] | % 15
++  f4 c8[\staccato c]\staccato | % 16
++  c2 | % 17
++  R2*2 | % 19
++  c4.\p f8 | \barNumberCheck #20
++  e8.[( f32 g]) f4 | % 21
++  a2 | % 22
++  b | % 23
++  r4 r8 f | % 24
++  f4( e8) r | % 25
++  R2 | % 26
++  r8 a8[ a a] | % 27
++  r g[ g g] | % 28
++  g r r4 | % 29
++  f8 r r4 | \barNumberCheck #30
++  r8. a16 g8[( f]) | % 31
++  \times 2/3 {e16[\f e d]} \times 2/3 {c[ h a]} \times 2/3 {g[ f' e]} \times 2/3 {d[ c h]} | % 32
++  c4 r | % 33
++  r8 h'8[(\p c]) r | % 34
++  r8. a16 g8[( f]) | % 35
++  \times 2/3 {e16[\f e d]} \times 2/3 {c[ h a]} \times 2/3 {g[ f' e]} \times 2/3 {d[ c h]} | % 36
++  c4 r | % 37
++  r8 h'8[( c]) r | % 38
++  r8. a16 g8[( f]) | % 39
++  e[ g f e] | \barNumberCheck #40
++  f8.[( g16]) c,8[ f] | % 41
++  g2:16 | % 42
++  g2:16 | % 43
++  e2\f | % 44
++  f | % 45
++  e | % 46
++  f | % 47
++  e4 r | % 48
++  r8 g[ a f] | % 49
++  e[ f g g] | \barNumberCheck #50
++  g8[ c,] <c c,>4 | % 51
++  r8 f8[\p e d] | % 52
++  e8 e4 f8 | % 53
++  e4 r8 g8~ | % 54
++  g8[ g8(\f a) f]( | % 55
++  e4) r | % 56
++  R2 | % 57
++  fis2\p | % 58
++  g2 | % 59
++  g2 | \barNumberCheck #60
++  a8[ f( e d)] | % 61
++  c4 c8[( b]) | % 62
++  a[ f'(\f e d]) | % 63
++  \times 2/3 { c16[ d e]} \times 2/3 {f[ g a]} c8[( b]) | % 64
++  a4 r | % 65
++  a8[\p a a a] | % 66
++  a[ a a a] | % 67
++  f8 r g r | % 68
++  a r b r | % 69
++  f4 r8 d | \barNumberCheck #70
++  c4 r16 d16[( c b]) | % 71
++  \times 2/3 {a[\f a' g]} \times 2/3 {f[ e d]} \times 2/3 {c[ b' a]} \times 2/3 {g[ f e]} | % 72
++  f4 r | % 73
++  r8 g8[(\p f]) r | % 74
++  r8. d16 c8[( b]) | % 75
++  \times 2/3 {a16[\f a' g]} \times 2/3 {f[ e d]} \times 2/3 {c[ b' a]} \times 2/3 {g[ f e]} | % 76
++  f4 r | % 77
++  r8 e8[(\p f]) r | % 78
++  r8. e16 c8[( b]) | % 79
++  a8[ f'( b a]) | \barNumberCheck #80
++  b4 a | % 81
++  r8 f r f | % 82
++  c2:16 | % 83
++  c2:16 | % 84
++  c2:16\f | % 85
++  d2:16 | % 86
++  d2:16 | % 87
++  c4 r\fermata | % 88
++  a'2 | % 89
++  b | \barNumberCheck #90
++  a | % 91
++  b | % 92
++  a4 r | % 93
++  r8 a8[\ff b a] | % 94
++  f r f r | % 95
++  c2:16 | % 96
++  c8[ c] c4 \bar "|."
++
++}
++\addQuote "IIAndanteVaIMusic" { \IIAndanteVaIMusic }
++
++IIAndanteVaIIMusic = \relative c' {
++  R2*2 | % 3
++  c4. f8 | % 4
++  e8.[( f32 g]) f8[\staccato f8]\staccato | % 5
++  f2 | % 6
++  g | % 7
++  f | % 8
++  g | % 9
++  f8[ c( d) d] | \barNumberCheck #10
++  a4( g16[) g'\staccato f\staccato e]\staccato | % 11
++  a,4 r | % 12
++  r8 d c4 | % 13
++  c r | % 14
++  r8 d c4 | % 15
++  c f,8[\staccato f]\staccato | % 16
++  f2 | % 17
++  R2*4 | % 21
++  f'2\p | % 22
++  g | % 23
++  r4 r8 a,8 | % 24
++  a4( g8) r | % 25
++  R2 | % 26
++  r8 f'8[ f f] | % 27
++  r d[ d d] | % 28
++  e8 r r4 | % 29
++  c8 r r4 | \barNumberCheck #30
++  r8. f16 g4 | % 31
++  \times 2/3 {g16[\f e d]} \times 2/3 {c[ h a]} \times 2/3 {g[ f' e]} \times 2/3 {d[ c h]} | % 32
++  c4 r | % 33
++  r8 d8[(\p e]) r | % 34
++  r8. f16 g4 | % 35
++  \times 2/3 {g16[\f e d]} \times 2/3 {c[ h a]} \times 2/3 {g[ f' e]} \times 2/3 {d[ c h]} | % 36
++  c4 r | % 37
++  r8 d8[(\p e]) r | % 38
++  r8. f16 g4 | % 39
++  g8[ g f e] | \barNumberCheck #40
++  f8.[( g16]) g8[ a] | % 41
++  g2:16 | % 42
++  g2:16 | % 43
++  c,2\f | % 44
++  d | % 45
++  c | % 46
++  d | % 47
++  c4 r | % 48
++  r8 g'[ a f] | % 49
++  e[ f] g[ g16 f] | \barNumberCheck #50
++  e8[ <e g,>] <e g,>4 | % 51
++  r8 f[\p e d] | % 52
++  c8 g4 g8 | % 53
++  g4 r8 h'8( | % 54
++  c8[ e,(\f f) e(] | % 55
++  d4) r | % 56
++  R2 | % 57
++  a2\p | % 58
++  b2 | % 59
++  e | \barNumberCheck #60
++  f8[ d( c b)] | % 61
++  a4 a8[( g]) | % 62
++  f[ d'(\f c b]) | % 63
++  \times 2/3 {a16[ b c]} \times 2/3 {d[ e f]} a8[( g]) | % 64
++  f4 r | % 65
++  f8[\p f f f] | % 66
++  f,[ f f f] | % 67
++  b4. b8 | % 68
++  a4 e | % 69
++  f r8 b | \barNumberCheck #70
++  c4 r16 g'16[( f e]) | % 71
++  \times 2/3 {f16[\f a g]} \times 2/3 {f[ e d]} \times 2/3 {c[ b' a]} \times 2/3 {g[ f e]} | % 72
++  f4 r | % 73
++  r8 b,8[(\p a]) r | % 74
++  r8. b16 c4 | % 75
++  \times 2/3 {c16[\f a' g]} \times 2/3{f[ e d]} \times 2/3 {c[ b' a]} \times 2/3 {g[ f e]} | % 76
++  f4 r | % 77
++  r8 g,8[(\p a]) r | % 78
++  r8. b16 c4 | % 79
++  c8[ c( e f]) | \barNumberCheck #80
++  g4 f | % 81
++  r8 d r d | % 82
++  c2:16 | % 83
++  c2:16 | % 84
++  c2:16\f | % 85
++  d2:16 | % 86
++  d2:16 | % 87
++  c4 r4\fermata | % 88
++  f2 | % 89
++  g | \barNumberCheck #90
++  f | % 91
++  g | % 92
++  f4 r | % 93
++  r8 a8[\ff b g] | % 94
++  f r f r | % 95
++  c4:16 c16[ c b b] | % 96
++  a8[ f] f4 \bar"|."
++}
++\addQuote "IIAndanteVaIIMusic" { \IIAndanteVaIIMusic }
++
++IIAndanteSSoloMusic = \relative c'' {
++  R2*16 | % 17
++  c4. a16[( f]) | % 18
++  e8.[( f32 g]) f8 r | % 19
++  c'4. a16[( f]) | \barNumberCheck #20
++  g8.[( a32 b]) a8 r | % 21
++  r4 c4~ | % 22
++  c c | % 23
++  c8.[( d32 e f8]) a, | % 24
++  a8. g16 g4 | % 25
++  r8 c8 c b | % 26
++
++  \times 2/3 { a16[\melisma b g} a8] \times 2/3 { f'16[ e d]} \times 2/3 {c[ h a]} | % 27
++  \times 2/3 { h16[ c a} h8] \times 2/3 { f'16[ e d]} \times 2/3 {d[ c h]} | % 28
++  c8.[ d32 h c8]\melismaEnd b | % 29
++  gis16[( a]) h[( c]) cis[( d]) e[( f]) | \barNumberCheck #30
++  a,[( d]) f[( d]) c8[( \appoggiatura {e16} d8]) | % 31
++  c4 r | % 32
++  r8 g g g | % 33
++  g8.[( a32 g c8]) e | % 34
++  e16[( d]) f d c8.\([ \appoggiatura {e32} d16]\) | % 35
++  c4 r | % 36
++  r8 g g g | % 37
++  g8.[( a32 g c8]) e | % 38
++  e16[( d]) f d c8.[\( \appoggiatura {e32} d16]\) | % 39
++  c8 g g g | \barNumberCheck #40
++  \times 2/3 { g16[\melisma a g] } \times 2/3 { d'[ e f] } \times 2/3 { e[ d c]\melismaEnd } \times 2/3 { f[ e d]} | % 41
++  g,4~ g16[( g']) \appoggiatura {f32} e16 \appoggiatura {d32} c16 | % 42
++  d2\trill | % 43
++  c4 r | % 44
++  R2*7 | % 51
++  c4 c | % 52
++  c16[( h]) c8 c d | % 53
++  e16[( c]) a[( g]) g8. f16 | % 54
++  e4 r | % 55
++  r8 c' c c | % 56
++  \times 2/3 { c16[\melisma d b} c8] \times 2/3 {c16[ d b] } \times 2/3 { a[ b g]} | % 57
++  \times 2/3 { fis16[ g e} fis8] d16[ fis a c] | % 58
++  \times 2/3 { b16[ c a} b8] \times 2/3 {b16[ c a] } \times 2/3 { g[ a f]} | % 59
++  \times 2/3 {e16[ f d} e8] c16[ e] \melismaEnd g16[( b]) | \barNumberCheck #60
++  a8 f f f16[( g]) | % 61
++  \times 2/3 { a16[( b c])} \times 2/3 { d[( e f])} c8[( b])\trill | % 62
++  a4 r | % 63
++  R2 | % 64
++  f4 a8 c8 | % 65
++  es4( c | % 66
++  a) es | % 67
++  \times 2/3 {d16[\melisma f e] } \times 2/3 { d[ e f]} \times 2/3 {e[ g f]} \times 2/3 {e[ f g]} | % 68
++  \times 2/3 {f[ a g]} \times 2/3 {f[ g a]} \times 2/3 {g[ b a]} \times 2/3 {g[ a b]} | % 69
++  \times 2/3 {a[\staccato a( b]} \times 2/3 {c[ d e])} f16[( c]) \melismaEnd b16 a | \barNumberCheck #70
++  a8 g r4 | % 71
++  R2 | % 72
++  r8 c8 e, f | % 73
++  g8.[( a32 b] \times 2/3 {a16[ b c]} \times 2/3 {d16[ e]) f16} | % 74
++  g,16[ d'] \appoggiatura {c32} b16 a32[( g]) f8.[\( \appoggiatura {a32} g16]\) | % 75
++  f4 r | % 76
++  r8 c'8 c c | % 77
++  g8.[( a32 b] \times 2/3 {a16[ b c]} \times 2/3 {d16[ e]) f16} | % 78
++  g,16[( d']) \appoggiatura {c32} b16 a32[( g]) f8.[( \appoggiatura {a32} g16]) | % 79
++  f8 c' c c | \barNumberCheck #80
++  \times 2/3 { c16[\melisma d c]} \times 2/3 {b[ a g]} \times 2/3 {a[ b c]} \times 2/3 {d[ e f]} | % 81
++  \times 2/3 {d[ f e]} \times 2/3 {d[ c b]} \times 2/3 {d[ c b]} \melismaEnd \times 2/3 {a[( g f]) } | % 82
++  c'4( c16[) \appoggiatura d32 c16] \appoggiatura b32 a16 \appoggiatura g32 f16 | % 83
++  g2 | % 84
++  f4 r4 | % 85
++  R2 | % 86
++  r4 f8 f16 f | % 87
++  f4(\fermata g8.[\trill\fermata f16]) | % 88
++  f4 r | % 89
++  R2*8 \bar"|."
+ }
+ \addQuote "IIAndanteSSoloMusic" { \IIAndanteSSoloMusic }
+ 
+ IIAndanteSSoloLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIAndanteSMusic = \relative c' {
+-  s8
+-  % TODO
++  In -- tro -- i -- bo,
++  in -- tro --
++  % 20
++  i -- bo do -- mum tu -- am,
++  Do -- mi -- ne,
++  % 25
++  in ho -- lo -- cau -- stis,
++  red -- dam ti -- bi
++  % 30
++  vo -- ta me -- a,
++  quae di -- stin -- xe -- runt la -- bi -- a me --
++  % 35
++  a,
++  quae di -- stin -- xe -- runt la -- bi -- a me -- a,
++  quae di -- stin --
++  % 40
++  xe -- runt la -- bi -- a me -- a.
++  % 45
++  % 50
++  In tro -- i -- bo do -- mum tu -- am, Do -- mi -- ne,
++  % 55
++  in ho -- lo -- cau -- stis,
++  % 60
++  red -- dam ti -- bi vo -- ta me -- a,
++  quae di -- stin --
++  % 65
++  xe -- runt la -- bi -- a
++  % 70
++  me -- a,
++  quae di -- stin -- xe -- runt la -- bi -- a me --
++  % 75
++  a,
++  quae di -- stin -- xe -- runt la -- bi -- a me -- a,
++  quae di -- stin --
++  % 80
++  xe -- runt la -- bi -- a me -- a,
++  % 85
++  la -- bi -- a me -- a.
++  % 90
++}
++
++IIAndanteBCMusic = \relative c {
++  r8 f8[ a f] | % 2
++  c'8[ b] a4 | % 3
++  r8 f16[ g] a8[ f] | % 4
++  r8 c8[ f f,] | % 5
++  r8 f'[ a f] | % 6
++  r8 g[ e c] | % 7
++  r8 f16[ g] a8[ f] | % 8
++  r8 g8[ e c] | % 9
++  f[ a( b) b] | \barNumberCheck #10
++  r16 c[( h c]) c,[ b'\staccato a\staccato g]\staccato | % 11
++  f4 r | % 12
++  r8 b8[ c c,] | % 13
++  f4 r | % 14
++  r8 b8[ c c,] | % 15
++  f4 f8[ f] | % 16
++  f2 | % 17
++  r8 f16[\p g] a8[ f] | % 18
++  c'8[ b] a4 | % 19
++  r8 f16[ g] a8[ f] | \barNumberCheck #20
++  r8 c8[ f f,] | % 21
++  r8 f'8[ a f] | % 22
++  r8 g[ e c] | % 23
++  r8 f[ a, b] | % 24
++  r8 c8[ c' c,] | % 25
++  c[ e f g] | % 26
++  f[ f f f] | % 27
++  f[ f f f] | % 28
++  e[ e e e] | % 29
++  f[ f f f] | \barNumberCheck #30
++  f[ f g g,] | % 31
++  c4\f r4 | % 32
++  c8[ c\p h a] | % 33
++  g[ f' e e] | % 34
++  f[ f g g] | % 35
++  c,4\f r | % 36
++  r8 c8[\p h a] | % 37
++  g[ f' e e] | % 38
++  f[ f g g,] | % 39
++  c[ e d c] | \barNumberCheck #40
++  h[ h' c f,] | % 41
++  g[ g g g] | % 42
++  g,[ g g g ] | % 43
++  c[\f c' e c] | % 44
++  r g[ h g] | % 45
++  r c[ e c] | % 46
++  r d[ h g] | % 47
++  c4 r | % 48
++  r8 c[ c c] | % 49
++  c[ f, g g,] | \barNumberCheck #50
++  c8[ c'] c,4 | % 51
++  c4\p r | % 52
++  c c'8[ g] | % 53
++  c,[ e' d g,] | % 54
++  c[ c,\f c c] | % 55
++  c[ c'\p a g] | % 56
++  fis[ fis fis es] | % 57
++  d[ d d d] | % 58
++  d[ d d d] | % 59
++  c[ c c c] | \barNumberCheck #60
++  f4 f, | % 61
++  r8 f'8[ g c,] | % 62
++  f4 f,\f | % 63
++  r8 f'8[ g c,] | % 64
++  f4 r | % 65
++  f8[\p f f f] | % 66
++  f[ f f f] | % 67
++  b[ b, b' b] | % 68
++  a[ a e e] | % 69
++  f4 r8 b,8 | \barNumberCheck #70
++  c16[\staccato c'( h c)] c,[\staccato b'( a g)] | % 71
++  f4\f r4 | % 72
++  f8[ a(\p b a)] | % 73
++  e8[( c f)] r | % 74
++  r8 b,[ c c] | % 75
++  f4\f r | % 76
++  r8 a8[(\p e f]) | % 77
++  e[( c f]) r | % 78
++  r b,[ c c] | % 79
++  f[ a( g f]) | \barNumberCheck #80
++  e[ c f f,] | % 81
++  b8 r b' r | % 82
++  c[ c c c] | % 83
++  c,[ c c c] | % 84
++  f[\f f a f] | % 85
++  r d[ f d] | % 86
++  r8 h[ h h] | % 87
++  c2\fermata | % 88
++  f8[ f a f] | % 89
++  r8 c[ e c] | \barNumberCheck #90
++  r f16[ g] a8[ f] | % 91
++  r c[ e c] | % 92
++  f4 r | % 93
++  r8 f'[\ff f f] | % 94
++  f r b, r | % 95
++  c[ c c, c] | % 96
++  f[ f,] f'4 \bar"|."
++}
++
++IIAndanteFiguredBassMusic = \figuremode {
++  \IIAndanteSettings
++  s4 <6>8 s | % 2
++  s <2> <6>4 | % 3
++  s4 <6>8 s | % 4
++  s <7> s4 | % 5
++  s <6>8 s | % 6
++  s <6> <6 5> <7> | % 7
++  s4 <6>8 s | % 8
++  s8 <6> <6 5> <7> | % 9
++  s <6> s <6> | \barNumberCheck #10
++  s16 \bassFigureExtendersOn <6 4> <6 4> <6 4> <5 3>16 s s s | % 11
++  s2 | % 12
++  s8 \bassFigureExtendersOff <6 5> <6 4> <5 3> | % 13
++  s2 | % 14
++  s8 <6 5> <6 4> <5 3> | % 15
++  s2*2 | % 17
++  s4 <6>8 s | % 18
++  s <2> <6>4 | % 19
++  s4 <6>8 s | \barNumberCheck #20
++  s <7> s s| % 21
++  s s <6> s  | % 22
++  s <6> <6 5> <7> | % 23
++  s s <6> <7> | % 24
++  \bassFigureExtendersOn <6 4>8 <6 4> <5 3> s | % 25
++  s <6> s <6 4 3> | % 26
++  s2 | % 27
++  <4! 2>8 <4! 2> <4! 2> <4! 2> | % 28
++  <6> <6> <6> <5-> | % 29
++  <5> <5> <6> <6> | \barNumberCheck #30
++  <6\!> <6> <6\! 4> <5 3!> | % 31
++  s2 | % 32
++  <5 3>8 <5 3\!> <5 3\!> <5 3\!> | % 33
++  <3! _>8 <4! 2> <6> <6> | % 34
++  <6\! 5> <6 5> <6\! 4> <5 3!> | % 35
++  s2 | % 36
++  s8 <5 3>8 <5 3\!> <5 3\!> | % 37
++  <3! _>8 <4! 2> <6> <6> | % 38
++  <6\! 5> <6 5> <6\! 4> <5 3!> | % 39
++  s <6> <6!> s | \barNumberCheck #40
++  <6> <5> s s | % 41
++  <6 4>8 <6 4> <6 4> <6 4> | % 42
++  <5 3!> <5 3!> <5 3!> <5 3!> | % 43
++  s4 <6>8 s | % 44
++  s <7 _!> <7 _!> <7 _!> | % 45
++  s s <6> s | % 46
++  s <6/> <6\! 5> <7> | % 47
++  s2 | % 48
++  s4 <6 4>8 <7! 4\! 2>  | % 49
++  s <6 5> <6\! 4> <5 _!> | \barNumberCheck #50
++  s2*2 | % 52
++  s4 s8 <_!> | % 53
++  s <6> <9 4> <7 _!> | % 54
++  s4 <6 4>8 <7! 4\! 2> | % 55
++  s4 <6\\ 3>8 <8 4> % 56
++  <5> <5> <5> <6> | % 57
++  <7 3+> <7 3+> <7 3+> <7 3+> | % 58
++  <6 4> <6 4> <6 4> <6 4> | % 59
++  <7 3!> <7 3!> <7 3!> <7 3!> | \barNumberCheck #60
++  <5 3> <8 6> <7 5> <6 4> | % 61
++  <5 3> <5 3> <9 4> <7> | % 62
++  <5 3> <8 6> <7 5> <6 4> | % 63
++  <5 3> <5 3> <9 4> <7> | % 64
++  s2 | % 65
++  <7->8 <7-> <7-> <7-> | % 66
++  <7-> <7-> <7-> <7-> | % 67
++  s s <4! 2> <4! 2> | % 68
++  <6> <6> <6\! 5> <6 5> | % 69
++  s s s <6> | \barNumberCheck #70
++  <6\! 4>16 <6 4> <6 4> <6 4> <5 3> <5 3> <5 3> <5 3>  | % 71
++  s2 | % 72
++  s8 <6> <4 2> <6> \bassFigureExtendersOff | % 73
++  <6 5> <7> s s | % 74
++  s <6 5> <6 4> <5 3> | % 75
++  s2 | % 76
++  s8 <6> <6 5> s | % 77
++  <6 5> <7> s s | % 78
++  s <6 5> <6 4> <5 3> | % 79
++  s <6> <6>\bassFigureExtendersOn s | \barNumberCheck #80
++  <6 5> <7> s s | % 81
++  s2 | % 82
++  <6 4>8 <6 4> <6 4> <6 4> | % 83
++  <5 3> <5 3> <5 3> <5 3> | % 84
++  s s <6> s | % 85
++  s <5> <5> <5> | % 86
++  s <7> <7> <7> | % 87
++  <6 4>4 <5 3> | % 88
++  s <6>8 s | % 89
++  s <7> <7> <7> | \barNumberCheck #90
++  s s <6> s | % 91
++  s <7> <7> <7> | % 92
++  s2 | % 93
++  s4 <7 4 2>8 <7 4 2> | % 94
++  <8 3> s <6 5> s | % 95
++  <6 4> <6 4> <5 4> <5 3> | % 96
++  s2 \bar"|."
+ }
+-\addQuote "IIAndanteSMusic" { \IIAndanteSMusic }
+-
+-IIAndanteSLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIAndanteAMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteAMusic" { \IIAndanteAMusic }
+-
+-IIAndanteALyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIAndanteTMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteTMusic" { \IIAndanteTMusic }
+-
+-IIAndanteTLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIAndanteBMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteBMusic" { \IIAndanteBMusic }
+-
+-IIAndanteBLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIAndanteContinuoMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteContinuoMusic" { \IIAndanteContinuoMusic }
+-
+-
+-IIAndanteVcBMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIAndanteVcBMusic" { \IIAndanteVcBMusic }
+-
+ 
++% IIAndanteVcBMusic = \IIAndanteBCMusic
++% \addQuote "IIAndanteVcBMusic" { \IIAndanteVcBMusic }
diff --git a/patches/Mozart_BenedictusSitDeus_Music_03_Allegro.ily.patch b/patches/Mozart_BenedictusSitDeus_Music_03_Allegro.ily.patch
new file mode 100644
index 0000000000000000000000000000000000000000..75731dde62e5592093d729ac259460fa871d8b96
--- /dev/null
+++ b/patches/Mozart_BenedictusSitDeus_Music_03_Allegro.ily.patch
@@ -0,0 +1,825 @@
+--- Mozart_BenedictusSitDeus_Music_03_Allegro.ily.new	2010-09-28 02:19:20.000000000 +0200
++++ Mozart_BenedictusSitDeus_Music_03_Allegro.ily	2010-09-28 02:16:09.000000000 +0200
+@@ -2,7 +2,7 @@
+ 
+ IIIAllegroPieceName = "3. Coro"
+ IIIAllegroPieceNameTacet = "3. Coro tacet (Allegro, 48 Takte)"
+-IIIAllegroTempo = "TODO"
++IIIAllegroTempo = "Allegro."
+ 
+ IIIAllegroKey = \key c \major
+ IIIAllegroTimeSignature = \time 4/4
+@@ -12,142 +12,718 @@
+ }
+ 
+ 
+-IIIAllegroFlIMusic = \relative c' {
+-  s8
+-  % TODO
++IIIAllegroCueLabels = \notemode {
++  \IIIAllegroSettings
+ }
+-\addQuote "IIIAllegroFlIMusic" { \IIIAllegroFlIMusic }
+ 
+-
+-IIIAllegroFlIIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIIAllegroFlIIMusic" { \IIIAllegroFlIIMusic }
+-
+-
+-IIIAllegroCorIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIIAllegroCorIMusic" { \IIIAllegroCorIMusic }
+-
+-
+-IIIAllegroCorIIMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIIAllegroCorIIMusic" { \IIIAllegroCorIIMusic }
+-
+-
+-IIIAllegroTbeIMusic = \relative c' {
+-  s8
+-  % TODO
++IIIAllegroTbeIMusic = \relative c'' {
++  c4 c c r | % 2
++  r4 r8 d8 c4 g'8[ f] | % 3
++  e4 r r2 | % 4
++  r2 r8 g8 g8[ f] | % 5
++  e4 r r2 | % 6
++  r2 r4 e8[ d] | % 7
++  e4 e8[ fis] g4 r | % 8
++  R1*3 | % 11
++  r2 r4 d8[ d] | % 12
++  e8[ c16 c] c8[ c] c[ c] c4 | % 13
++  R1*3 | % 16
++  r2 r8 d[ d d] | % 17
++  e4 r \partcombineApart d4 d8[ d] | % 18
++  d4 r g, r | % 19
++  \partcombineAutomatic d'4 r8 d8 d4 e | \barNumberCheck #20
++  \partcombineApartOnce d d \partcombineApartOnce d2 | % 21
++  d4 r8 \partcombineApartOnce d8 d4 r | % 22
++  R1*3 | % 25
++  r8 \partcombineApart d4 d8 d2 | % 26
++  \partcombineAutomatic d4 r r e8[ e] | % 27
++  e4 r r2 | % 28
++  e4 r c r | % 29
++  R1*3 | % 32
++  r8 d8[ d d] e4 r | % 33
++  R1 | % 34
++  r4 e4 e r8 e8 | % 35
++  e4 r r2 | % 36
++  R1*2 | % 38
++  r2 \partcombineApartOnce e4 r | % 39
++  \partcombineApartOnce d4 r \partcombineApartOnce c r | \barNumberCheck #40
++  c4 c8[ c] d4 e | % 41
++  r4 e8[ d] c4 r8 d8 | % 42
++  c4 r r c8[ c] | % 43
++  c4 c r d8[ d] | % 44
++  d4 e r8 f8[ e d] | % 45
++  c8 r c r e[ e d d] | % 46
++  c r c r e[ e d d] | % 47
++  c4 d c d | % 48
++  c8.[ c16] c8[ c] c2 \bar "|."
+ }
+ \addQuote "IIIAllegroTbeIMusic" { \IIIAllegroTbeIMusic }
+ 
+-
+ IIIAllegroTbeIIMusic = \relative c' {
+-  s8
+-  % TODO
++  c4 c c r | % 2
++  r4 r8 g'8 e4 e'8[ d] | % 3
++  c4 r r2 | % 4
++  r2 r8 e e[ d] | % 5
++  c4 r r2 | % 6
++  r2 r4 c8[ g] | % 7
++  c4 c g r | % 8
++  R1*3 | % 11
++  r2 r4 g8[ g] | % 12
++  c8[ e,16 e] e8[ e] e[ e] e4 | % 13
++  R1*3 | % 16
++  r2 r8 g8[ g g] | % 17
++  c4 r d d8[ d] | % 18
++  d4 r g, r | % 19
++  g4 r8 g8 g4 c | \barNumberCheck #20
++  d g, d'2 | % 21
++  g,4 r8 d' g,4 r | % 22
++  R1*3 | % 25
++  r8 d'4 d8 d2 | % 26
++  g,4 r r e8[ e] | % 27
++  e4 r r2 | % 28
++  e4 r c r | % 29
++  R1*3 | % 32
++  r8 g'8[ g g] c4 r | % 33
++  R1 | % 34
++  r4 e, e r8 e | % 35
++  e4 r r2 | % 36
++  R1*2 | % 38
++  r2 e'4 r | % 39
++  d r c r | \barNumberCheck #40
++  c,4 c8[ c] g'4 c | % 41
++  r4 c8[ g] e4 r8 g | % 42
++  e4 r r c8[ c] | % 43
++  c4 c r g'8[ g] | % 44
++  g4 c r8 d[ c g] | % 45
++  e8 r c r c'[ c g g] | % 46
++  e r c r c'[ c g g ] | % 47
++  e8 c'4 g8 e8 c'4 g8 | % 48
++  e8.[ e16] e8[ e] e2 \bar"|."
+ }
+ \addQuote "IIIAllegroTbeIIMusic" { \IIIAllegroTbeIIMusic }
+ 
+-
+-IIIAllegroTimMusic = \relative c' {
+-  s8
+-  % TODO
++IIIAllegroTimMusic = \relative c {
++  c4 r4 r2 | % 2
++  r2 r4 r8 g8 | % 3
++  c4 r r2 | % 4
++  r2 r4 r8 g | % 5
++  c4 r r2 | % 6
++  r2 r4 c8[ g] | % 7
++  c4 r g r | % 8
++  R1*3 | % 11
++  r2 r4 g8[ g] | % 12
++  c4 r8 c16[ c] c8[ c] c4 | % 13
++  R1*3 | % 16
++  r2 r8 g8[ g g] | % 17
++  c4 r r2 | % 18
++  R1*3 | % 21
++  g4 r g r | % 22
++  R1*6 | % 28
++  r2 c4 r | \barNumberCheck #29
++  R1*3 | % 32
++  r8 g8[ g g] c4 r | % 33
++  R1*8 | % 41
++  r2 c4 r8 g8 | % 42
++  c4 r r2 | % 43
++  R1*2 | % 45
++  r2 g4 g8[ g] | % 46
++  c4 r g g8[ g] | % 47
++  c4 r8 g c4 r8 g8 | % 48
++  c8.[ c16] c8[ c] c2 \bar"|."
+ }
+ \addQuote "IIIAllegroTimMusic" { \IIIAllegroTimMusic }
+ 
+-
+-IIIAllegroVIMusic = \relative c' {
+-  s8
+-  % TODO
++IIIAllegroVIMusic = \relative c'' {
++  c8[ c'16 h] c8[ c,16 h] c16[ d e f] g[ e d c] | % 2
++  d[ f e g] \appoggiatura {g16} f8[ e16 d] e[ d c g'] g[( e) f( d)] | % 3
++  c8[ c, c c] c[ c c c] | % 4
++  a[ a h h] c[ e'16 g] g16[( e) f( d)] | % 5
++  c8[ c,] r4 r2 | % 6
++  r2 r16 c[ e g] c[ e d f] | % 7
++  e[ d c d] e[ g fis a] g8[ g,] r4 | % 8
++  r16 c,[ d e] f[ a g f] e[ d c d] e[ c d e] | % 9
++  f[ d e f] g[ a f g] e[ f d e] c[ d h c] | \barNumberCheck #10
++  a[ a h c] d[ c h  a] g[ g' fis g] e[ d c h] | % 11
++  c[ a h c] d[ e c d] h[ g h d] g8[ d'] | % 12
++  e16[ c e g] c[ c, g e] c8[ <c' e,>] <c e, g,>4 | % 13
++  R1*3 | % 16
++  r2 r16 g,[ h d] g[ h d h] | % 17
++  c[ d e d] c[ h a g] fis8[ a'16 fis] <d d,>8[ <d d,>] | % 18
++  <d d,>16[ fis a g] fis[ e d c] c[ a d c] <h g'>8[ g'] | % 19
++  g16[ h d c] h[ a g f] f[ d g f] e[ d c h] | \barNumberCheck #20
++  a[ d fis d] g[ d c h] a[ g' fis e] fis[ a, h a] | % 21
++  g[ d' g h,] a[ g' a, fis'] g4 r4 | % 22
++  R1 | % 23
++  r8 d d16[( h) c( a)] h4 r | % 24
++  R1 | % 25
++  r16 d,[ d' d,] c'[ d, a' d,] h'[ d, d' d,] c'[ d, a' d,] | % 26
++  h'[ c h c] d[ e f a,] gis[ gis f' f] e[ e d d] | % 27
++  c[ a d h] e4. a8 a4 | % 28
++  gis16[ e, gis h] e[ g f h,] <c e, g,>4 r4 | % 29
++  R1*3 | % 32
++  r16 g,[ h d] g8[ d'] e[ g c f,]~ | % 33
++  f8[ f h e,]~ e[ e] a4~ | % 34
++  a8[ a] gis4 a16[ e( c) a]\staccato r f'[( e) gis,]\staccato | % 35
++  a[ a, h c] d[ e f d] c[ d e d] c[ h c a] | % 36
++  d[ e f d] e[ d c h] c[ d e d] c[ h d a] | % 37
++  h[ cis dis e] fis[ dis cis h] e[ fis e d] c[ d c h] | % 38
++  a[ c h a] h[ h cis dis] e[ g g' f] e[ d e cis] | % 39
++  f[ e f e] d[ c d h] e[ d e d] c[ h c h] | \barNumberCheck #40
++  a[ e' c' e,] c'[ e, c' e,] d[ g h g] c[ g e c] | % 41
++  a'[ f c d] e,[ c' d, h'] c[ g'( e) c]\staccato r f[( d) h]\staccato | % 42
++  c[ c e g] c8[ c] c16[ e, g f] e[ d c b] | % 43
++  b[ g c b] a8[ f'] f16[ d e f] g[ a f e] | % 44
++  f[ d g f] e[ c c' c] c[ c d d] e,[ c' e, h'] | % 45
++  c[ g( e) c]\staccato r a'[( f) d]\staccato r g[( e) c]\staccato r f[( d) h]\staccato | % 46
++  r c'[( g) e]\staccato r a[( f) d]\staccato r g[( e) c]\staccato r f[( d) h]\staccato | % 47
++  c[ e g c] d,[ c' d, h'] c[ g e c] d[ c' d, h'] |
++  c4 <c, e, g,>8[ <c e, g,>] <c e, g,>4 r4 \bar"|."
+ }
+ \addQuote "IIIAllegroVIMusic" { \IIIAllegroVIMusic }
+ 
+-
+ IIIAllegroVIIMusic = \relative c' {
+-  s8
+-  % TODO
++  e8[ e' f f,] g c,4 c'8~ | % 2
++  c[ c c d] g,16[ f e e'] e16[( c) d( h)] | % 3
++  c8[ c, c c] c[ c c c] | % 4
++  a[ a h h] c[ c'16 e] e16[( c) d( h)] | % 5
++  c8[ c,] r4 r2 | % 6
++  r2 r16 c[ e g] g[ g' g g] | % 7
++  g[ g, g g] g[ e' d c] h8[ h,] r4 | % 8
++  r16 c[ d e] f[ a g f] e[ d c d] e[ c d e] | % 9
++  f[ d e f] g[ a f g] e[ f d e] c[ d h c] | \barNumberCheck #10
++  a[ a h c] d[ c h  a] g[ g' fis g] e[ d c h] | % 11
++  c[ a h c] d[ e c d] h[ g h d] g8[ d'] | % 12
++  e16[ c e g] c[ c, g e] c8[ <c' e,>] <c e, g,>4 | % 13
++  R1*3 | % 16
++  r2 r16 g,[ h d] g[ h d h] | % 17
++  c[ d e d] c[ h a g] fis8[ a'16 fis] <d d,>8[ <d d,>] | % 18
++  <d d,>16[ fis a g] fis[ e d c] c[ a d c] <h g'>8[ g'] | % 19
++  g16[ h d c] h[ a g f] f[ d g f] e[ d c h] | \barNumberCheck #20
++  a[ d fis d] g[ d c h] a[ g' fis e] fis[ a, h a] | % 21
++  g[ d' g h,] a[ g' a, fis'] g4 r4 | % 22
++  R1 | % 23
++  r8 h, h16[( g) a( fis)] g4 r | % 24
++  R1 | % 25
++  r16 d[ d' d,] c'[ d, a' d,] h'[ d, d' d,] c'[ d, a' d,] | % 26
++  h'[ c h c] d[ e f a,] gis[ gis gis gis] a[ a h h] | % 27
++  e,4 c'16[ d h c] a4. d8 | % 28
++  e16[ e, gis h] e[ g f h,] <c e, g,>4 r4 | % 29
++  R1*3 | % 32
++  r16 g,[ h d] g8[ g] g8 e'4 e8 | % 33
++  d8 d4 d8 c4. c8 | % 34
++  h8[ h] h4 a16[ e'( c) a]\staccato r f'[( e) gis,]\staccato | % 35
++  a[ a, h c] d[ e f d] c[ d e d] c[ h c a] | % 36
++  d[ e f d] e[ d c h] c[ d e d] c[ h d a] | % 37
++  h[ cis dis e] fis[ dis cis h] e[ fis e d] c[ d c h] | % 38
++  a[ c h a] h[ h cis dis] e[ g g' f] e[ d e cis] | % 39
++  f[ e f e] d[ c d h] e[ d e d] c[ h c h] | \barNumberCheck #40
++  a[ e' c' e,] c'[ e, c' e,] d[ g h g] c[ g e c] | % 41
++  a'[ f c d] e,[ c' d, h'] c[ g'( e) c]\staccato r f[( d) h]\staccato | % 42
++  c[ c e g] c8[ c] c16[ e, g f] e[ d c b] | % 43
++  b[ g c b] a8[ f'] f16[ d e f] g[ a f e] | % 44
++  f[ d g f] e[ c c' c] c[ c d d] e,[ c' e, h'] | % 45
++  c[ g( e) c]\staccato r a'[( f) d]\staccato r g[( e) c]\staccato r f[( d) h]\staccato | % 46
++  r c'[( g) e]\staccato r a[( f) d]\staccato r g[( e) c]\staccato r f[( d) h]\staccato | % 47
++  c[ e g c] d,[ c' d, h'] c[ g e c] d[ c' d, h'] |
++  c4 <c, e, g,>8[ <c e, g,>] <c e, g,>4 r4 \bar"|."
+ }
+ \addQuote "IIIAllegroVIIMusic" { \IIIAllegroVIIMusic }
+ 
+-
+ IIIAllegroVaMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIIAllegroVaMusic" { \IIIAllegroVaMusic }
+-
+-
+-IIIAllegroSSoloMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIIAllegroSSoloMusic" { \IIIAllegroSSoloMusic }
+-
+-IIIAllegroSSoloLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIIAllegroSMusic = \relative c' {
+-  s8
+-  % TODO
++  c8[ c d d] e16[ f g f] e8[ g] | % 2
++  a[ g f g] g[ g g g] | % 3
++  g[ c, c c] c[ c c c] | % 4
++  a[ a h h] h[ r16 g'16] g8[ g] | % 5
++  g[ c,] r4 r2 | % 6
++  r2 r16 c16[ e g] e[ e h h] | % 7
++  c[ d e d] c[ c c c] d8[ d] r4 | % 8
++  R1*3 | % 11
++  r2 r16 g,[ h d] g8[ g] | % 12
++  g4 r16 c[ g e] c[ c g e] c4 | % 13
++  r16 c[ d e] f[ a g f] e[ d c d] e[ c d e] | % 14
++  f[ d e f] g[ a f g] e[ f g f] e[ d e c] | % 15
++  d[ e fis g] a[ fis e d] g[ fis e d] e'[ d c h] | % 16
++  c[ a h c] d[ c h a] h[ g h d] g[ a g f] | % 17
++  e8[ e e a,] a4 r | % 18
++  r <d a'>8[ <d a'>8] <d a'>8[ <d a'>8] <h' d, g,>8 r | % 19
++  r4 <g g,>8[ <g g,>8] <g g,>4 <g g,>4 | \barNumberCheck #20
++  r8 a8[ d, d] d[ d d c] | % 21
++  << {d8} \\ { h8[ d e d]} >> d4 r | % 22
++  g,8[ g g g] a[ a d d] | % 23
++  g,[ g h d] g[ g, g g] | % 24
++  g[ g g g] e[ e fis fis] | % 25
++  g[ g'] fis[ d16 c] h8[ g'] fis[ d16 c] | % 26
++  g8[ g] r4 h16[ h d d] e[ e fis gis] | % 27
++  a4. a8 a4 r8 f | % 28
++  h,16[ e gis h] e,8[ e] c16[ c d e] f[ a g f] | % 29
++  e16[ f g f] e[ d e c] f[ d e f] g[ a f g] | \barNumberCheck #30
++  e[ f d e] c[ d h c] a[ a h c] d[ c h a] | % 31
++  g[ g' fis g] e[ d e c] d[ a h c] d[ c h a] | % 32
++  r g[ h d] g8[ h,] c4 c16[ h c a] | % 33
++  h4 h16[ a h gis] a4 a | % 34
++  f'8[ f] e4 e8[ e f e] | % 35
++  e4 r r2 | % 36
++  R1*2 | % 38
++  r2 r16 e[ e' d] cis[ h cis a] | % 39
++  d[ c d c] h[ a h g] c[ h c h] a[ g a g] | \barNumberCheck #40
++  fis8[ a a a] <h d, g,>8 g4 g8 | % 41
++  c,8[ a' g f] e[ g a f] | % 42
++  e4 c'8[ c] c4 g8[ g] | % 43
++  g[ g c, f] f4 <h d, g,>8[ <h d, g,>] | % 44
++  <h d, g,>4 c8[ e,] a[ a] <g g,>8[ <g g,>16 f] | % 45
++  e8[ g a a] e8[\staccato c'16( e,)] d8[\staccato g16( d)] | % 46
++  e8[\staccato g16( e)] a8[\staccato a16( f)] e8[\staccato g16( e)] d8[\staccato f16( d)] | % 47
++  e8[ e] r g e[ g g g] | % 48
++  <e g,>4 <e g, c,>8[ <e g, c,>] <e g, c,>4 r \bar"|."
++}
++
++IIIAllegroSMusic = \relative c'' {
++  c4 c c16[( h]) c8 g e'16[( c]) | % 2
++  d8 e f e16[( d]) e[( d]) c8 r4 | % 3
++  g4. a16[( g]) g4. e'16[( c]) | % 4
++  g4( f)\trill e r | % 5
++  R1 | % 6
++  r2 r4 c'8 d | % 7
++  e c16[( d]) e8 fis g g, r4 | % 8
++  c4 c c8 c16 c c8 c16 c | % 9
++  d2 c4 c8 c | \barNumberCheck #10
++  c4 c8 c h4 c | % 11
++  a2 g4 d'8 d | % 12
++  e8[( d]) c4 r2 | % 13
++  R1*3 | % 16
++  r2 r4 d8 d | % 17
++  c8 e16[( d]) c[( h]) a[( g]) fis8 d' r4 | % 18
++  r c8 c c4 h | % 19
++  r4 d8 d d4 c | \barNumberCheck #20
++  fis,8 fis g4.( fis16[ e] fis4) | % 21
++  g4 r d'4. e16[( d]) | % 22
++  d4. g16[( d]) d4( c) | % 23
++  h4 r4 r2 | % 24
++  R1 | % 25
++  r4 c8 a h[( d c a] | % 26
++  h d4) a8 gis f' e8[( d] | % 27
++  c[ d] e4.  d16[ c] d4) | % 28
++  e4 r r2 | % 29
++  R1*3 | % 32
++  r4 h16[( c]) c[( h]) e4. f8 | % 33
++  d4. e8 c4. c8 | % 34
++  h8 h h4 a r | % 35
++  R1*3 | % 38
++  r2 r4 e'8 e | % 39
++  e4( d2) c4 | \barNumberCheck #40
++  r8 c4 c8 h4 c | % 41
++  c8 c16[( d]) c8[( h]) c4 r | % 42
++  r2 r4 b8 b | % 43
++  b4 a r h8 h | % 44
++  h4 c c8 d c[( h]) | % 45
++  c4 r r d8 h | % 46
++  c8[( e]) d4 r d8 h | % 47
++  c8 e r8 d16 d e8 c r d16 h | % 48
++  c8 c r4 r2 \bar"|."
+ }
+ \addQuote "IIIAllegroSMusic" { \IIIAllegroSMusic }
+ 
+ IIIAllegroSLyrics = \lyricmode {
+-  % TODO
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
++  % 5
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus,
++  da -- te
++  % 10
++  glo -- ri -- am lau -- di e -- jus.
++  Ju -- bi -- la -- te.
++  % 15
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  % 20
++  ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
++  % 25
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 30
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 35
++  Ju -- bi -- la -- te,
++  % 40
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la --
++  % 45
++  te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te.
+ }
+ 
+-
+ IIIAllegroAMusic = \relative c' {
+-  s8
+-  % TODO
++  e4 f g16[( f]) e[( f]) g8 g | % 2
++  a8 g f g g g r4 | % 3
++  e4. f16[( e]) e4. g16[( e]) | % 4
++  e4( d)\trill c r | % 5
++  R1 | % 6
++  r2 r4 g'8 g | % 7
++  g g g a d, d r4 | % 8
++  R1*3 | % 11
++  r2 r4 g8 g | % 12
++  g4 g r2 | % 13
++  R1*3 | % 16
++  r2 r4 g8 g | % 17
++  g g g e d fis r4 | % 18
++  r4 a8 a a d, g g | % 19
++  g2 g4 g16[( f]) e[( d]) | \barNumberCheck #20
++  d8 d d d d2 | % 21
++  d4 r4 r2 | % 22
++  R1 | % 23
++  r2 d4. e16[( d]) | % 24
++  d4. g16[( d]) d4( c) | % 25
++  h8 d4 d8 d2 | % 26
++  d8 h'4 d,8 d4( e8[ fis16 gis] | % 27
++  a1) | % 28
++  gis4 r r2 | % 29
++  R1*3 | % 32
++  r4 g8 g g4( f)~ | % 33
++  f4( e)~ e( a)~ |  % 34
++  a( gis) a r | % 35
++  a a a8 a16 a a8 a16 a | % 36
++  h2 a4 a8 a | % 37
++  a4 a8 a g4 a | % 38
++  fis2 e8 g4 g8 | % 39
++  f2 e | \barNumberCheck #40
++  r8 a4 a8 g4 g | % 41
++  a8 a g4 g r | % 42
++  r2 r4 g8 g | % 43
++  g c, f f f2~ | % 44
++  f4 e a8 a g4 | % 45
++  g4 r r g8 g | % 46
++  g4 a r g8 g | % 47
++  g8 g r g16 g g8 g r g16 g | % 48
++  g8 g r4 r2 \bar"|."
+ }
+ \addQuote "IIIAllegroAMusic" { \IIIAllegroAMusic }
+ 
+ IIIAllegroALyrics = \lyricmode {
+-  % TODO
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
++  % 5
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 10
++  Ju -- bi -- la -- te.
++  % 15
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi --
++  % 20
++  la -- te,
++  ju -- bi -- la -- te De -- o o -- mnis ter --
++  % 25
++  ra,
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 30
++  Ju -- bi -- la -- te.
++  % 35
++  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus,
++  da -- te glo -- ri -- am lau -- di e -- jus.
++  Ju -- bi -- la -- te,
++  % 40
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la --
++  % 45
++  te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te.
+ }
+ 
+-
+ IIIAllegroTMusic = \relative c' {
+-  s8
+-  % TODO
++  r2 r4 c8 c8 | % 2
++  c8 c c d c16[( d]) e8 r4 | % 4
++  R1*2 | % 5
++  g,4. a16[( g]) g4. e'16[( c]) | % 6
++  g4( f)\trill e e'8 h | % 7
++  c e16[( d]) c8 c h h r4 | % 8
++  R1*3 | % 11
++  r2 r4 h16[( c]) d[( h]) | % 12
++  c8[( d]) e4 r2 | % 13
++  c4 c c8 c16 c c8 c16 c | % 14
++  d2 c4 c8 c | % 15
++  c4 c8 c h4 c | % 16
++  a2 g4 h8 h | % 17
++  c8 c16[( d]) e8 a, a a d d | % 18
++  d2 d4 r4 | % 19
++  r4 f8 f f4 e16[( d]) c h | \barNumberCheck #20
++  a8 a h c16[( h]) a2 | % 21
++  g4 r h4. c16[( h]) | % 22
++  h4. d16[( h]) h4( a) | % 23
++  g4 r r2 | % 24
++  R1 | % 25
++  r4 fis'8 d16[( c]) h8 g' fis d16[( c]) | % 26
++  h8 g r4 h8 gis a e'| % 27
++  e d c[( h] a4 f'4) | % 28
++  h,4 r r2 | % 29
++  R1*3 | % 32
++  r4 d8 d c4~c16[( h c a] | % 33
++  h4~) h16[( a h gis] a4) a | % 34
++  f'8 f e4 e r | % 35
++  R1*3 | % 38
++  r2 r4 e16[( d]) e[( cis]) | % 39
++  f8 a, d16[( c]) d[( h]) e8 g, c h | \barNumberCheck #40
++  a8 e' e e d4 e | % 41
++  d8 d e8[( d]) c4 r | % 42
++  r c8 c c2 | % 43
++  c4 r r d8 d | % 44
++  d4 c d8 d e[( d]) | % 45
++  c4 r r f8 d | % 46
++  e[( c]) c4 r f8 d | % 47
++  e c r h16 h c8 e r f16 d | % 48
++  e8 e r4 r2 \bar"|."
+ }
+ \addQuote "IIIAllegroTMusic" { \IIIAllegroTMusic }
+ 
+ IIIAllegroTLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIIAllegroBMusic = \relative c' {
+-  s8
+-  % TODO
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te
++  % 5
++  De -- o o -- mnis ter -- ra,
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 10
++  Ju -- bi -- la -- te.
++  Psal -- mum di -- ci -- te no -- mi -- ni e -- jus,
++  da -- te
++  % 15
++  glo -- ri -- am lau -- di e -- jus.
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi --
++  % 20
++  la -- te,
++  ju -- bi -- la -- te De -- o o -- mnis ter -- ra,
++  % 25
++  ju -- bi -- la -- te, ju -- bi -- la -- te,
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 30
++  Ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 35
++  Ju -- bi -- la -- te, ju -- bi -- la -- te,
++  ju -- bi --
++  % 40
++  la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la --
++  % 45
++  te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te.
++}
++
++IIIAllegroBMusic = \relative c {
++  c4 d e16[( d]) c[( d]) e8 e | % 2
++  f8 g a h c c, r4 | % 3
++  R1*2 | % 5
++  e4. f16[( e]) e4. g16[( e]) | % 6
++  e4( d)\trill c4 c'8 g | % 7
++  c c, c' a g g, r4 | % 8
++  R1*3 | % 11
++  r2 r4 g'16[( a]) h[( g]) | % 12
++  c4 c, r2 | % 13
++  R1*3 | % 16
++  r2 r4 g'16[( a]) g[( f]) | % 17
++  e8 c c cis d d r4 | % 18
++  r fis8 fis fis4 g | % 19
++  r4 h,8 h h4 c | \barNumberCheck #20
++  d8 c h a16[( g]) d'8 d d4 | % 21
++  g,4 r r2 | % 22
++  R1 | % 23
++  r2 h'4. c16[( g]) | % 24
++  h4. d16[( h]) h4( a) | % 25
++  g8 h8[( a]) fis g[( h a]) fis | % 26
++  g4 f e8 d c h | % 27
++  a8( a'4 g8 f2) | % 28
++  e4 r c' c | % 29
++  c8 c16 c c8 c16 c d2 | \barNumberCheck #30
++  c4 c8 c c4 c8 c8 | % 31
++  h4 c a2 | % 32
++  g4 g16[( a]) h[( g]) c[( h]) c[( h]) a[( g]) a[( f]) | % 33
++  h[( a]) h[( a]) gis[( fis]) gis[( e]) a8[( g f]) e | % 34
++  d d e4 a, r | % 35
++  R1*3 | % 38
++  r2 r4 cis'16[( a]) cis[( a]) | % 39
++  d8 d, h'16[( a]) h[( g]) c8 c, a'16[( g]) a[( g]) | \barNumberCheck #40
++  fis8 fis fis fis g[( f]) e4 | % 41
++  f8 f g4 c, r | % 42
++  r2 r4 e8 e | % 43
++  e4 f r g8 g | % 44
++  g4 a f8 f g4 | % 45
++  c,4 r r g'8 g | % 46
++  c,4 f r g8 g | % 47
++  c,8 c r g'16 g c8 c, r g'16 g | % 48
++  c8 c, r4 r2 \bar"|."
+ }
+ \addQuote "IIIAllegroBMusic" { \IIIAllegroBMusic }
+ 
+ IIIAllegroBLyrics = \lyricmode {
+-  % TODO
+-}
+-
+-
+-IIIAllegroContinuoMusic = \relative c' {
+-  s8
+-  % TODO
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te
++  % 5
++  De -- o o -- mnis ter -- ra,
++  ju -- bi -- la -- te, ju -- bi -- la -- te.
++  % 10
++  Ju -- bi -- la -- te.
++  % 15
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  % 20
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te De -- o o -- mnis ter --
++  % 25
++  ra,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te.
++  Psal -- mum di -- ci -- te no -- mi -- ni e --
++  % 30
++  jus,
++  da -- te glo -- ri -- am lau -- di e -- jus.
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te.
++  % 35
++  Ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi --
++  % 40
++  la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la --
++  % 45
++  te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te,
++  ju -- bi -- la -- te.
++}
++
++
++IIIAllegroBCMusic = \relative c {
++  c8[ c d d] e16[ d c d] e8[ e] | % 2
++  f[ g a h] c[ c, e g] | % 3
++  c4 r r2 | % 4
++  r2 r8 c,8[ e g] | % 5
++  c,8[ c c c] c[ c c c] | % 6
++  a[ a h h] c[ e16 g] c8[ g] | % 7
++  c[ c, c' a] g[ g,] r4 | % 8
++  R1*3 | % 11
++  r2 r16 g16[ h d] g[ a h g] | % 12
++  c4 r16 c[ g e] c8[ c'] c,4 | % 13
++  r16 c[ d e] f[ a g f] e[ d c d] e[ c d e] | % 14
++  f[ d e f] g[ a f g] e[ f g f] e[ d e c] | % 15
++  d[ e fis g] a[ fis e d] g[ fis e d] e[ d c h] | % 16
++  c[ a h c] d[ c h a] h[ g h d] g[ a g f] | % 17
++  e8[ c c cis] d[ d] \TClef d'8[\staccato d]\staccato | % 18
++  d4 \BClef fis,8[ fis] fis4 g8 \AClef g'8\staccato | % 19
++  g4\staccato \BClef h,,8[ h] h4 c8[ c] | \barNumberCheck #20
++  d8[ c] h[ a16 g] d'8[ d d d] | % 21
++  g,8[ h c d] g,[ g' g g] | % 22
++  g[ g g g] a[ a d d] | % 23
++  g,[ g,\staccato h\staccato d]\staccato g[ g g g] | % 24
++  g8[ g g g] e[ e fis fis] | % 25
++  g[ h a fis] g[ b a fis] | % 26
++  g[ g f f] e[ d c h] | % 27
++  a[ a' a g] f[ f f f] | % 28
++  e4 e8[ d] c16[ c d e] f[ a g f] | % 29
++  e[ f g f] e[ d e c] f[ d e f] g[ a f g] | \barNumberCheck #30
++  e[ f d e] c[ d h c] a[ a h c] d[ c h a] | % 31
++  g[ g' fis g] e[ d e c] d[ a h c] d[ c h a] | % 32
++  h[ g h d] g[ a h g] c[ h c h] a[ g a f] | % 33
++  h[ a h a] gis[ fis gis e] a8[ g f e] | % 34
++  d[ d e e] a,[ c d e] | % 35
++  a,4 r4 r2 | % 36
++  R1*2 | % 38
++  r2 r16 e'[ e' d] cis[ h cis a] | % 39
++  d[ c d c] h[ a h g] c[ h c h] a[ g a g] | \barNumberCheck #40
++  fis8[ fis fis fis] g[ f e e] | % 41
++  f[ f g g,] c[ e f g] | % 42
++  c,4 \TClef c'8[\staccato c]\staccato c4\staccato \BClef e,8[ e] | % 43
++  e[ e f] \AClef f'8\staccato f4\staccato \BClef g,8[ g] | % 44
++  g[ g a a] f[ f g g,] | % 45
++  c[ e f f] g[ g g, g] | % 46
++  c[ c f f] g[ g g, g] | % 47
++  c[ c g' g,] c[ c g' g,] | % 48
++  c8.[ c'16] g16.[ c32 g16. e32] c2 \bar"|."
++}
++
++IIIAllegroBCFbMusic = \figuremode {
++  \IIIAllegroSettings
++  \bassFigureExtendersOn
++  <8 3>8 <5 3>8 <5 3\!> <5 3> <6> <6> <6> <6> | % 2
++  \bassFigureExtendersOff <6> <6 4> <6> <6 5> s s <6> <7> | % 3
++  s1 | % 4
++  s2 s8 s <6> <7> | % 5
++  s1 | % 6
++  \bassFigureExtendersOn <7>8 <7> <6 5> <6 5> s2 | % 7
++  s4 s8 <6\\> s2 | % 8
++  s1*5 | % 13
++  s2 <6>16 <6> <6> <6> <6> <6> <6> <6> | % 14
++  <6\!> <6> <6> <6> s s s s <6> <6> <6> <6> <6> <6> <6> <6> | % 15
++  <7 _+>8 <5> <6\\>16 <6\\> <6\\> <6\\> s s s s <6> <6> <6> <6> | % 16
++  <6\! 5> <6 5> <6 5> <6 5>  <_+> <_+> <_+> <_+> <6> <6> <6> <6>  s4 | % 17
++  <6>8 s s <6 5> <_+> <_+> s s | % 18
++  s s <6 5> <6 5> <6 5>4 s | % 19
++  s <6 5!>8 <6 5!> <6 5!>4 s | \barNumberCheck #20
++  <_+>8 <4\+ 2> <6> <6>16 <6> <5 4>8 <5 4> <5 3+> <5 3+> | % 21
++  s <6> <6\! 5> <_+> s2 | % 22
++  s <9 4>8 <9 4> <7 5> <7 5> | % 23
++  s1 | % 24
++  s2 <7 5>8 <7 5> <6 5\!> <6 5> | % 25
++  \bassFigureExtendersOff s <6> <6\\> <6 5> s <6> <6> <6 5> | % 26
++  s s \bassFigureExtendersOn <6 4> <6 3> <3+> <4\+ 3> <6> <6\\> | % 27
++  s s s <6> <7> <7> <6> <6> | % 28
++  <_+>4 <_!>8 <6 4 3> <5>16 s s8 s4 | % 29
++  <6>16 <6> <6> <6> <6> <6> <6> <6> <6\!> <6>  <6>  <6>  s4 | \barNumberCheck #30
++  <6>16 <6> <6> <6> <8> <8> <8> <8> s4 <7 _+>16 <7 _+> <7 _+> <7 _+> | % 31
++  s4 <6>16 <6> <6> <6> <_+> <_+> <_+> <_+> <_+> <_+> <_+> <_+> | % 32
++  <6> s s8 s4 s4 <6 5>16 <6 5> <6 5> <6 5> | % 33
++  <5> <5> <5> <5> <6 5\!> <6 5> <6 5> <6 5> s4 <5>8 <5> | % 34
++  <6 5\!> <6 5> <_+> <_+> s <6> s <_+> | % 35
++  s1*3 | % 36
++  s2 s4 <6 5>16 <6 5> <6 5> <6 5> | % 39
++  <9 3> <9 3> <9 3> <9 3> <5> <5> <5> <5> <9> <9> <9> <9> <5> <5> <5> <5> | \barNumberCheck #40
++  <7>8 <7> <7> <7> s <4 2> <6> <6> | % 41
++  <6\! 5> <6 5> <6\! 4> <5 3> s <6> <6\! 5> s | % 42
++  s2. <6 5->8 <6 5-> | % 43
++  <6 5-> <6 5-> s s s s <7 3!> <7 3!> | % 44
++  <7 3!> <7 3!> s s <6 5> <6 5> <6\! 4> <5 3> | % 45
++  s <6> <6\! 5> <6 5> <6\! 4> <6 4> <5 3> <5 3> | % 46
++  s s <6 5> <6 5> <6\! 4> <6 4> <5 3> <5 3> | % 47
++  s s <5 4> <5 3> s s <5 4> <5 3> | % 48
++  s1 \bar"|."
+ }
+-\addQuote "IIIAllegroContinuoMusic" { \IIIAllegroContinuoMusic }
+-
+-
+-IIIAllegroVcBMusic = \relative c' {
+-  s8
+-  % TODO
+-}
+-\addQuote "IIIAllegroVcBMusic" { \IIIAllegroVcBMusic }
+-
+ 
++% IIIAllegroVcBMusic = \IIIAllegroBCMusic
diff --git a/patches/Mozart_BenedictusSitDeus_Score_Full.ly.patch b/patches/Mozart_BenedictusSitDeus_Score_Full.ly.patch
new file mode 100644
index 0000000000000000000000000000000000000000..6580678a0347d4977153f02833215de7a38f736e
--- /dev/null
+++ b/patches/Mozart_BenedictusSitDeus_Score_Full.ly.patch
@@ -0,0 +1,11 @@
+--- Mozart_BenedictusSitDeus_Score_Full.ly.new	2010-09-28 02:19:20.000000000 +0200
++++ Mozart_BenedictusSitDeus_Score_Full.ly	2010-09-28 02:16:27.000000000 +0200
+@@ -8,6 +8,8 @@
+   scorenumber = \markup{\scoreNumber \FullScoreNumber}
+ }
+ 
++#(set-global-staff-size 12.5)
++
+ \createNoCuesScore #"IAllegro" #'("FullScore")
+ \createNoCuesScore #"IIAndante" #'("FullScore")
+ \createNoCuesScore #"IIIAllegro" #'("FullScore")
diff --git a/patches/Mozart_BenedictusSitDeus_Settings_Global.ily.patch b/patches/Mozart_BenedictusSitDeus_Settings_Global.ily.patch
new file mode 100644
index 0000000000000000000000000000000000000000..482fb04911d767794598c927aa76ad2966273b58
--- /dev/null
+++ b/patches/Mozart_BenedictusSitDeus_Settings_Global.ily.patch
@@ -0,0 +1,57 @@
+--- Mozart_BenedictusSitDeus_Settings_Global.ily.new	2010-09-28 02:19:20.000000000 +0200
++++ Mozart_BenedictusSitDeus_Settings_Global.ily	2010-09-28 02:16:40.000000000 +0200
+@@ -6,19 +6,46 @@
+ 
+ \header {
+   title = "Benedictus sit Deus"
+-  titlepagetitle = "Benedictus sit Deus"
+-  subtitle = "Offertorium, KV 117"
+-  titlepagesubtitle = "Offertorium, KV 117"
++  subtitle = "Offertorium, KV 117 (66a = 47b)"
++%   subsubtitle = "KV 117"
+   composer = "Wolfgang Amadeus Mozart (1756-1791)"
+   copyright = \markup \abs-fontsize #9 \column{
+-      \line { 2010, \with-url #"http://www.edition-kainhofer.com/" {Edition Kainhofer, Vienna,} \concat{\scorenumber.} Alle Rechte vorbehalten / All rights reserved / Printed in Austria. }
++      \line { 2009, \with-url #"http://www.edition-kainhofer.com/" {Edition Kainhofer, Vienna,} \concat{\scorenumber.} Alle Rechte vorbehalten / All rights reserved / Printed in Austria. }
+ %       \line {"Die Ausgabe darf kopiert und ohne Einschränkungen aufgeführt werden. / May be copied and performed without restriction."}
+   }
+ }
+ 
+ %% Possibly adjust the \orchestralScoreStructure here...
+ 
+-%% Add custom keys here, e.g.
+-%% CorKey = \key g \major
+-%% CorIKey = \CorKey
+-%% CorIIKey = \CorKey
++#(oly:modify_score_structure '("VaGroup" "GrandStaff" ("VaI" "VaII")))
++#(oly:modify_score_structure '("Vas" "SimultaneousMusic" ("Va" "VaGroup")))
++#(oly:modify_score_structure '("Str" "StaffGroup" ("VV" "Vas")))
++
++CorKey = {
++  \key c \major
++  \transposition f
++}
++CorIKey = \CorKey
++CorIIKey = \CorKey
++
++
++CorInstrumentName = \markup{\center-column{"Corno I,II" "in Fa/F"}}
++CorIInstrumentName = \markup{\center-column{"Corno I" "in Fa/F"}}
++CorIIInstrumentName = \markup{\center-column{"Corno II" "in Fa/F"}}
++TbeInstrumentName = \markup{\center-column{"Tromba I,II" "in Do/C"}}
++TbeIInstrumentName = \markup{\center-column{"Tromba I" "in Do/C"}}
++TbeIIInstrumentName = \markup{\center-column{"Tromba II" "in Do/C"}}
++TimInstrumentName = \markup{\center-column{"Timpani" "in Do/C"}}
++
++SClef = \clef #"soprano/treble"
++AClef = \clef #"alto/treble"
++TClef = \clef #"tenor/treble_8"
++SSoloClef = \SClef
++TSoloClef = \TClef
++
++#(oly:modify_score_structure '("Fl" "GrandStaff" ("FlI" "FlII")))
++FlInstrumentName = ""
++FlShortInstrumentName = ""
++
++ContinuoInstrumentName = \markup { \center-column { \line{Violoncello, Basso} \line{ ed Organo}}}
++ContinuoShortInstrumentName = \markup { \center-column { \line{Vc. e B.} \line{Org.}}}
diff --git a/patches/TeX_Mozart_BenedictusSitDeus_Include_ContentsMaterial.itex.patch b/patches/TeX_Mozart_BenedictusSitDeus_Include_ContentsMaterial.itex.patch
new file mode 100644
index 0000000000000000000000000000000000000000..35d4af72eb0d7ac0d82d3d704c49aa9c609ce1f4
--- /dev/null
+++ b/patches/TeX_Mozart_BenedictusSitDeus_Include_ContentsMaterial.itex.patch
@@ -0,0 +1,38 @@
+--- TeX_Mozart_BenedictusSitDeus_Include_ContentsMaterial.itex.new	2010-09-28 02:19:20.000000000 +0200
++++ TeX_Mozart_BenedictusSitDeus_Include_ContentsMaterial.itex	2009-09-21 18:16:54.000000000 +0200
+@@ -15,10 +15,13 @@
+ \scorelistbox{
+ Zu diesem Werk (\scoreNumber{...}) liegt folgendes Aufführungsmaterial vor:
+ 
++\LongScoreName{} (-\LongScoreNumber),
+ \FullScoreName{} (-\FullScoreNumber),
+ \VocalScoreName{} (-\VocalScoreNumber),
+-\ChoralScoreName{} (-\ChoralScoreNumber);
+-
++\ParticellScoreName{} (-\ParticellScoreNumber),
++\ChoralScoreName{} (-\ChoralScoreNumber),
++\OriginalScoreName{} (-\OriginalScoreNumber),
++\InstrumentsName{} (-\InstrumentsNumber),
+ \FlIName{} (-\FlINumber),
+ \FlIIName{} (-\FlIINumber),
+ \CorIName{} (-\CorINumber),
+@@ -35,7 +38,7 @@
+ \TName{} (-\TNumber),
+ \BName{} (-\BNumber),
+ \ContinuoName{} (-\ContinuoNumber),
+-\VcBName{} (-\VcBNumber).
++\VcBName{} (-\VcBNumber),
+ 
+ }
+ \end{center}
+@@ -43,8 +46,8 @@
+ \vfill
+ \section*{Hauptquellen der Ausgabe / Main sources of this Edition}
+ \begin{hauptquellen}
+-\item TODO: Benedictus sit Deus, Autograph. TODO.
+-\item TODO: Benedictus sit Deus, Originalausgabe (Partitur), Verlag, Ort, Jahr.
++\item [BH1880] Offertorium pro omni tempore: \q{Benedictus sit Deus}. In: Wolfgang Amadeus Mozart's Werke, Kritisch durchgesehene Gesammtausgabe. Serie 3. Kleinere geistliche Gesangwerke. Zweiter Band, Nr. 20. Breitkopf and Härtel, Leipzig, 1880. (Primary)\\[0em]
++\item [Bä1963] Benedictus sit Deus, Offertorium, Bärenreiter, 1963. Internationale Stiftung Mozarteum, Online Publications (2006). (Secondary)
+ \end{hauptquellen}
+ 
+ \vfill
diff --git a/patches/TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex.patch b/patches/TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex.patch
new file mode 100644
index 0000000000000000000000000000000000000000..39423497a66fb6d7a8c9f1b2305c25b1d5b4c0f8
--- /dev/null
+++ b/patches/TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex.patch
@@ -0,0 +1,31 @@
+--- TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex.new	2010-09-28 02:19:20.000000000 +0200
++++ TeX_Mozart_BenedictusSitDeus_Include_KritBericht.itex	2010-09-28 02:08:57.000000000 +0200
+@@ -233,25 +233,19 @@
+ 
+ \subsubsection*{Einzelbemerkungen}
+ 
+-
+-
+-\subsubsection*{BenedictusSitDeus}
++\subsubsection*{Coro}
+ 
+ \begin{vergleich}
+ TODO
+ \end{vergleich}
+ 
+-
+-
+-\subsubsection*{BenedictusSitDeus}
++\subsubsection*{Aria}
+ 
+ \begin{vergleich}
+ TODO
+ \end{vergleich}
+ 
+-
+-
+-\subsubsection*{BenedictusSitDeus}
++\subsubsection*{Coro}
+ 
+ \begin{vergleich}
+ TODO
diff --git a/patches/TeX_Mozart_BenedictusSitDeus_Include_Text.itex.patch b/patches/TeX_Mozart_BenedictusSitDeus_Include_Text.itex.patch
new file mode 100644
index 0000000000000000000000000000000000000000..9a205041789fd428dcf9ae70810b924c2b710162
--- /dev/null
+++ b/patches/TeX_Mozart_BenedictusSitDeus_Include_Text.itex.patch
@@ -0,0 +1,45 @@
+--- TeX_Mozart_BenedictusSitDeus_Include_Text.itex.new	2010-09-28 02:19:20.000000000 +0200
++++ TeX_Mozart_BenedictusSitDeus_Include_Text.itex	2009-10-01 12:14:27.000000000 +0200
+@@ -1,23 +1,32 @@
+-\subsection*{Text des \q{Benedictus sit Deus}: TODO}
++\section*{Text des Offertoriums / Text of the Offertory}
+ 
+ \begin{lyricstext}
++% \newenvironment{lyricstable}{\begin{supertabular}{p{0.26\textwidth}p{0.33\textwidth}p{0.33\textwidth}}}{\end{supertabular}}
+ 
+-\subsection*{1. Coro}
++
++\subsubsection*{Allegro, nach Tobit 12:6}
+ \begin{lyricstable}
+-TODO & TODO & TODO \\\\[0.5em]
+- & \footnotesize\em{(TODO)} & \footnotesize\em{(TODO)}
++Benedictus sit Deus pater,  & Gelobt sei Gott, der Vater,  & Blessed be God the Father \\
++unigenitusque Dei filius,   & der eingeborene Sohn Gottes, & and the only-begotten Son of God, \\
++sanctus quoque Spiritus,    & und der heilige Geist:       & and the Holy Spirit; \\
++quia fecit nobiscum         & denn er ließ uns             & for he has dealt with us \\
++misericordiam suam.         & seine Güte erfahren.         & according to his mercy.
+ \end{lyricstable}
+ 
+-\subsection*{2. Aria}
++\subsubsection*{Andante, nach Psalm 66(67):13f}
+ \begin{lyricstable}
+-TODO & TODO & TODO \\\\[0.5em]
+- & \footnotesize\em{(TODO)} & \footnotesize\em{(TODO)}
++Introibo domum tuam, Domine, & Ich will in dein Haus treten, Herr,  & I will go into Your house \\
++in holocaustis,              & zum Brandopfer,                      & with burnt offerings; \\
++reddam tibi vota mea,        & ich will dir meine Gelübde bezahlen  & I will pay You my vows, \\
++quae distinxerunt labia mea. & wie meine Lippen gesprochen haben.   & Which my lips have uttered.
+ \end{lyricstable}
+ 
+-\subsection*{3. Coro}
++\subsubsection*{Allegro, nach Psalm 66(67):1f}
+ \begin{lyricstable}
+-TODO & TODO & TODO \\\\[0.5em]
+- & \footnotesize\em{(TODO)} & \footnotesize\em{(TODO)}
++Jubilate Deo omnis terra.   & Jubelt dem Herrn, alle Welt.          & Shout with joy to God, all the earth! \\
++Psalmum dicite nomini ejus, & Betet den Psalm in seinem Namen,      & Sing the glory of his name; \\
++date gloriam laudi ejus.    & gebt Ehre seinem Lob.                 & make his praise glorious! \\
++Jubilate.                   & Jubelt.                               & Shout with joy. \\[0.5em]
+ \end{lyricstable}
+ 
+ \end{lyricstext}
diff --git a/patches/TeX_Mozart_BenedictusSitDeus_Settings.itex.patch b/patches/TeX_Mozart_BenedictusSitDeus_Settings.itex.patch
new file mode 100644
index 0000000000000000000000000000000000000000..c01ea797f97a16509c1ff57d940b3f2fffe2b8b9
--- /dev/null
+++ b/patches/TeX_Mozart_BenedictusSitDeus_Settings.itex.patch
@@ -0,0 +1,29 @@
+--- TeX_Mozart_BenedictusSitDeus_Settings.itex.new	2010-09-28 02:19:20.000000000 +0200
++++ TeX_Mozart_BenedictusSitDeus_Settings.itex	2009-09-20 21:46:47.000000000 +0200
+@@ -1,13 +1,18 @@
+-\title{Benedictus sit Deus}
+-\subtitle{Offertorium, KV 117}
++% Title Page
+ \composer{Wolfgang Amadeus Mozart}
+ \composerdate{(1756-1791)}
+-% \description{Per Coro (SATB) ed Organo o Orchestra}
+-% \instrumentation{2 Oboi, 2 Corni\\2 Violini, Viola, Violoncello\\e Basso Continuo (Organo e Bassi)}
+-\editor{\href{http://reinhold.kainhofer.com/}{Reinhold Kainhofer}}
+-\publisher{\href{http://www.edition-kainhofer.com/}{Edition Kainhofer, Vienna}}
+-\year{2010}
+-
++% \poet{}
++% \poetdate{}
++\title{Benedictus sit Deus}
++\subtitle{Offertorium, KV 117 (66a = 47b)}
++\description{Coro (SATB), Solo (S) ed Orchestra o Organo}
++\instrumentation{2 Flauti, 2 Trombe, 2 Corni,\\
++Timpani, 2 Violini, 2 Viole,\\
++Violoncello ed Contrabbasso}
++\editor{Reinhold Kainhofer}
++\publisher{Edition Kainhofer, Vienna}
++\year{2009}
++% \scoreinfo{Urtext \& Erstdruck}
+ \basename{Mozart_BenedictusSitDeus}
+ 
+ \newcommand{\scoreNumber}[1]{EK-0004-#1}