├── .github └── workflows │ ├── python-app.yml │ └── release.yml ├── .gitignore ├── Anthology ├── Chamber_Other │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv ├── Early_Choral │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv ├── Keyboard_Other │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Augmented Sixths.pdf │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv ├── OpenScore-LiederCorpus │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Augmented Sixths.pdf │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv ├── Orchestral │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Augmented Sixths.pdf │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv ├── Piano_Sonatas │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Augmented Sixths.pdf │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv ├── Quartets │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv ├── Variations_and_Grounds │ ├── Applied Chords.csv │ ├── Augmented Chords.csv │ ├── Augmented Sixths.csv │ ├── Common Tone Diminished Sevenths.csv │ ├── Modal Mixture.csv │ ├── Neapolitan Sixths.csv │ ├── Quiescenzas.csv │ ├── ascending_fifths.csv │ ├── aufsteigender_Quintfall.csv │ ├── descending_fifths.csv │ └── fallender_Quintanstieg.csv └── multi_corpus_plot_count_example.pdf ├── Code ├── Pitch_profiles │ ├── __init__.py │ ├── chord_comparisons.py │ ├── chord_features.py │ ├── chord_usage.py │ ├── get_distributions.py │ ├── key_profiles.py │ └── normalisation_comparison.py ├── Resources │ ├── __init__.py │ ├── chord_profiles.py │ ├── chord_usage │ │ ├── major_Chamber_Other.json │ │ ├── major_Chamber_Other_raw.json │ │ ├── major_Chamber_Other_simple.json │ │ ├── major_Early_Choral.json │ │ ├── major_Early_Choral_raw.json │ │ ├── major_Early_Choral_simple.json │ │ ├── major_Keyboard_Other.json │ │ ├── major_Keyboard_Other_raw.json │ │ ├── major_Keyboard_Other_simple.json │ │ ├── major_OpenScore-LiederCorpus.json │ │ ├── major_OpenScore-LiederCorpus_raw.json │ │ ├── major_OpenScore-LiederCorpus_simple.json │ │ ├── major_Orchestral.json │ │ ├── major_Orchestral_raw.json │ │ ├── major_Orchestral_simple.json │ │ ├── major_Piano_Sonatas.json │ │ ├── major_Piano_Sonatas_raw.json │ │ ├── major_Piano_Sonatas_simple.json │ │ ├── major_Quartets.json │ │ ├── major_Quartets_raw.json │ │ ├── major_Quartets_simple.json │ │ ├── major_Variations_and_Grounds.json │ │ ├── major_Variations_and_Grounds_raw.json │ │ ├── major_Variations_and_Grounds_simple.json │ │ ├── minor_Chamber_Other.json │ │ ├── minor_Chamber_Other_raw.json │ │ ├── minor_Chamber_Other_simple.json │ │ ├── minor_Early_Choral.json │ │ ├── minor_Early_Choral_raw.json │ │ ├── minor_Early_Choral_simple.json │ │ ├── minor_Keyboard_Other.json │ │ ├── minor_Keyboard_Other_raw.json │ │ ├── minor_Keyboard_Other_simple.json │ │ ├── minor_OpenScore-LiederCorpus.json │ │ ├── minor_OpenScore-LiederCorpus_raw.json │ │ ├── minor_OpenScore-LiederCorpus_simple.json │ │ ├── minor_Orchestral.json │ │ ├── minor_Orchestral_raw.json │ │ ├── minor_Orchestral_simple.json │ │ ├── minor_Piano_Sonatas.json │ │ ├── minor_Piano_Sonatas_raw.json │ │ ├── minor_Piano_Sonatas_simple.json │ │ ├── minor_Quartets.json │ │ ├── minor_Quartets_raw.json │ │ ├── minor_Quartets_simple.json │ │ ├── minor_Variations_and_Grounds.json │ │ ├── minor_Variations_and_Grounds_raw.json │ │ └── minor_Variations_and_Grounds_simple.json │ ├── key_profiles_literature.py │ └── metadata.py ├── __init__.py ├── alignStreams.py ├── anthology.py ├── chords_and_progs.py ├── collect_convert.py ├── contents.py ├── converters_local.py ├── create_sub-corpus.py ├── harmonicFunction.py ├── make_list.py ├── mixture.py ├── plot.py ├── romanUmpire.py ├── skeletonHarmony.py ├── test_remote_urls.py └── updates_and_checks.py ├── Corpus ├── Chamber_Other │ └── Corelli,_Arcangelo │ │ ├── Op1No01 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No02 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No03 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No04 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No05 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No06 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No07 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No08 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No09 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No10 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 5 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No11 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op1No12 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ └── remote.json │ │ ├── Op3No01 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No02 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No03 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No04 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No05 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No06 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No07 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No08 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No09 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No10 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No11 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op3No12 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No01 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No02 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No03 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No04 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No05 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No06 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No07 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No08 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No09 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No10 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op4No11 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── Op4No12 │ │ ├── 1 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 2 │ │ ├── analysis.txt │ │ └── remote.json │ │ └── 3 │ │ ├── analysis.txt │ │ └── remote.json ├── Early_Choral │ ├── Bach,_Johann_Sebastian │ │ └── Chorales │ │ │ ├── 100 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 101 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 102 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 103 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 104 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 105 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 106 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 107 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 108 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 109 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 110 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 111 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 112 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 113 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 114 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 115 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 116 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 117 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 118 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 119 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 120 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 121 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 122 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 123 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 124 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 125 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 126 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 127 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 128 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 129 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 130 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 131 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 132 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 133 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 134 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 135 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 136 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 137 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 138 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 139 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 140 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 141 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 142 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 143 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 144 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 145 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 146 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 147 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 148 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 149 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 150 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 151 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 152 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 153 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 154 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 155 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 156 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 157 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 158 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 159 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 160 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 161 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 162 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 163 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 164 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 165 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 166 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 167 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 168 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 169 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 170 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 171 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 172 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 173 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 174 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 175 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 176 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 177 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 178 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 179 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 180 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 181 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 182 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 183 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 184 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 185 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 186 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 187 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 188 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 189 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 190 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 191 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 192 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 193 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 194 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 195 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 196 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 197 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 198 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 199 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 200 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 201 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 202 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 203 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 204 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 205 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 206 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 207 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 208 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 209 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 210 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 211 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 212 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 213 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 214 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 215 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 216 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 217 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 218 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 219 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 220 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 221 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 222 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 223 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 224 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 225 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 226 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 227 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 228 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 229 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 230 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 231 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 232 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 233 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 234 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 235 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 236 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 237 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 238 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 239 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 240 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 241 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 242 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 243 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 244 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 245 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 246 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 247 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 248 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 249 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 250 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 251 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 252 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 253 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 254 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 255 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 256 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 257 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 258 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 259 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 260 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 261 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 262 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 263 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 264 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 265 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 266 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 267 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 268 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 269 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 270 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 271 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 272 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 273 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 274 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 275 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 276 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 277 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 278 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 279 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 280 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 281 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 282 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 283 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 284 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 285 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 286 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 287 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 288 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 289 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 290 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 291 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 292 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 293 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 294 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 295 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 296 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 297 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 298 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 299 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 300 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 301 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 302 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 303 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 304 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 305 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 306 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 307 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 308 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 309 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 310 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 311 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 312 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 313 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 314 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 315 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 316 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 317 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 318 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 319 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 320 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 321 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 322 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 323 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 324 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 325 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 326 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 327 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 328 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 329 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 330 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 331 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 332 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 333 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 334 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 335 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 336 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 337 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 338 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 339 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 340 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 341 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 342 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 343 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 344 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 345 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 346 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 347 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 348 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 349 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 350 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 351 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 352 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 353 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 354 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 355 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 356 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 357 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 358 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 359 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 360 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 361 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 362 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 363 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 364 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 365 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 366 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 367 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 368 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 369 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 370 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 371 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 001 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 002 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 003 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 004 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 005 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 006 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 007 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 008 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 009 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 010 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 011 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 012 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 013 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 014 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 015 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 016 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 017 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 018 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 019 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 020 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 021 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 022 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 023 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 024 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 025 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 026 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 027 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 028 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 029 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 030 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 031 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 032 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 033 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 034 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 035 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 036 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 037 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 038 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 039 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 040 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 041 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 042 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 043 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 044 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 045 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 046 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 047 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 048 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 049 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 050 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 051 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 052 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 053 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 054 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 055 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 056 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 057 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 058 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 059 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 060 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 061 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 062 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 063 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 064 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 065 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 066 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 067 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 068 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 069 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 070 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 071 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 072 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 073 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 074 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 075 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 076 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 077 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 078 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 079 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 080 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 081 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 082 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 083 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 084 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 085 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 086 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 087 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 088 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 089 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 090 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 091 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 092 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 093 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 094 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 095 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 096 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 097 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ ├── 098 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ │ │ └── 099 │ │ │ ├── analysis.txt │ │ │ ├── analysis_BCMH.txt │ │ │ └── remote.json │ ├── Goudimel,_Claude │ │ ├── Psalmes │ │ │ ├── 101 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 105 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 108 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 118 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 119 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 122 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 123 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 124 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 127 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 133 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 135 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 138 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 140 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 150 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 001 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 003 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 021 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 025 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 029 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 032 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 035 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 036 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 042 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 043 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 047 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 049 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 052 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 054 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 056 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 060 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 066 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 068 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 073 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 075 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 079 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 081 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 084 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 089 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 097 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 098 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ └── 099 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ └── Pseaumes │ │ │ ├── 101 │ │ │ └── remote.json │ │ │ ├── 105 │ │ │ └── remote.json │ │ │ ├── 108 │ │ │ └── remote.json │ │ │ ├── 118 │ │ │ └── remote.json │ │ │ ├── 119 │ │ │ └── remote.json │ │ │ ├── 122 │ │ │ └── remote.json │ │ │ ├── 123 │ │ │ └── remote.json │ │ │ ├── 124 │ │ │ └── remote.json │ │ │ ├── 127 │ │ │ └── remote.json │ │ │ ├── 133 │ │ │ └── remote.json │ │ │ ├── 135 │ │ │ └── remote.json │ │ │ ├── 138 │ │ │ └── remote.json │ │ │ ├── 140 │ │ │ └── remote.json │ │ │ ├── 150 │ │ │ └── remote.json │ │ │ ├── 001 │ │ │ └── remote.json │ │ │ ├── 003 │ │ │ └── remote.json │ │ │ ├── 021 │ │ │ └── remote.json │ │ │ ├── 025 │ │ │ └── remote.json │ │ │ ├── 029 │ │ │ └── remote.json │ │ │ ├── 032 │ │ │ └── remote.json │ │ │ ├── 035 │ │ │ └── remote.json │ │ │ ├── 036 │ │ │ └── remote.json │ │ │ ├── 042 │ │ │ └── remote.json │ │ │ ├── 043 │ │ │ └── remote.json │ │ │ ├── 047 │ │ │ └── remote.json │ │ │ ├── 049 │ │ │ └── remote.json │ │ │ ├── 052 │ │ │ └── remote.json │ │ │ ├── 054 │ │ │ └── remote.json │ │ │ ├── 056 │ │ │ └── remote.json │ │ │ ├── 060 │ │ │ └── remote.json │ │ │ ├── 066 │ │ │ └── remote.json │ │ │ ├── 068 │ │ │ └── remote.json │ │ │ ├── 073 │ │ │ └── remote.json │ │ │ ├── 075 │ │ │ └── remote.json │ │ │ ├── 079 │ │ │ └── remote.json │ │ │ ├── 081 │ │ │ └── remote.json │ │ │ ├── 084 │ │ │ └── remote.json │ │ │ ├── 089 │ │ │ └── remote.json │ │ │ ├── 097 │ │ │ └── remote.json │ │ │ ├── 098 │ │ │ └── remote.json │ │ │ └── 099 │ │ │ └── remote.json │ └── Monteverdi,_Claudio │ │ ├── Madrigals_Book_3 │ │ ├── 10 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 11 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 12 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 13 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 14 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 15 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 16 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 17 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 18 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 19 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 20 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 01 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 02 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 03 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 04 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 05 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 06 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 07 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 08 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ └── 09 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── Madrigals_Book_4 │ │ ├── 10 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 11 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 12 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 13 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 14 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 15 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 16 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 17 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 18 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 19 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 20 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 01 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 02 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 03 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 04 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 05 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 06 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 07 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ ├── 08 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ └── 09 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── remote.json │ │ └── Madrigals_Book_5 │ │ ├── 01 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json │ │ ├── 02 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json │ │ ├── 03 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json │ │ ├── 04 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json │ │ ├── 05 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json │ │ ├── 06 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json │ │ ├── 07 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json │ │ └── 08 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ └── remote.json ├── Early_Choral_contents.tsv ├── Keyboard_Other.tsv ├── Keyboard_Other │ ├── Bach,_Johann_Sebastian │ │ ├── The_Well-Tempered_Clavier_I │ │ │ ├── 10 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 11 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 12 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 13 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 14 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 15 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 16 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 17 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 18 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 19 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 20 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 21 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 22 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 23 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 24 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 01 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 02 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 03 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 04 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 05 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 06 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 07 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 08 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 09 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 19_fugue │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ └── 22_fugue │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ └── The_Well-Tempered_Clavier_II │ │ │ ├── 07_fugue │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 11_fugue │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 16_fugue │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 23_fugue │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── 24_fugue │ │ │ ├── analysis.txt │ │ │ └── remote.json │ ├── Chopin,_Frédéric │ │ ├── Mazurkas │ │ │ ├── BI105-1 │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI105-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI105-3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI105-4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI115-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI115-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI115-3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI115-4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI122 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI126-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI126-3 │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI126-4 │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI134 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI140 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI145-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI145-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI145-3 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI153-1 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI153-2 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI153-3 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI157-1 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI157-2 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI157-3 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI16-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI16-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI162-1 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI162-2 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI162-3 │ │ │ │ └── remote.json │ │ │ ├── BI163 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI167 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI168 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI18 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI34 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI38 │ │ │ │ └── remote.json │ │ │ ├── BI60-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI60-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI60-3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI60-4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI61-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI61-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI61-3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI61-4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI61-5 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI71 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI73 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI77-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI77-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI77-3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI77-4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI85 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── BI89-1 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI89-2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI89-3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI89-4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── BI93-1 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ └── BI93-2 │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ ├── Preludes,_Op.28 │ │ │ └── 20 │ │ │ │ ├── analysis.txt │ │ │ │ └── score.mxl │ │ └── Études_Op.10 │ │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ │ └── 12 │ │ │ ├── analysis.txt │ │ │ ├── remote.json │ │ │ └── score.mxl │ ├── Debussy,_Claude │ │ └── Suite_Bergamasque,_L.75 │ │ │ ├── 1_Prelude │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 2_Menuet │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 3_Clair │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── 4_Passepied │ │ │ ├── analysis.txt │ │ │ └── remote.json │ ├── Dvořák,_Antonín │ │ └── Silhouettes,_Op.8 │ │ │ ├── Op08_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No10 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No11 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No12 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op08_No8 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── Op08_No9 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ ├── Grieg,_Edvard │ │ └── Lyric_Pieces │ │ │ ├── Op12_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op12_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op12_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op12_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op12_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op12_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op12_No7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op12_No8 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op38_No8 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op43_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op43_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op43_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op43_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op43_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op43_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op47_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op47_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op47_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op47_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op47_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op47_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op47_No7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op54_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op54_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op54_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op54_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op54_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op54_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op57_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op57_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op57_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op57_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op57_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op57_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op62_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op62_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op62_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op62_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op62_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op62_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op65_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op65_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op65_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op65_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op65_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op65_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op68_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op68_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op68_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op68_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op68_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op68_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op71_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op71_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op71_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op71_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op71_No5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op71_No6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── Op71_No7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ ├── Liszt,_Franz │ │ └── Années_de_pèlerinage │ │ │ ├── S160_1_Chapelle_de_Guillaume_Tell │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S160_2_Au_Lac_de_Wallenstadt │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S160_3_Pastorale │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S160_4_Au_Bord_dUne_Source │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S160_5_Orage │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S160_6_Vallee_dObermann │ │ │ └── remote.json │ │ │ ├── S160_7_Eglogue │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S160_8_Le_Mal_du_Pays_(Heimweh) │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S160_9_Les_Cloches_de_Geneve_(Nocturne) │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S161_1_Sposalizio │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S161_2_Il_Pensieroso │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S161_3_Canzonetta_del_Salvator_Rosa │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S161_4_Sonetto_47_del_Petrarca │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S161_5_Sonetto_104_del_Petrarca │ │ │ └── remote.json │ │ │ ├── S161_6_Sonetto_123_del_Petrarca │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S161_7_Apres_une_lecture_du_Dante │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S162_1_Gondoliera │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── S162_2_Canzone │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── S162_3_Tarantella_da_Guillaume_Louis_Cottrau._Presto_e_canzone_napolitana │ │ │ ├── analysis.txt │ │ │ └── remote.json │ ├── Medtner,_Nikolai │ │ └── Tales │ │ │ ├── Op08_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op14_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op26_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op26_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op26_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op26_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op34_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op34_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op34_No3 │ │ │ └── remote.json │ │ │ ├── Op34_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op35_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op35_No2 │ │ │ └── remote.json │ │ │ ├── Op35_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op35_No4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op42_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op42_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op42_No3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── Op48_No1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── Op48_No2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ ├── Schumann,_Robert │ │ └── Kinderszenen,_Op.15 │ │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 5 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 6 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 7 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 8 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 9 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 10 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 11 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 12 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── 13 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ └── Tchaikovsky,_Pyotr │ │ └── Seasons,_Op.37a │ │ ├── 1 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 2 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 3 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 4 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 5 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 6 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 7 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 8 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 9 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 10 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 11 │ │ ├── analysis.txt │ │ └── remote.json │ │ └── 12 │ │ ├── analysis.txt │ │ └── remote.json ├── OpenScore-LiederCorpus │ ├── Bonis,_Mel │ │ └── _ │ │ │ └── Allons_prier! │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6635424.mscz │ │ │ └── score.mxl │ ├── Brahms,_Johannes │ │ ├── 6_Songs,_Op.3 │ │ │ ├── 1_Liebestreu │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5667843.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Liebe_und_Frühling_I │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4904021.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Liebe_und_Frühling_II │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5004701.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Lied_aus_dem_Gedicht_„Ivan“ │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5667849.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_In_der_Fremde │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5098672.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Lied │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5098678.mscz │ │ │ │ └── score.mxl │ │ ├── 7_Lieder,_Op.48 │ │ │ ├── 1_Der_Gang_zum_Liebchen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5705406.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Der_Überläufer │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5071622.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Liebesklage_des_Mädchens │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4946239.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Gold_überwiegt_die_Liebe │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5705564.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Trost_in_Tränen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5071629.mscz │ │ │ │ └── score.mxl │ │ │ ├── 6_Vergangen_ist_mir_Glück_und_Heil │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5705502.mscz │ │ │ │ └── score.mxl │ │ │ └── 7_Herbstgefühl │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5071636.mscz │ │ │ │ └── score.mxl │ │ └── Marienlieder,_Op.22 │ │ │ ├── 1_Der_englische_Gruss │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ └── score.mxl │ │ │ ├── 2_Marias_Kirchgang │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc8708253.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Marias_Wallfahrt │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc8708688.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Der_Jäger │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc8712405.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Ruf_zur_Maria │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc8712648.mscz │ │ │ └── score.mxl │ │ │ ├── 6_Magdalena │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc8702982.mscz │ │ │ └── score.mxl │ │ │ └── 7_Marias_Lob │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc8718660.mscz │ │ │ └── score.mxl │ ├── Burleigh,_Harry_Thacker │ │ ├── 5_Songs_of_Laurence_Hope │ │ │ ├── 1_Worth_While │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6518082.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_The_Jungle_Flower │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6518134.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Kashmiri_Song │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6518141.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Among_the_Fuchsias │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6471377.mscz │ │ │ │ └── score.mxl │ │ │ └── 5_Till_I_Wake │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6471199.mscz │ │ │ │ └── score.mxl │ │ └── _ │ │ │ ├── Ethiopia_Saluting_the_Colors │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6565727.mscz │ │ │ └── score.mxl │ │ │ ├── Go_down,_Moses │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6351349.mscz │ │ │ └── score.mxl │ │ │ └── Nobody_Knows_de_Trouble_I’ve_Seen │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ ├── Chaminade,_Cécile │ │ └── _ │ │ │ ├── Alleluia │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6260992.mscz │ │ │ └── score.mxl │ │ │ ├── Amertume │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6261036.mscz │ │ │ └── score.mxl │ │ │ ├── Amoroso │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc4999292.mscz │ │ │ └── score.mxl │ │ │ ├── Amour_d’automne │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999304.mscz │ │ │ └── score.mxl │ │ │ ├── Au_pays_bleu │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6261607.mscz │ │ │ └── score.mxl │ │ │ ├── Aubade │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6262515.mscz │ │ │ └── score.mxl │ │ │ ├── Auprès_de_ma_mie │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999309.mscz │ │ │ └── score.mxl │ │ │ ├── Avril_s’éveille │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6262544.mscz │ │ │ └── score.mxl │ │ │ ├── Ballade_à_la_lune │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6264558.mscz │ │ │ └── score.mxl │ │ │ ├── Berceuse │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6264559.mscz │ │ │ └── score.mxl │ │ │ ├── Bleus │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6264560.mscz │ │ │ └── score.mxl │ │ │ ├── Bonne_humeur │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6264562.mscz │ │ │ └── score.mxl │ │ │ ├── Chanson_Groënlandaise │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6293357.mscz │ │ │ └── score.mxl │ │ │ ├── Chanson_de_neige │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6415075.mscz │ │ │ └── score.mxl │ │ │ ├── Chanson_espagnole │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6312216.mscz │ │ │ └── score.mxl │ │ │ ├── Colette │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999324.mscz │ │ │ └── score.mxl │ │ │ ├── Fleur_jetée │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5001810.mscz │ │ │ └── score.mxl │ │ │ ├── L'été │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5987667.mscz │ │ │ └── score.mxl │ │ │ ├── La_Fiancée_du_soldat │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999581.mscz │ │ │ └── score.mxl │ │ │ ├── Les_Rêves │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999602.mscz │ │ │ └── score.mxl │ │ │ ├── L’Idéal │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999332.mscz │ │ │ └── score.mxl │ │ │ ├── L’absente │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999590.mscz │ │ │ └── score.mxl │ │ │ ├── L’allée_d’émeraude_et_d’or │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6260946.mscz │ │ │ └── score.mxl │ │ │ ├── L’amour_captif │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6263726.mscz │ │ │ └── score.mxl │ │ │ ├── L’été │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5987667.mscz │ │ │ └── score.mxl │ │ │ ├── Madrigal │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5001820.mscz │ │ │ └── score.mxl │ │ │ ├── Plaintes_d’amour │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4999607.mscz │ │ │ └── score.mxl │ │ │ ├── Ritournelle │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5000341.mscz │ │ │ └── score.mxl │ │ │ ├── Rosemonde │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5000347.mscz │ │ │ └── score.mxl │ │ │ ├── Rêve_d’un_soir │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5000336.mscz │ │ │ └── score.mxl │ │ │ ├── Souhait │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5004771.mscz │ │ │ └── score.mxl │ │ │ └── Sur_la_plage │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5000363.mscz │ │ │ └── score.mxl │ ├── Chausson,_Ernest │ │ └── 7_Mélodies,_Op.2 │ │ │ ├── 1_Nanny │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5077645.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Le_Charme │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5077651.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Les_Papillons │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5077660.mscz │ │ │ └── score.mxl │ │ │ ├── 4_La_dernière_feuille │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5077675.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Sérénade_italienne │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5920728.mscz │ │ │ └── score.mxl │ │ │ ├── 6_Hébé │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5161599.mscz │ │ │ └── score.mxl │ │ │ └── 7_Le_Colibri │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5077780.mscz │ │ │ └── score.mxl │ ├── Coleridge-Taylor,_Samuel │ │ ├── 6_Sorrow_Songs,_Op.57 │ │ │ ├── 1_Oh_what_comes_over_the_Sea │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6189652.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_When_I_am_dead,_my_dearest │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6189644.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Oh,_Roses_for_the_flush_of_youth │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6189637.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_She_sat_and_sang_alway │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6189628.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Unmindful_of_the_Roses │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6189622.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Too_late_for_love │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6189616.mscz │ │ │ │ └── score.mxl │ │ └── _ │ │ │ ├── Oh,_the_Summer │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6232117.mscz │ │ │ └── score.mxl │ │ │ └── Viking_Song │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6548435.mscz │ │ │ └── score.mxl │ ├── Fauré,_Gabriel │ │ └── 3_Songs,_Op.7 │ │ │ ├── 1_Après_un_rêve │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ └── 3_Barcarolle │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ ├── Franz,_Robert │ │ └── 6_Gesänge,_Op.14 │ │ │ ├── 1_Widmung │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5117906.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Lenz │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5117956.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Waldfahrt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5118339.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Volkslied │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5118411.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Liebesfrühling │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc4976682.mscz │ │ │ └── score.mxl │ │ │ └── 6_Frage_nicht │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5118522.mscz │ │ │ └── score.mxl │ ├── Hensel,_Fanny_(Mendelssohn) │ │ ├── 3_Lieder │ │ │ ├── 1_Sehnsucht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6012947.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Verlust │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6013106.mscz │ │ │ │ └── score.mxl │ │ │ └── 3_Die_Nonne │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6013171.mscz │ │ │ │ └── score.mxl │ │ ├── 3_Songs │ │ │ ├── 1_Das_Heimweh │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6022316.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Italien │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6022185.mscz │ │ │ │ └── score.mxl │ │ │ └── 3_Suleika_und_Hatem │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6022146.mscz │ │ │ │ └── score.mxl │ │ ├── 5_Lieder,_Op.10 │ │ │ ├── 1_Nach_Süden │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5000467.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Vorwurf │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5000464.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Abendbild │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4919798.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Im_Herbste │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5000459.mscz │ │ │ │ └── score.mxl │ │ │ └── 5_Bergeslust │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5000446.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.1 │ │ │ ├── 1_Schwanenlied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5100543.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Wanderlied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5004632.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Warum_sind_denn_die_Rosen_so_blass │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5004640.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Mayenlied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5101299.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Morgenständchen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5004650.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Gondellied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5101361.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.7 │ │ │ ├── 1_Nachtwanderer │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5987757.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Erwin │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5987806.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Frühling │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5987851.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Du_bist_die_Ruh │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5987937.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Bitte │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5987963.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Dein_ist_mein_Herz │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5987993.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.9 │ │ │ ├── 1_Die_Ersehnte │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4986023.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Ferne │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5103883.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Der_Rosenkranz │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5108166.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Die_frühen_Gräber │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4986026.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Der_Maiabend │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5103913.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Die_Mainacht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4986030.mscz │ │ │ │ └── score.mxl │ │ └── Gartenlieder,_Op.3 │ │ │ ├── 1_Hörst_du_nicht_die_Bäume_rauschen │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6022950.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Schöne_Fremde │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6023075.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Im_Herbste │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6024601.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Morgengruss │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6034442.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Abendlich_schon_rauscht_der_Wald │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6034473.mscz │ │ │ └── score.mxl │ │ │ └── 6_Im_Wald │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6034767.mscz │ │ │ └── score.mxl │ ├── Holmès,_Augusta_Mary_Anne │ │ ├── Contes_divins │ │ │ ├── 1_L’aubépine_de_Saint_Patrick │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5903060.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Les_lys_bleus │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5904752.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Le_chemin_du_ciel │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5904897.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_La_Belle_Madeleine │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5925129.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_La_légende_de_Saint_Amour │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5905678.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Les_moutons_des_anges │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5905808.mscz │ │ │ │ └── score.mxl │ │ └── Les_Heures │ │ │ ├── 1_L’Heure_Rose │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5712131.mscz │ │ │ └── score.mxl │ │ │ ├── 2_L’Heure_d’Or │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5712146.mscz │ │ │ └── score.mxl │ │ │ ├── 3_L’Heure_de_Pourpre │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5712149.mscz │ │ │ └── score.mxl │ │ │ └── 4_L’Heure_d’Azur │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5001674.mscz │ │ │ └── score.mxl │ ├── Jaëll,_Marie │ │ └── 4_Mélodies │ │ │ ├── 1_À_toi │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5834392.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Éternel_amour │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5837811.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Les_petits_oiseaux │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5840072.mscz │ │ │ └── score.mxl │ │ │ └── 4_Le_bonheur_s’effeuille_et_passe │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5840228.mscz │ │ │ └── score.mxl │ ├── Joplin,_Scott │ │ └── _ │ │ │ └── Please_Say_You_Will │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6304288.mscz │ │ │ └── score.mxl │ ├── Kinkel,_Johanna │ │ ├── 6_Lieder,_Op.10 │ │ │ ├── 1_Nachgefühl │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6177220.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Der_Kuss │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6177233.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_So_wahr_die_Sonne_scheinet │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6177271.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Wiegenlied │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6177442.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Traumdeutung │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6178990.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Der_Müllerinn_Nachbar │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6179021.mscz │ │ │ │ └── score.mxl │ │ └── 6_Lieder,_Op.15 │ │ │ ├── 1_Römische_Nacht │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6247269.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Du_nah’st! │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6247458.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Wiegenlied │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6247576.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Lust_und_Qual │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6247913.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Rette_Vater,_dein_geliebtes_Kind! │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6249298.mscz │ │ │ └── score.mxl │ │ │ └── 6_untitled_(„War_hinaus_gezogen,_lustig_singend“) │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6249340.mscz │ │ │ └── score.mxl │ ├── Kralik,_Mathilde │ │ └── Blumenlieder │ │ │ ├── 1_Maiglöckchen │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6165152.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Himmelschlüssel │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6165185.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Veilchen │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6165226.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Flieder │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6166144.mscz │ │ │ └── score.mxl │ │ │ └── 5_Rosen │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6166096.mscz │ │ │ └── score.mxl │ ├── Lang,_Josephine │ │ ├── 3_Lieder,_Op.8 │ │ │ ├── 1_Schmetterling │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6088572.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_In_die_Ferne │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6088768.mscz │ │ │ │ └── score.mxl │ │ │ └── 3_Ewige_Nähe │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6089528.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.10 │ │ │ ├── 1_Gedenkst_du_mein │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6069162.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Mignons_Klage │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6110297.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Die_Schwalben │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6069462.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Im_Frühling │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6071196.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Scheideblick │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5002160.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Abschied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6073491.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.12 │ │ │ ├── 1_Am_Wasserfall │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6060661.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Nachts │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6060726.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Abermals_am_See │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6061301.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_O_wärst_du_da │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6059127.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Der_Herbst │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6062682.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Die_wandernde_Wolke │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6059385.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.13 │ │ │ ├── 1_Abschied │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6067798.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Der_Wanderer_an_die_Quellen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6075217.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Aus_der_Ferne │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6077132.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Schmetterling │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6068212.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_An_die_Entfernte │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6077196.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Namenlos │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6077515.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.25 │ │ │ ├── 1_Frühlings-Glaube │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5105407.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Winterseufzer │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5105228.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Barcarole │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5104275.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Lied_(Immer_sich_rein_kindlich_erfreu’n) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4920211.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Die_Wolken │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5115660.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Das_Paradies │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5105152.mscz │ │ │ │ └── score.mxl │ │ └── 6_Lieder,_Op.26 │ │ │ ├── 1_Wiegenlied │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6117412.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Bei_Nacht_und_Nebel │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6117552.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Du_denkst_an_mich_so_selten │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6117742.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Frühes_Sterben │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6118156.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Zusammen │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6118888.mscz │ │ │ └── score.mxl │ │ │ └── 6_Schilflied │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6119892.mscz │ │ │ └── score.mxl │ ├── Mahler,_Gustav │ │ └── Kindertotenlieder │ │ │ ├── 1_Nun_will_die_Sonn’_so_hell_aufgeh’n │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5054519.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Nun_seh’_ich_wohl,_warum_so_dunkle_Flammen │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5051724.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Wenn_dein_Mütterlein │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5052787.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Oft_denk’_ich,_sie_sind_nur_ausgegangen │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5062118.mscz │ │ │ └── score.mxl │ │ │ └── 5_In_diesem_Wetter │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5052823.mscz │ │ │ └── score.mxl │ ├── Mayer,_Emilie │ │ ├── 3_Lieder,_Op.7 │ │ │ ├── 1_Du_bist_wie_eine_Blume │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5840527.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_O_lass_mich_dein_gedenken │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5840434.mscz │ │ │ │ └── score.mxl │ │ │ └── 3_Wenn_der_Abendstern_die_Rosen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5841419.mscz │ │ │ │ └── score.mxl │ │ └── _ │ │ │ └── Der_Erlkönig │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6573780.mscz │ │ │ └── score.mxl │ ├── Paradis,_Maria_Theresia_von │ │ └── 12_Lieder,_1786 │ │ │ ├── 01_An_das_Klavier │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5842033.mscz │ │ │ └── score.mxl │ │ │ ├── 02_Sophia_an_Siegwart │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5842142.mscz │ │ │ └── score.mxl │ │ │ ├── 03_Aus_dem_Siegwart_(Wohl_und_immer_wohl_dem_Mann) │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5900749.mscz │ │ │ └── score.mxl │ │ │ ├── 04_Das_Gärtnerliedchen_aus_dem_Siegwart_(Es_war_einmal_ein_Gärtner) │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5907276.mscz │ │ │ └── score.mxl │ │ │ ├── 05_Die_Tanne_(Sieh_Doris,_wie_vom_Mond_bestrahlt_) │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5907870.mscz │ │ │ └── score.mxl │ │ │ ├── 06_Erinnerung_ans_Schicksal │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5908953.mscz │ │ │ └── score.mxl │ │ │ ├── 07_Der_Auferstehungsmorgen │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5986273.mscz │ │ │ └── score.mxl │ │ │ ├── 08_Morgenlied_eines_armen_Mannes │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5991353.mscz │ │ │ └── score.mxl │ │ │ ├── 09_Vaterlandslied │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5991473.mscz │ │ │ └── score.mxl │ │ │ ├── 10_Da_eben_seinen_Lauf_verbracht │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5994814.mscz │ │ │ └── score.mxl │ │ │ ├── 11_Wenn_ich_der_Kaiser_wäre │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5995576.mscz │ │ │ └── score.mxl │ │ │ └── 12_An_meine_entfernte_Lieben │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5995663.mscz │ │ │ └── score.mxl │ ├── Reichardt,_Louise │ │ ├── Sechs_Lieder_von_Novalis,_Op.4 │ │ │ ├── 1_Sehnsucht_nach_dem_Vaterlande │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002041.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Frühlingslied │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5002052.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3a_Geistliches_Lied │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5092560.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3b_Geistliches_Lied_(4-part) │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5092551.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Bergmannslied │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5002062.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Noch_ein_Bergmannslied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5092612.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Er_besucht_den_Klostergarten_und_den_Kirchoff,_über_den_letztern_findet_sich_folgendes_Gedicht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002078.mscz │ │ │ │ └── score.mxl │ │ ├── Zwölf_Deutsche_und_Italiänische_Romantische_Gesänge │ │ │ ├── 01_Frühlingslied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5067312-adjusted.mscz │ │ │ │ ├── lc5067312.mscz │ │ │ │ └── score.mxl │ │ │ ├── 02_Wenn_ich_ihn_nur_habe │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5100067.mscz │ │ │ │ └── score.mxl │ │ │ ├── 03_Durch_die_bunten_Rosenhecken │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002087.mscz │ │ │ │ └── score.mxl │ │ │ ├── 04_Wohl_dem_Mann │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5100073.mscz │ │ │ │ └── score.mxl │ │ │ ├── 05_Poesia_di_Metastasio_(I) │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5100080.mscz │ │ │ │ └── score.mxl │ │ │ ├── 06_Notturno │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5100188.mscz │ │ │ │ └── score.mxl │ │ │ ├── 07_Poesia_di_Metastasio_(II) │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5101789.mscz │ │ │ │ └── score.mxl │ │ │ ├── 08_Poesie_von_Tieck │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5002096.mscz │ │ │ │ └── score.mxl │ │ │ ├── 09_Aus_Ariels_Offenbarungen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5002100.mscz │ │ │ │ └── score.mxl │ │ │ ├── 10_Ida_(aus_Ariels_Offenbarungen) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002108.mscz │ │ │ │ └── score.mxl │ │ │ ├── 11_Aus_Tiecks_Genoveva │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5002111.mscz │ │ │ │ └── score.mxl │ │ │ └── 12_Heymdal_(aus_Ariels_Offenbarungen) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5101826.mscz │ │ │ │ └── score.mxl │ │ ├── Zwölf_Gesänge,_Op.3 │ │ │ ├── 01_Frühlingsblumen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5001965.mscz │ │ │ │ └── score.mxl │ │ │ ├── 02_Der_traurige_Wanderer │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5061310.mscz │ │ │ │ └── score.mxl │ │ │ ├── 03_Die_Blume_der_Blumen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5001980.mscz │ │ │ │ └── score.mxl │ │ │ ├── 04_Wachtelwacht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5001994.mscz │ │ │ │ └── score.mxl │ │ │ ├── 05_Betteley_der_Vögel │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5001997.mscz │ │ │ │ └── score.mxl │ │ │ ├── 06_Kriegslied_des_Mays │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002006.mscz │ │ │ │ ├── score.mscz │ │ │ │ └── score.mxl │ │ │ ├── 07_Die_Wiese │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5046362.mscz │ │ │ │ └── score.mxl │ │ │ ├── 08_Kaeuzlein │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002015.mscz │ │ │ │ └── score.mxl │ │ │ ├── 09_Hier_liegt_ein_Spielmann_begraben │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002019.mscz │ │ │ │ └── score.mxl │ │ │ ├── 10_Der_Mond │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5061932.mscz │ │ │ │ └── score.mxl │ │ │ ├── 11_An_Maria_(aus_Novalis_geistlichen_Liedern) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5002026.mscz │ │ │ │ └── score.mxl │ │ │ └── 12_Duettino │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5062143.mscz │ │ │ │ └── score.mxl │ │ └── Zwölf_Gesänge │ │ │ ├── 01_Erinnrung_zum_Bach │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5087917.mscz │ │ │ └── score.mxl │ │ │ ├── 02_Der_Sänger_geht │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5002130-adjusted.mscz │ │ │ ├── lc5002130.mscz │ │ │ └── score.mxl │ │ │ ├── 03_Nach_Sevilla │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5046249.mscz │ │ │ └── score.mxl │ │ │ ├── 04_Vaters_Klage │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5001870.mscz │ │ │ └── score.mxl │ │ │ ├── 05_Für_die_Laute_componirt │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5001880.mscz │ │ │ └── score.mxl │ │ │ ├── 06_Unruhiger_Schlaf │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5001911.mscz │ │ │ └── score.mxl │ │ │ ├── 07_Volkslied │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5001925.mscz │ │ │ └── score.mxl │ │ │ ├── 08_Ein_recht_Gemüth │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5001930.mscz │ │ │ └── score.mxl │ │ │ ├── 09_Der_Spinnerin_Nachtlied │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5001937.mscz │ │ │ └── score.mxl │ │ │ ├── 10_Die_Veilchen │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5087944.mscz │ │ │ └── score.mxl │ │ │ ├── 11_Daphne_am_Bach │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5087973.mscz │ │ │ └── score.mxl │ │ │ └── 12_Aus_Novalis_Hymnen_an_die_Nacht │ │ │ ├── lc5001945.mscz │ │ │ └── score.mxl │ ├── Schubert,_Franz │ │ ├── 4_Lieder,_Op.96 │ │ │ ├── 1_Die_Sterne,_D.939 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6485233.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Jägers_Liebeslied,_D.909 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6486395.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Wandrers_Nachtlied,_D.768 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6486443.mscz │ │ │ │ └── score.mxl │ │ │ └── 4_Fischerweise,_D.881 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6487832.mscz │ │ │ │ └── score.mxl │ │ ├── Die_schöne_Müllerin,_D.795 │ │ │ ├── 01_Das_Wandern │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5004731.mscz │ │ │ │ └── score.mxl │ │ │ ├── 02_Wohin │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4982535.mscz │ │ │ │ └── score.mxl │ │ │ ├── 03_Halt! │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985937.mscz │ │ │ │ └── score.mxl │ │ │ ├── 04_Danksagung_an_den_Bach │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985925.mscz │ │ │ │ └── score.mxl │ │ │ ├── 05_Am_Feierabend │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985924.mscz │ │ │ │ └── score.mxl │ │ │ ├── 06_Der_Neugierige │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985930.mscz │ │ │ │ └── score.mxl │ │ │ ├── 07_Ungeduld │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985951.mscz │ │ │ │ └── score.mxl │ │ │ ├── 08_Morgengruß │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5025982.mscz │ │ │ │ └── score.mxl │ │ │ ├── 09_Des_Müllers_Blumen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985932.mscz │ │ │ │ └── score.mxl │ │ │ ├── 10_Tränenregen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5025985.mscz │ │ │ │ └── score.mxl │ │ │ ├── 11_Mein! │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985938.mscz │ │ │ │ └── score.mxl │ │ │ ├── 12_Pause │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985946.mscz │ │ │ │ └── score.mxl │ │ │ ├── 13_Mit_dem_grünen_Lautenbande │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985940.mscz │ │ │ │ └── score.mxl │ │ │ ├── 14_Der_Jäger │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985927.mscz │ │ │ │ └── score.mxl │ │ │ ├── 15_Eifersucht_und_Stolz │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5026236.mscz │ │ │ │ └── score.mxl │ │ │ ├── 16_Die_liebe_Farbe │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985935.mscz │ │ │ │ └── score.mxl │ │ │ ├── 17_Die_böse_Farbe │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985934.mscz │ │ │ │ └── score.mxl │ │ │ ├── 18_Trockne_Blumen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985949.mscz │ │ │ │ └── score.mxl │ │ │ ├── 19_Der_Müller_und_der_Bach │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985922.mscz │ │ │ │ └── score.mxl │ │ │ └── 20_Des_Baches_Wiegenlied │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4985931.mscz │ │ │ │ └── score.mxl │ │ ├── Op.52 │ │ │ ├── 1_Ellens_Gesang_I,_D.837 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6181353.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Ellens_Gesang_II,_D.838 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6181076.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Bootgesang,_D.835 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6181050.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Coronach,_D.836 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6182149.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Normans_Gesang,_D.846 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6182173.mscz │ │ │ │ └── score.mxl │ │ │ ├── 6_Ellens_Gesang_III,_D.839_(Ave_Maria) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6389103.mscz │ │ │ │ └── score.mxl │ │ │ └── 7_Lied_des_gefangenen_Jägers,_D.843 │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc6389071.mscz │ │ │ │ └── score.mxl │ │ ├── Op.59 │ │ │ ├── 1_Du_liebst_mich_nicht │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5103323.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Dass_sie_hier_gewesen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4981984.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Du_bist_die_Ruh │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4919879.mscz │ │ │ │ └── score.mxl │ │ │ └── 4_Lachen_und_Weinen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4982491.mscz │ │ │ │ └── score.mxl │ │ ├── Schwanengesang,_D.957 │ │ │ ├── 01_Liebesbotschaft │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5077744.mscz │ │ │ │ └── score.mxl │ │ │ ├── 02_Kriegers_Ahnung │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4986000.mscz │ │ │ │ └── score.mxl │ │ │ ├── 03_Frühlingssehnsucht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985999.mscz │ │ │ │ └── score.mxl │ │ │ ├── 04_Ständchen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5004835.mscz │ │ │ │ └── score.mxl │ │ │ ├── 05_Aufenthalt │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985990.mscz │ │ │ │ └── score.mxl │ │ │ ├── 06_In_der_Ferne │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985987.mscz │ │ │ │ └── score.mxl │ │ │ ├── 07_Abschied │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978506.mscz │ │ │ │ └── score.mxl │ │ │ ├── 08_Der_Atlas │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985985.mscz │ │ │ │ └── score.mxl │ │ │ ├── 09_Ihr_Bild │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985984.mscz │ │ │ │ └── score.mxl │ │ │ ├── 10_Das_Fischermädchen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5098612.mscz │ │ │ │ └── score.mxl │ │ │ ├── 11_Die_Stadt │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985973.mscz │ │ │ │ └── score.mxl │ │ │ ├── 12_Am_Meer │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985965.mscz │ │ │ │ └── score.mxl │ │ │ ├── 13_Der_Doppelgänger │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985964.mscz │ │ │ │ └── score.mxl │ │ │ └── 14_Die_Taubenpost │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4985962.mscz │ │ │ │ └── score.mxl │ │ ├── Winterreise,_D.911 │ │ │ ├── 01_Gute_Nacht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5015378.mscz │ │ │ │ └── score.mxl │ │ │ ├── 02_Die_Wetterfahne │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5015435.mscz │ │ │ │ └── score.mxl │ │ │ ├── 03_Gefror’ne_Thränen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5015499.mscz │ │ │ │ └── score.mxl │ │ │ ├── 04_Erstarrung │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5015573.mscz │ │ │ │ └── score.mxl │ │ │ ├── 05_Der_Lindenbaum │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5016466.mscz │ │ │ │ └── score.mxl │ │ │ ├── 06_Wasserfluth │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5016512.mscz │ │ │ │ └── score.mxl │ │ │ ├── 07_Auf_dem_Flusse │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5015410.mscz │ │ │ │ └── score.mxl │ │ │ ├── 08_Rückblick │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5015521.mscz │ │ │ │ └── score.mxl │ │ │ ├── 09_Irrlicht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5023438.mscz │ │ │ │ └── score.mxl │ │ │ ├── 10_Rast_(Spätere_Fassung) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5023517.mscz │ │ │ │ └── score.mxl │ │ │ ├── 11_Frühlingstraum │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5023603.mscz │ │ │ │ └── score.mxl │ │ │ ├── 12_Einsamkeit_(Urspruengliche_Fassung) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5023662.mscz │ │ │ │ └── score.mxl │ │ │ ├── 13_Die_Post │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5007176.mscz │ │ │ │ └── score.mxl │ │ │ ├── 14_Der_greise_Kopf │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5007178.mscz │ │ │ │ └── score.mxl │ │ │ ├── 15_Die_Kraehe │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5007179.mscz │ │ │ │ └── score.mxl │ │ │ ├── 16_Letzte_Hoffnung │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5007180.mscz │ │ │ │ └── score.mxl │ │ │ ├── 17_Im_Dorfe │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5007181.mscz │ │ │ │ └── score.mxl │ │ │ ├── 18_Der_stuermische_Morgen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5007182.mscz │ │ │ │ └── score.mxl │ │ │ ├── 19_Täuschung │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5009833.mscz │ │ │ │ └── score.mxl │ │ │ ├── 20_Der_Wegweiser │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5009900.mscz │ │ │ │ └── score.mxl │ │ │ ├── 21_Das_Wirthshaus │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5013945.mscz │ │ │ │ └── score.mxl │ │ │ ├── 22_Muth │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5013969.mscz │ │ │ │ └── score.mxl │ │ │ ├── 23_Die_Nebensonnen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5014002.mscz │ │ │ │ └── score.mxl │ │ │ └── 24_Der_Leiermann_(Spätere_Fassung) │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5014023.mscz │ │ │ │ └── score.mxl │ │ └── _ │ │ │ ├── An_die_Musik,_D.547 │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6180725.mscz │ │ │ └── score.mxl │ │ │ ├── Das_Rosenband,_D.280 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5946872.mscz │ │ │ └── score.mxl │ │ │ └── Ständchen,_D.889 │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5133353.mscz │ │ │ └── score.mxl │ ├── Schumann,_Clara │ │ ├── 6_Lieder,_Op.13 │ │ │ ├── 1_Ich_stand_in_dunklen_Träumen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5133602.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Sie_liebten_sich_beide │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5125680.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Liebeszauber │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5126774.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Der_Mond_kommt_still_gegangen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5126921.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Ich_hab’_in_Deinem_Auge │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5130351.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_Die_stille_Lotosblume │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5130634.mscz │ │ │ │ └── score.mxl │ │ ├── 6_Lieder,_Op.23 │ │ │ ├── 1_Was_weinst_du,_Blümlein │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5133647.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_An_einem_lichten_Morgen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5133773.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Geheimes_Flüstern_hier_und_dort │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5134987.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Auf_einem_grünen_Hügel │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5142672.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Das_ist_ein_Tag,_der_klingen_mag │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5142714.mscz │ │ │ │ └── score.mxl │ │ │ └── 6_O_Lust,_o_Lust │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc5142768.mscz │ │ │ │ └── score.mxl │ │ ├── Lieder,_Op.12 │ │ │ └── 04_Liebst_du_um_Schönheit │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5000397.mscz │ │ │ │ └── score.mxl │ │ └── _ │ │ │ ├── Die_gute_Nacht │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5000388.mscz │ │ │ └── score.mxl │ │ │ └── Lorelei │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4919673.mscz │ │ │ └── score.mxl │ ├── Schumann,_Robert │ │ ├── 5_Lieder_und_Gesänge,_Op.127 │ │ │ ├── 1_Sängers_Trost │ │ │ │ ├── lc6826352.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Dein_Angesicht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc6834542.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Es_leuchtet_meine_Liebe │ │ │ │ ├── lc6826597.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Mein_altes_Ross │ │ │ │ ├── lc6827712.mscz │ │ │ │ └── score.mxl │ │ │ └── 5_Schlusslied_des_Narren │ │ │ │ ├── lc6828018.mscz │ │ │ │ └── score.mxl │ │ ├── Dichterliebe,_Op.48 │ │ │ ├── 01_Im_wunderschönen_Monat_Mai │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4976777.mscz │ │ │ │ └── score.mxl │ │ │ ├── 02_Aus_meinen_Tränen_sprießen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4976769.mscz │ │ │ │ └── score.mxl │ │ │ ├── 03_Die_Rose,_die_Lilie │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4976849.mscz │ │ │ │ └── score.mxl │ │ │ ├── 04_Wenn_ich_in_deine_Augen_seh’ │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978368.mscz │ │ │ │ └── score.mxl │ │ │ ├── 05_Ich_will_meine_Seele_tauchen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978373.mscz │ │ │ │ └── score.mxl │ │ │ ├── 06_Im_Rhein,_im_heiligen_Strome │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978379.mscz │ │ │ │ └── score.mxl │ │ │ ├── 07_Ich_grolle_nicht │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978382.mscz │ │ │ │ └── score.mxl │ │ │ ├── 08_Und_wüssten’s_die_Blumen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978387.mscz │ │ │ │ └── score.mxl │ │ │ ├── 09_Das_ist_ein_Flöten_und_Geigen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978390.mscz │ │ │ │ └── score.mxl │ │ │ ├── 10_Hör’_ich_das_Liedchen_klingen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc5003150.mscz │ │ │ │ └── score.mxl │ │ │ ├── 11_Ein_Jüngling_liebt_ein_Mädchen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978393.mscz │ │ │ │ └── score.mxl │ │ │ ├── 12_Am_leuchtenden_Sommermorgen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978395.mscz │ │ │ │ └── score.mxl │ │ │ ├── 13_Ich_hab’_im_Traum_geweinet │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978396.mscz │ │ │ │ └── score.mxl │ │ │ ├── 14_Allnächtlich_im_Traume │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978397.mscz │ │ │ │ └── score.mxl │ │ │ ├── 15_Aus_alten_Märchen_winkt_es │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978398.mscz │ │ │ │ └── score.mxl │ │ │ └── 16_Die_alten,_bösen_Lieder │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978400.mscz │ │ │ │ └── score.mxl │ │ ├── Frauenliebe_und_Leben,_Op.42 │ │ │ ├── 1_Seit_ich_ihn_gesehen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978468.mscz │ │ │ │ └── score.mxl │ │ │ ├── 2_Er,_der_Herrlichste_von_allen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4978478.mscz │ │ │ │ └── score.mxl │ │ │ ├── 3_Ich_kann’s_nicht_fassen │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── analysis_dez_format.dez │ │ │ │ ├── lc4978485.mscz │ │ │ │ └── score.mxl │ │ │ ├── 4_Du_Ring_an_meinem_Finger │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4978488.mscz │ │ │ │ └── score.mxl │ │ │ ├── 5_Helft_mir,_ihr_Schwestern │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4978491.mscz │ │ │ │ └── score.mxl │ │ │ ├── 6_Süsser_Freund,_du_blickest │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4978494.mscz │ │ │ │ └── score.mxl │ │ │ ├── 7_An_meinem_Herzen │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4978496.mscz │ │ │ │ └── score.mxl │ │ │ └── 8_Nun_hast_du_mir_den_ersten_Schmerz_getan │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── lc4978501.mscz │ │ │ │ └── score.mxl │ │ └── Myrthen,_Op.25 │ │ │ └── 16_Rätsel │ │ │ ├── analysis.txt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6834588.mscz │ │ │ └── score.mxl │ ├── Viardot,_Pauline │ │ └── 6_Mélodies,_VWV_1133-11371176 │ │ │ ├── 1_À_la_Fontaine,_VWV_1133 │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5978033.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Belle_Yoli,_VWV_1134 │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5988382.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Ici-bas_tous_les_lilas_meurent,_VWV_1176 │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5979580.mscz │ │ │ └── score.mxl │ │ │ ├── 4_Sérénade_à_Rosine,_VWV_1137 │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5989772.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Madrid,_VWV_1136 │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5974308.mscz │ │ │ └── score.mxl │ │ │ └── 6_Les_filles_de_Cadix,_VWV_1135 │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5975897.mscz │ │ │ └── score.mxl │ ├── White,_Maude_Valérie │ │ └── 3_Little_Songs │ │ │ ├── 1_When_the_Swallows_Homeward_Fly │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6202466.mscz │ │ │ └── score.mxl │ │ │ ├── 2_A_Memory │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6202530.mscz │ │ │ └── score.mxl │ │ │ └── 3_Let_Us_Forget │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6202660.mscz │ │ │ └── score.mxl │ ├── Wolf,_Hugo │ │ └── Eichendorff-Lieder │ │ │ ├── 01_Der_Freund │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5016637.mscz │ │ │ └── score.mxl │ │ │ ├── 02_Der_Musikant │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5024866.mscz │ │ │ └── score.mxl │ │ │ ├── 03_Verschwiegene_Liebe │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4946077.mscz │ │ │ └── score.mxl │ │ │ ├── 04_Das_Ständchen │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── analysis_onscore.xml │ │ │ ├── lc5024834.mscz │ │ │ └── score.mxl │ │ │ ├── 05_Der_Soldat_I │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5024898.mscz │ │ │ └── score.mxl │ │ │ ├── 06_Der_Soldat_II │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5025040.mscz │ │ │ └── score.mxl │ │ │ ├── 07_Die_Zigeunerin │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5079629.mscz │ │ │ └── score.mxl │ │ │ ├── 08_Nachtzauber │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5039817.mscz │ │ │ └── score.mxl │ │ │ ├── 09_Der_Schreckenberger │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5027811.mscz │ │ │ └── score.mxl │ │ │ ├── 10_Der_Glücksritter │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5032950.mscz │ │ │ └── score.mxl │ │ │ ├── 11_Lieber_Alles │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4945807.mscz │ │ │ └── score.mxl │ │ │ ├── 12_Heimweh │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5057797.mscz │ │ │ └── score.mxl │ │ │ ├── 13_Der_Scholar │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5052792.mscz │ │ │ └── score.mxl │ │ │ ├── 14_Der_verzweifelte_Liebhaber │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5052714.mscz │ │ │ └── score.mxl │ │ │ ├── 15_Unfall │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5057804.mscz │ │ │ └── score.mxl │ │ │ ├── 16_Liebesglück │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc4928198.mscz │ │ │ └── score.mxl │ │ │ ├── 17_Seemans_Abschied │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5052822.mscz │ │ │ └── score.mxl │ │ │ ├── 18_Erwartung │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc5067337.mscz │ │ │ └── score.mxl │ │ │ ├── 19_Die_Nacht │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5052801.mscz │ │ │ └── score.mxl │ │ │ └── 20_Waldmädchen │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc5077482.mscz │ │ │ └── score.mxl │ ├── Zumsteeg,_Emilie │ │ └── 6_Lieder,_Op.4 │ │ │ ├── 1_Die_Kapelle │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── analysis_dez_format.dez │ │ │ ├── lc6159729.mscz │ │ │ └── score.mxl │ │ │ ├── 2_Morgenfreude │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6160298.mscz │ │ │ └── score.mxl │ │ │ ├── 3_Religion │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6162644.mscz │ │ │ └── score.mxl │ │ │ ├── 4_An_meine_Zither │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6162666.mscz │ │ │ └── score.mxl │ │ │ ├── 5_Der_Sternenhimmel │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6162720.mscz │ │ │ └── score.mxl │ │ │ └── 6_Lied_in_der_Ferne │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── lc6164142.mscz │ │ │ └── score.mxl │ └── _OpenScore lieder corpus contents.csv ├── OpenScore-LiederCorpus_contents.tsv ├── Orchestral │ ├── Brahms,_Johannes │ │ └── Ein_deutsches_Requiem,_Op._45 │ │ │ └── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ └── Haydn,_Franz_Joseph │ │ └── Symphony_104 │ │ └── 1 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ ├── analysis_on_score.mscz │ │ └── score.mxl ├── Orchestral_contents.tsv ├── Piano_Sonatas │ ├── Beethoven,_Ludwig_van │ │ ├── Op002_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op002_No2 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op002_No3 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op007 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ └── remote.json │ │ ├── Op010_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_BPS.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op010_No2 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op010_No3 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op013(Pathetique) │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_BPS.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op014_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op014_No2 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op022 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ └── remote.json │ │ ├── Op026 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_BPS.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op027_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_BPS.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op027_No2(Moonlight) │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op028(Pastorale) │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op031_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op031_No2 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_BPS.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op031_No3 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op049_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op049_No2 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op053 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ ├── analysis_DT.txt │ │ │ │ └── remote.json │ │ ├── Op054 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ └── 2 │ │ │ │ └── remote.json │ │ ├── Op057(Appassionata) │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op078 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_BPS.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op079(Sonatina) │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ └── remote.json │ │ ├── Op081a(Les_Adieux) │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op090 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ └── 2 │ │ │ │ └── remote.json │ │ ├── Op101 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ └── remote.json │ │ ├── Op106(Hammerklavier) │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ │ └── remote.json │ │ │ └── 4 │ │ │ │ └── remote.json │ │ ├── Op109 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ ├── Op110 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── BPS_in_transit.csv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ │ └── 3 │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_DCML.txt │ │ │ │ └── remote.json │ │ └── Op111 │ │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── BPS_in_transit.csv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DCML.txt │ │ │ └── remote.json │ │ │ └── 2 │ │ │ ├── analysis.txt │ │ │ ├── analysis_DCML.txt │ │ │ └── remote.json │ └── Mozart,_Wolfgang_Amadeus │ │ ├── K279 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K280 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K281 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K282 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K283 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K284 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K309 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K310 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K311 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K330 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K331 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K332 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K333 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K457 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K533 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K545 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── K570 │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── 3 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── analysis_DT.txt │ │ │ ├── analysis_automatic.rntxt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ └── K576 │ │ ├── 1 │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ ├── analysis.txt │ │ ├── analysis_DT.txt │ │ ├── analysis_automatic.rntxt │ │ ├── remote.json │ │ └── score.mxl │ │ ├── 2 │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ ├── analysis.txt │ │ ├── analysis_DT.txt │ │ ├── analysis_automatic.rntxt │ │ ├── remote.json │ │ └── score.mxl │ │ └── 3 │ │ ├── Working │ │ └── DCML_analysis.tsv │ │ ├── analysis.txt │ │ ├── analysis_DT.txt │ │ ├── analysis_automatic.rntxt │ │ ├── remote.json │ │ └── score.mxl ├── Piano_Sonatas_contents.tsv ├── Quartets │ ├── Beethoven,_Ludwig_van │ │ ├── Op018_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op018_No2 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op018_No3 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op018_No4 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op018_No5 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op018_No6 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op059_No1 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op059_No2 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op059_No3 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op074 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op095 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op127 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op130 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 4 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 5 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 6 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op131 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 4 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 5 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 6 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ └── 7 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ ├── Op132 │ │ │ ├── 1 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ ├── remote.json │ │ │ │ └── score.mxl │ │ │ ├── 4 │ │ │ │ ├── Working │ │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ └── score.mxl │ │ │ └── 5 │ │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ │ ├── analysis.txt │ │ │ │ └── score.mxl │ │ └── Op135 │ │ │ ├── 1 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ ├── Working │ │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── remote.json │ │ │ └── score.mxl │ │ │ └── 4 │ │ │ ├── Working │ │ │ └── DCML_analysis.tsv │ │ │ ├── analysis.txt │ │ │ ├── remote.json │ │ │ └── score.mxl │ ├── Brahms,_Johannes │ │ └── Op51_No1 │ │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ └── Haydn,_Franz_Joseph │ │ ├── Op20_No1 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op20_No2 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op20_No3 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op20_No4 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op20_No5 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op20_No6 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── Op74_No1 │ │ ├── 1 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 2 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ ├── 3 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── 4 │ │ │ ├── analysis.txt │ │ │ └── remote.json │ │ └── Op74_No3 │ │ ├── 1 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 2 │ │ ├── analysis.txt │ │ └── remote.json │ │ ├── 3 │ │ ├── analysis.txt │ │ └── remote.json │ │ └── 4 │ │ ├── analysis.txt │ │ └── remote.json ├── Quartets_contents.tsv ├── Textbooks │ ├── Aldwell,_Edward │ │ └── Harmony_and_Voice_Leading │ │ │ ├── 3 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 7 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 2a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 2b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 2c │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 4a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ └── 4b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ ├── Kostka,_Stefan │ │ └── Tonal_Harmony │ │ │ ├── ex18 │ │ │ ├── 2 │ │ │ │ ├── analysis.rntxt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 4 │ │ │ │ ├── analysis.rntxt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 6 │ │ │ │ ├── analysis.rntxt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 7 │ │ │ │ ├── analysis.rntxt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ ├── 3a │ │ │ │ ├── analysis.rntxt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ └── 3b │ │ │ │ ├── analysis.rntxt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ └── score.mxl │ │ │ └── ex19 │ │ │ ├── 1 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 2 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 3 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 4 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 6 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 10 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 11 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ └── 12 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ ├── Reger,_Max │ │ └── Modulation │ │ │ ├── 10 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 11 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 12 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 13 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 15 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 16 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 17 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 18 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 19 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 20 │ │ │ ├── analysis.rntxt │ │ │ └── score.mxl │ │ │ ├── 21 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 22 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 24 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 25 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 26 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 27 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 28 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 29 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 30 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 31 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 32 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 33 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 34 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 35 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 36 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 37 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 38 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 39 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 40 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 41 │ │ │ ├── analysis.rntxt │ │ │ └── score.mxl │ │ │ ├── 47 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 48 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 49 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 50 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 51 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 52 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 53 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 54 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 55 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 56 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 57 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 58 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 59 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 60 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 61 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 62 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 63 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 64 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 65 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 66 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 67 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 68 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 69 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 70 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 71 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 72 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 73 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 74 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 75 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 76 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 77 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 78 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 79 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 80 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 81 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 82 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 83 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 84 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 85 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 89 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 90 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 91 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 01 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 02 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 03 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 04 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 05 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 06 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 07 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 08 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 09 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 100A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 100B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 42a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 42b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 43a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 43b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 44a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 44b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 45a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 45b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 46a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 46b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 86A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 86B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 87A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 87B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 88A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 88B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 92A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 92B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 93A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 93B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 94A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 94B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 95A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 95B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 96A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 96B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 97A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 97B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 98A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 98B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 99A │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ └── 99B │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ ├── Rimsky-Korsakov,_Nicolai │ │ └── Practical_Manual_of_Harmony │ │ │ ├── 6 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 7 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 8 │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 10a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 10b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 10c │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 10d │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14c │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14d │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14e │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14f │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 14g │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 17a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 17b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 17c │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 17d │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23c │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23d │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23e │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23f │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 23g │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 24a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 24b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5c │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5d │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5e │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5f │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5g │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 5h │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ ├── 9a │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ │ │ └── 9b │ │ │ ├── analysis.rntxt │ │ │ ├── analysis_automatic.rntxt │ │ │ └── score.mxl │ └── Tchaikovsky,_Piotr_Ilyich │ │ └── Guide_to_the_Practical_Study_of_Harmony │ │ ├── 189 │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 195 │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173a │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173b │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173c │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173d │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173e │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173f │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173g │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173h │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173i │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173j │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 173k │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 183a │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 183b │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 183c │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 183d │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 183e │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 185a │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 185b │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 191a │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 191b │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 191c │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ ├── 193a │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl │ │ └── 193b │ │ ├── analysis.rntxt │ │ ├── analysis_automatic.rntxt │ │ └── score.mxl ├── Variations_and_Grounds │ ├── Bach,_Johann_Sebastian │ │ ├── B_Minor_mass,_BWV232 │ │ │ └── Crucifixus │ │ │ │ ├── analysis.txt │ │ │ │ ├── analysis_automatic.rntxt │ │ │ │ ├── score.mscz │ │ │ │ └── score.mxl │ │ └── Partita_No2,_BWV1004 │ │ │ └── 5_Chaconne │ │ │ ├── analysis.txt │ │ │ └── score.mxl │ ├── Beethoven,_Ludwig_van │ │ └── _ │ │ │ ├── Op34 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── Op76 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_63 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_64 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_65 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ ├── remote.json │ │ │ └── scorekrn.mscz │ │ │ ├── WoO_66 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_68 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_69 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_70 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_71 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_72 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_73 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_75 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_76 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_77 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── WoO_78 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ └── WoO_80 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ ├── Mozart,_Wolfgang_Amadeus │ │ └── _ │ │ │ ├── K025 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K179 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K265 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K353 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K354 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K398 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K455 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K501 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ ├── K573 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ │ │ └── K613 │ │ │ ├── analysis.txt │ │ │ ├── analysis_B.txt │ │ │ └── remote.json │ └── Purcell,_Henry │ │ └── _ │ │ ├── Chacony_Z730 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ ├── score.mscz │ │ └── score.mxl │ │ └── Sonata_Z807 │ │ ├── analysis.txt │ │ ├── analysis_automatic.rntxt │ │ ├── score.mscz │ │ └── score.mxl └── Variations_and_Grounds_contents.tsv ├── Lists ├── 2.tsv ├── 3.tsv ├── 32.tsv ├── 4.tsv ├── 42.tsv ├── 43.tsv ├── 432.tsv ├── 5.tsv ├── 52.tsv ├── 53.tsv ├── 532.tsv ├── 54.tsv ├── 542.tsv ├── 543.tsv ├── 5432.tsv ├── 6.tsv ├── 62.tsv ├── 63.tsv ├── 632.tsv ├── 64.tsv ├── 642.tsv ├── 643.tsv ├── 6432.tsv ├── 65.tsv ├── 652.tsv ├── 653.tsv ├── 6532.tsv ├── 654.tsv ├── 6542.tsv ├── 6543.tsv ├── 65432.tsv ├── 7.tsv ├── 72.tsv ├── 73.tsv ├── 732.tsv ├── 74.tsv ├── 742.tsv ├── 743.tsv ├── 7432.tsv ├── 75.tsv ├── 752.tsv ├── 753.tsv ├── 7532.tsv ├── 754.tsv ├── 7542.tsv ├── 7543.tsv ├── 75432.tsv ├── 76.tsv ├── 762.tsv ├── 763.tsv ├── 7632.tsv ├── 764.tsv ├── 7642.tsv ├── 7643.tsv ├── 76432.tsv ├── 765.tsv ├── 7652.tsv ├── 7653.tsv ├── 76532.tsv ├── 7654.tsv ├── 76542.tsv ├── 76543.tsv ├── 765432.tsv ├── 8.tsv ├── 82.tsv ├── 83.tsv ├── 832.tsv ├── 84.tsv ├── 842.tsv ├── 843.tsv ├── 8432.tsv ├── 85.tsv ├── 852.tsv ├── 853.tsv ├── 8532.tsv ├── 854.tsv ├── 8542.tsv ├── 8543.tsv ├── 85432.tsv ├── 86.tsv ├── 862.tsv ├── 863.tsv ├── 8632.tsv ├── 864.tsv ├── 8642.tsv ├── 8643.tsv ├── 86432.tsv ├── 865.tsv ├── 8652.tsv ├── 8653.tsv ├── 86532.tsv ├── 8654.tsv ├── 86542.tsv ├── 86543.tsv ├── 865432.tsv ├── 87.tsv ├── 872.tsv ├── 873.tsv ├── 8732.tsv ├── 874.tsv ├── 8742.tsv ├── 8743.tsv ├── 87432.tsv ├── 875.tsv ├── 8752.tsv ├── 8753.tsv ├── 87532.tsv ├── 8754.tsv ├── 87542.tsv ├── 87543.tsv ├── 875432.tsv ├── 876.tsv ├── 8762.tsv ├── 8763.tsv ├── 87632.tsv ├── 8764.tsv ├── 87642.tsv ├── 87643.tsv ├── 876432.tsv ├── 8765.tsv ├── 87652.tsv ├── 87653.tsv ├── 876532.tsv ├── 87654.tsv ├── 876542.tsv ├── 876543.tsv ├── 8765432.tsv ├── 9.tsv ├── 92.tsv ├── 93.tsv ├── 932.tsv ├── 94.tsv ├── 942.tsv ├── 943.tsv ├── 9432.tsv ├── 95.tsv ├── 952.tsv ├── 953.tsv ├── 9532.tsv ├── 954.tsv ├── 9542.tsv ├── 9543.tsv ├── 95432.tsv ├── 96.tsv ├── 962.tsv ├── 963.tsv ├── 9632.tsv ├── 964.tsv ├── 9642.tsv ├── 9643.tsv ├── 96432.tsv ├── 965.tsv ├── 9652.tsv ├── 9653.tsv ├── 96532.tsv ├── 9654.tsv ├── 96542.tsv ├── 96543.tsv ├── 965432.tsv ├── 97.tsv ├── 972.tsv ├── 973.tsv ├── 9732.tsv ├── 974.tsv ├── 9742.tsv ├── 9743.tsv ├── 97432.tsv ├── 975.tsv ├── 9752.tsv ├── 9753.tsv ├── 97532.tsv ├── 9754.tsv ├── 97542.tsv ├── 97543.tsv ├── 975432.tsv ├── 976.tsv ├── 9762.tsv ├── 9763.tsv ├── 97632.tsv ├── 9764.tsv ├── 97642.tsv ├── 97643.tsv ├── 976432.tsv ├── 9765.tsv ├── 97652.tsv ├── 97653.tsv ├── 976532.tsv ├── 97654.tsv ├── 976542.tsv ├── 976543.tsv ├── 9765432.tsv ├── 98.tsv ├── 982.tsv ├── 983.tsv ├── 9832.tsv ├── 984.tsv ├── 9842.tsv ├── 9843.tsv ├── 98432.tsv ├── 985.tsv ├── 9852.tsv ├── 9853.tsv ├── 98532.tsv ├── 9854.tsv ├── 98542.tsv ├── 98543.tsv ├── 985432.tsv ├── 986.tsv ├── 9862.tsv ├── 9863.tsv ├── 98632.tsv ├── 9864.tsv ├── 98642.tsv ├── 98643.tsv ├── 986432.tsv ├── 9865.tsv ├── 98652.tsv ├── 98653.tsv ├── 986532.tsv ├── 98654.tsv ├── 986542.tsv ├── 986543.tsv ├── 9865432.tsv ├── 987.tsv ├── 9872.tsv ├── 9873.tsv ├── 98732.tsv ├── 9874.tsv ├── 98742.tsv ├── 98743.tsv ├── 987432.tsv ├── 9875.tsv ├── 98752.tsv ├── 98753.tsv ├── 987532.tsv ├── 98754.tsv ├── 987542.tsv ├── 987543.tsv ├── 9875432.tsv ├── 9876.tsv ├── 98762.tsv ├── 98763.tsv ├── 987632.tsv ├── 98764.tsv ├── 987642.tsv ├── 987643.tsv ├── 9876432.tsv ├── 98765.tsv ├── 987652.tsv ├── 987653.tsv ├── 9876532.tsv ├── 987654.tsv ├── 9876542.tsv ├── 9876543.tsv └── 98765432.tsv ├── README.md ├── Tests ├── Resources │ ├── Example │ │ ├── analysis.txt │ │ ├── analysis_BPS_format.csv │ │ ├── analysis_dez_format.dez │ │ ├── analysis_on_score.mxl │ │ ├── feedback_on_analysis.txt │ │ ├── lc5000397.mscz │ │ ├── profiles_and_features_by_chord.arff │ │ ├── profiles_and_features_by_chord.csv │ │ ├── profiles_and_features_by_chord.json │ │ ├── profiles_and_features_by_chord.tsv │ │ ├── profiles_and_features_by_key.arff │ │ ├── profiles_and_features_by_key.csv │ │ ├── profiles_and_features_by_key.json │ │ ├── profiles_and_features_by_key.tsv │ │ ├── profiles_and_features_by_measure.arff │ │ ├── profiles_and_features_by_measure.csv │ │ ├── profiles_and_features_by_measure.json │ │ ├── profiles_and_features_by_measure.tsv │ │ ├── profiles_by_chord.arff │ │ ├── profiles_by_chord.csv │ │ ├── profiles_by_chord.json │ │ ├── profiles_by_chord.tsv │ │ ├── profiles_by_key.arff │ │ ├── profiles_by_key.csv │ │ ├── profiles_by_key.json │ │ ├── profiles_by_key.tsv │ │ ├── profiles_by_measure.arff │ │ ├── profiles_by_measure.csv │ │ ├── profiles_by_measure.json │ │ ├── profiles_by_measure.tsv │ │ ├── score.mxl │ │ ├── slices.tsv │ │ ├── slices_with_analysis.tsv │ │ ├── template.txt │ │ └── transition_features.json │ └── testPartialAnalysis.mxl ├── __init__.py ├── test_Roman_umpire.py ├── test_anthology.py ├── test_chord_comparisons.py ├── test_chord_features_and_usage.py ├── test_converters_local.py ├── test_get_distributions.py ├── test_harmonic_function.py ├── test_key_profiles.py ├── test_make_list.py ├── test_metadata.py ├── test_mixture.py ├── test_normalisation_comparison.py └── test_skeleton_harmony.py ├── environment.yml └── syntax.md /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/.gitignore -------------------------------------------------------------------------------- /Anthology/Chamber_Other/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/Common Tone Diminished Sevenths.csv: -------------------------------------------------------------------------------- 1 | COMPOSER,COLLECTION,MOVEMENT,MEASURE 2 | -------------------------------------------------------------------------------- /Anthology/Chamber_Other/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/aufsteigender_Quintfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/aufsteigender_Quintfall.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Chamber_Other/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Chamber_Other/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/Common Tone Diminished Sevenths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/Common Tone Diminished Sevenths.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/aufsteigender_Quintfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/aufsteigender_Quintfall.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Early_Choral/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Early_Choral/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/Augmented Sixths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/Augmented Sixths.pdf -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/aufsteigender_Quintfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/aufsteigender_Quintfall.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Keyboard_Other/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Keyboard_Other/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/Augmented Sixths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/Augmented Sixths.pdf -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/OpenScore-LiederCorpus/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/OpenScore-LiederCorpus/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/Augmented Sixths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Augmented Sixths.pdf -------------------------------------------------------------------------------- /Anthology/Orchestral/Common Tone Diminished Sevenths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Common Tone Diminished Sevenths.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/aufsteigender_Quintfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/aufsteigender_Quintfall.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Orchestral/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Orchestral/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Augmented Sixths.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Augmented Sixths.pdf -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Common Tone Diminished Sevenths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Common Tone Diminished Sevenths.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/aufsteigender_Quintfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/aufsteigender_Quintfall.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Piano_Sonatas/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Piano_Sonatas/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/Quartets/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/Quartets/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/Quartets/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/Quartets/Common Tone Diminished Sevenths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/Common Tone Diminished Sevenths.csv -------------------------------------------------------------------------------- /Anthology/Quartets/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/Quartets/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/Quartets/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/Quartets/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Quartets/aufsteigender_Quintfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/aufsteigender_Quintfall.csv -------------------------------------------------------------------------------- /Anthology/Quartets/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Quartets/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Quartets/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/Applied Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/Applied Chords.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/Augmented Chords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/Augmented Chords.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/Augmented Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/Augmented Sixths.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/Modal Mixture.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/Modal Mixture.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/Neapolitan Sixths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/Neapolitan Sixths.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/Quiescenzas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/Quiescenzas.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/ascending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/ascending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/descending_fifths.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/descending_fifths.csv -------------------------------------------------------------------------------- /Anthology/Variations_and_Grounds/fallender_Quintanstieg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/Variations_and_Grounds/fallender_Quintanstieg.csv -------------------------------------------------------------------------------- /Anthology/multi_corpus_plot_count_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Anthology/multi_corpus_plot_count_example.pdf -------------------------------------------------------------------------------- /Code/Pitch_profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code/Pitch_profiles/chord_comparisons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Pitch_profiles/chord_comparisons.py -------------------------------------------------------------------------------- /Code/Pitch_profiles/chord_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Pitch_profiles/chord_features.py -------------------------------------------------------------------------------- /Code/Pitch_profiles/chord_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Pitch_profiles/chord_usage.py -------------------------------------------------------------------------------- /Code/Pitch_profiles/get_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Pitch_profiles/get_distributions.py -------------------------------------------------------------------------------- /Code/Pitch_profiles/key_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Pitch_profiles/key_profiles.py -------------------------------------------------------------------------------- /Code/Pitch_profiles/normalisation_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Pitch_profiles/normalisation_comparison.py -------------------------------------------------------------------------------- /Code/Resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/__init__.py -------------------------------------------------------------------------------- /Code/Resources/chord_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_profiles.py -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Chamber_Other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Chamber_Other.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Chamber_Other_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Chamber_Other_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Chamber_Other_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Chamber_Other_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Early_Choral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Early_Choral.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Early_Choral_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Early_Choral_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Early_Choral_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Early_Choral_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Keyboard_Other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Keyboard_Other.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Keyboard_Other_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Keyboard_Other_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Keyboard_Other_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Keyboard_Other_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Orchestral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Orchestral.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Orchestral_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Orchestral_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Orchestral_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Orchestral_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Piano_Sonatas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Piano_Sonatas.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Piano_Sonatas_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Piano_Sonatas_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Piano_Sonatas_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Piano_Sonatas_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Quartets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Quartets.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Quartets_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Quartets_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/major_Quartets_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/major_Quartets_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Chamber_Other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Chamber_Other.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Chamber_Other_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Chamber_Other_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Chamber_Other_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Chamber_Other_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Early_Choral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Early_Choral.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Early_Choral_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Early_Choral_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Early_Choral_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Early_Choral_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Keyboard_Other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Keyboard_Other.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Keyboard_Other_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Keyboard_Other_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Keyboard_Other_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Keyboard_Other_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Orchestral.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Orchestral.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Orchestral_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Orchestral_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Orchestral_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Orchestral_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Piano_Sonatas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Piano_Sonatas.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Piano_Sonatas_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Piano_Sonatas_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Piano_Sonatas_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Piano_Sonatas_simple.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Quartets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Quartets.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Quartets_raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Quartets_raw.json -------------------------------------------------------------------------------- /Code/Resources/chord_usage/minor_Quartets_simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/chord_usage/minor_Quartets_simple.json -------------------------------------------------------------------------------- /Code/Resources/key_profiles_literature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/key_profiles_literature.py -------------------------------------------------------------------------------- /Code/Resources/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/Resources/metadata.py -------------------------------------------------------------------------------- /Code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/__init__.py -------------------------------------------------------------------------------- /Code/alignStreams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/alignStreams.py -------------------------------------------------------------------------------- /Code/anthology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/anthology.py -------------------------------------------------------------------------------- /Code/chords_and_progs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/chords_and_progs.py -------------------------------------------------------------------------------- /Code/collect_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/collect_convert.py -------------------------------------------------------------------------------- /Code/contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/contents.py -------------------------------------------------------------------------------- /Code/converters_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/converters_local.py -------------------------------------------------------------------------------- /Code/create_sub-corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/create_sub-corpus.py -------------------------------------------------------------------------------- /Code/harmonicFunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/harmonicFunction.py -------------------------------------------------------------------------------- /Code/make_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/make_list.py -------------------------------------------------------------------------------- /Code/mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/mixture.py -------------------------------------------------------------------------------- /Code/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/plot.py -------------------------------------------------------------------------------- /Code/romanUmpire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/romanUmpire.py -------------------------------------------------------------------------------- /Code/skeletonHarmony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/skeletonHarmony.py -------------------------------------------------------------------------------- /Code/test_remote_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/test_remote_urls.py -------------------------------------------------------------------------------- /Code/updates_and_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Code/updates_and_checks.py -------------------------------------------------------------------------------- /Corpus/Early_Choral_contents.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Early_Choral_contents.tsv -------------------------------------------------------------------------------- /Corpus/Keyboard_Other.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Keyboard_Other.tsv -------------------------------------------------------------------------------- /Corpus/OpenScore-LiederCorpus_contents.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/OpenScore-LiederCorpus_contents.tsv -------------------------------------------------------------------------------- /Corpus/Orchestral_contents.tsv: -------------------------------------------------------------------------------- 1 | COMPOSER COLLECTION MOVEMENT SCORE 2 | Haydn, Franz Joseph Symphony 104 1 YES 3 | -------------------------------------------------------------------------------- /Corpus/Piano_Sonatas_contents.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Piano_Sonatas_contents.tsv -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No1/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No2/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No3/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No4/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No5/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op018_No6/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No1/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No2/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op059_No3/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/1/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/1/analysis.txt -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/2/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/2/analysis.txt -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/3/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/3/analysis.txt -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/4/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/4/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op074/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op074/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/4/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/4/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op095/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op095/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/4/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/4/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op127/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op127/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/4/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/4/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/5/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/5/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/5/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/5/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/6/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/6/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op130/6/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op130/6/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/4/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/4/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/5/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/5/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/5/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/5/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/6/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/6/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/6/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/6/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/7/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/7/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op131/7/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op131/7/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op132/5/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op132/5/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/1/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/1/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/2/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/2/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/3/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/3/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/4/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/4/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Beethoven,_Ludwig_van/Op135/4/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Beethoven,_Ludwig_van/Op135/4/score.mxl -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/1/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/1/analysis.txt -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/1/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/1/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/2/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/2/analysis.txt -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/2/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/2/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/3/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/3/analysis.txt -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/3/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/3/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/4/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/4/analysis.txt -------------------------------------------------------------------------------- /Corpus/Quartets/Brahms,_Johannes/Op51_No1/4/remote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets/Brahms,_Johannes/Op51_No1/4/remote.json -------------------------------------------------------------------------------- /Corpus/Quartets_contents.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Quartets_contents.tsv -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/01/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/01/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/01/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/01/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/02/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/02/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/02/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/02/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/03/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/03/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/03/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/03/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/04/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/04/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/04/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/04/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/05/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/05/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/05/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/05/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/06/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/06/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/06/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/06/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/07/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/07/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/07/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/07/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/08/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/08/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/08/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/08/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/09/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/09/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/09/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/09/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/10/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/10/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/10/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/10/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/100A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/100A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/100B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/100B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/11/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/11/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/11/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/11/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/12/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/12/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/12/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/12/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/13/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/13/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/13/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/13/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/14/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/14/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/14/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/14/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/15/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/15/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/15/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/15/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/16/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/16/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/16/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/16/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/17/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/17/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/17/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/17/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/18/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/18/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/18/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/18/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/19/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/19/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/19/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/19/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/20/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/20/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/20/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/20/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/21/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/21/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/21/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/21/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/22/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/22/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/22/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/22/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/23/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/23/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/23/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/23/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/24/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/24/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/24/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/24/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/25/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/25/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/25/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/25/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/26/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/26/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/26/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/26/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/27/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/27/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/27/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/27/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/28/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/28/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/28/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/28/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/29/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/29/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/29/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/29/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/30/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/30/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/30/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/30/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/31/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/31/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/31/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/31/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/32/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/32/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/32/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/32/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/33/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/33/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/33/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/33/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/34/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/34/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/34/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/34/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/35/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/35/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/35/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/35/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/36/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/36/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/36/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/36/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/37/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/37/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/37/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/37/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/38/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/38/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/38/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/38/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/39/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/39/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/39/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/39/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/40/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/40/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/40/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/40/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/41/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/41/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/41/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/41/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/42a/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/42a/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/42a/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/42a/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/42b/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/42b/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/42b/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/42b/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/43a/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/43a/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/43a/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/43a/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/43b/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/43b/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/43b/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/43b/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/44a/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/44a/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/44a/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/44a/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/44b/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/44b/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/44b/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/44b/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/45a/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/45a/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/45a/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/45a/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/45b/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/45b/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/45b/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/45b/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/46a/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/46a/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/46a/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/46a/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/46b/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/46b/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/46b/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/46b/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/47/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/47/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/47/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/47/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/48/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/48/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/48/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/48/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/49/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/49/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/49/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/49/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/50/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/50/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/50/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/50/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/51/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/51/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/51/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/51/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/52/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/52/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/52/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/52/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/53/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/53/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/53/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/53/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/54/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/54/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/54/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/54/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/55/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/55/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/55/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/55/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/56/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/56/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/56/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/56/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/57/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/57/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/57/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/57/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/58/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/58/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/58/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/58/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/59/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/59/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/59/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/59/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/60/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/60/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/60/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/60/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/61/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/61/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/61/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/61/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/62/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/62/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/62/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/62/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/63/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/63/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/63/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/63/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/64/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/64/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/64/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/64/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/65/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/65/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/65/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/65/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/66/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/66/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/66/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/66/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/67/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/67/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/67/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/67/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/68/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/68/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/68/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/68/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/69/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/69/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/69/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/69/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/70/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/70/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/70/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/70/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/71/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/71/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/71/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/71/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/72/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/72/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/72/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/72/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/73/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/73/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/73/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/73/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/74/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/74/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/74/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/74/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/75/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/75/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/75/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/75/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/76/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/76/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/76/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/76/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/77/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/77/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/77/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/77/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/78/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/78/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/78/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/78/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/79/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/79/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/79/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/79/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/80/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/80/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/80/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/80/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/81/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/81/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/81/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/81/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/82/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/82/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/82/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/82/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/83/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/83/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/83/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/83/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/84/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/84/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/84/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/84/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/85/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/85/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/85/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/85/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/86A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/86A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/86A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/86A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/86B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/86B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/86B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/86B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/87A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/87A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/87A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/87A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/87B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/87B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/87B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/87B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/88A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/88A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/88A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/88A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/88B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/88B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/88B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/88B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/89/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/89/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/89/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/89/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/90/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/90/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/90/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/90/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/91/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/91/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/91/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/91/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/92A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/92A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/92A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/92A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/92B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/92B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/92B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/92B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/93A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/93A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/93A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/93A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/93B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/93B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/93B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/93B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/94A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/94A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/94A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/94A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/94B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/94B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/94B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/94B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/95A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/95A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/95A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/95A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/95B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/95B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/95B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/95B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/96A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/96A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/96A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/96A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/96B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/96B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/96B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/96B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/97A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/97A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/97A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/97A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/97B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/97B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/97B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/97B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/98A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/98A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/98A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/98A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/98B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/98B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/98B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/98B/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/99A/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/99A/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/99A/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/99A/score.mxl -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/99B/analysis.rntxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/99B/analysis.rntxt -------------------------------------------------------------------------------- /Corpus/Textbooks/Reger,_Max/Modulation/99B/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Textbooks/Reger,_Max/Modulation/99B/score.mxl -------------------------------------------------------------------------------- /Corpus/Variations_and_Grounds_contents.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Corpus/Variations_and_Grounds_contents.tsv -------------------------------------------------------------------------------- /Lists/2.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/2.tsv -------------------------------------------------------------------------------- /Lists/3.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/3.tsv -------------------------------------------------------------------------------- /Lists/32.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/32.tsv -------------------------------------------------------------------------------- /Lists/4.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/4.tsv -------------------------------------------------------------------------------- /Lists/42.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/42.tsv -------------------------------------------------------------------------------- /Lists/43.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/43.tsv -------------------------------------------------------------------------------- /Lists/432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/432.tsv -------------------------------------------------------------------------------- /Lists/5.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/5.tsv -------------------------------------------------------------------------------- /Lists/52.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/52.tsv -------------------------------------------------------------------------------- /Lists/53.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/53.tsv -------------------------------------------------------------------------------- /Lists/532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/532.tsv -------------------------------------------------------------------------------- /Lists/54.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/54.tsv -------------------------------------------------------------------------------- /Lists/542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/542.tsv -------------------------------------------------------------------------------- /Lists/543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/543.tsv -------------------------------------------------------------------------------- /Lists/5432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/5432.tsv -------------------------------------------------------------------------------- /Lists/6.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/6.tsv -------------------------------------------------------------------------------- /Lists/62.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/62.tsv -------------------------------------------------------------------------------- /Lists/63.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/63.tsv -------------------------------------------------------------------------------- /Lists/632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/632.tsv -------------------------------------------------------------------------------- /Lists/64.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/64.tsv -------------------------------------------------------------------------------- /Lists/642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/642.tsv -------------------------------------------------------------------------------- /Lists/643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/643.tsv -------------------------------------------------------------------------------- /Lists/6432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/6432.tsv -------------------------------------------------------------------------------- /Lists/65.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/65.tsv -------------------------------------------------------------------------------- /Lists/652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/652.tsv -------------------------------------------------------------------------------- /Lists/653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/653.tsv -------------------------------------------------------------------------------- /Lists/6532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/6532.tsv -------------------------------------------------------------------------------- /Lists/654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/654.tsv -------------------------------------------------------------------------------- /Lists/6542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/6542.tsv -------------------------------------------------------------------------------- /Lists/6543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/6543.tsv -------------------------------------------------------------------------------- /Lists/65432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/65432.tsv -------------------------------------------------------------------------------- /Lists/7.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7.tsv -------------------------------------------------------------------------------- /Lists/72.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/72.tsv -------------------------------------------------------------------------------- /Lists/73.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/73.tsv -------------------------------------------------------------------------------- /Lists/732.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/732.tsv -------------------------------------------------------------------------------- /Lists/74.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/74.tsv -------------------------------------------------------------------------------- /Lists/742.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/742.tsv -------------------------------------------------------------------------------- /Lists/743.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/743.tsv -------------------------------------------------------------------------------- /Lists/7432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7432.tsv -------------------------------------------------------------------------------- /Lists/75.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/75.tsv -------------------------------------------------------------------------------- /Lists/752.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/752.tsv -------------------------------------------------------------------------------- /Lists/753.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/753.tsv -------------------------------------------------------------------------------- /Lists/7532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7532.tsv -------------------------------------------------------------------------------- /Lists/754.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/754.tsv -------------------------------------------------------------------------------- /Lists/7542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7542.tsv -------------------------------------------------------------------------------- /Lists/7543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7543.tsv -------------------------------------------------------------------------------- /Lists/75432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/75432.tsv -------------------------------------------------------------------------------- /Lists/76.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/76.tsv -------------------------------------------------------------------------------- /Lists/762.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/762.tsv -------------------------------------------------------------------------------- /Lists/763.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/763.tsv -------------------------------------------------------------------------------- /Lists/7632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7632.tsv -------------------------------------------------------------------------------- /Lists/764.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/764.tsv -------------------------------------------------------------------------------- /Lists/7642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7642.tsv -------------------------------------------------------------------------------- /Lists/7643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7643.tsv -------------------------------------------------------------------------------- /Lists/76432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/76432.tsv -------------------------------------------------------------------------------- /Lists/765.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/765.tsv -------------------------------------------------------------------------------- /Lists/7652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7652.tsv -------------------------------------------------------------------------------- /Lists/7653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7653.tsv -------------------------------------------------------------------------------- /Lists/76532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/76532.tsv -------------------------------------------------------------------------------- /Lists/7654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/7654.tsv -------------------------------------------------------------------------------- /Lists/76542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/76542.tsv -------------------------------------------------------------------------------- /Lists/76543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/76543.tsv -------------------------------------------------------------------------------- /Lists/765432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/765432.tsv -------------------------------------------------------------------------------- /Lists/8.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8.tsv -------------------------------------------------------------------------------- /Lists/82.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/82.tsv -------------------------------------------------------------------------------- /Lists/83.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/83.tsv -------------------------------------------------------------------------------- /Lists/832.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/832.tsv -------------------------------------------------------------------------------- /Lists/84.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/84.tsv -------------------------------------------------------------------------------- /Lists/842.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/842.tsv -------------------------------------------------------------------------------- /Lists/843.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/843.tsv -------------------------------------------------------------------------------- /Lists/8432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8432.tsv -------------------------------------------------------------------------------- /Lists/85.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/85.tsv -------------------------------------------------------------------------------- /Lists/852.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/852.tsv -------------------------------------------------------------------------------- /Lists/853.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/853.tsv -------------------------------------------------------------------------------- /Lists/8532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8532.tsv -------------------------------------------------------------------------------- /Lists/854.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/854.tsv -------------------------------------------------------------------------------- /Lists/8542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8542.tsv -------------------------------------------------------------------------------- /Lists/8543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8543.tsv -------------------------------------------------------------------------------- /Lists/85432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/85432.tsv -------------------------------------------------------------------------------- /Lists/86.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/86.tsv -------------------------------------------------------------------------------- /Lists/862.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/862.tsv -------------------------------------------------------------------------------- /Lists/863.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/863.tsv -------------------------------------------------------------------------------- /Lists/8632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8632.tsv -------------------------------------------------------------------------------- /Lists/864.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/864.tsv -------------------------------------------------------------------------------- /Lists/8642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8642.tsv -------------------------------------------------------------------------------- /Lists/8643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8643.tsv -------------------------------------------------------------------------------- /Lists/86432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/86432.tsv -------------------------------------------------------------------------------- /Lists/865.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/865.tsv -------------------------------------------------------------------------------- /Lists/8652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8652.tsv -------------------------------------------------------------------------------- /Lists/8653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8653.tsv -------------------------------------------------------------------------------- /Lists/86532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/86532.tsv -------------------------------------------------------------------------------- /Lists/8654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8654.tsv -------------------------------------------------------------------------------- /Lists/86542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/86542.tsv -------------------------------------------------------------------------------- /Lists/86543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/86543.tsv -------------------------------------------------------------------------------- /Lists/865432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/865432.tsv -------------------------------------------------------------------------------- /Lists/87.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87.tsv -------------------------------------------------------------------------------- /Lists/872.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/872.tsv -------------------------------------------------------------------------------- /Lists/873.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/873.tsv -------------------------------------------------------------------------------- /Lists/8732.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8732.tsv -------------------------------------------------------------------------------- /Lists/874.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/874.tsv -------------------------------------------------------------------------------- /Lists/8742.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8742.tsv -------------------------------------------------------------------------------- /Lists/8743.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8743.tsv -------------------------------------------------------------------------------- /Lists/87432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87432.tsv -------------------------------------------------------------------------------- /Lists/875.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/875.tsv -------------------------------------------------------------------------------- /Lists/8752.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8752.tsv -------------------------------------------------------------------------------- /Lists/8753.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8753.tsv -------------------------------------------------------------------------------- /Lists/87532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87532.tsv -------------------------------------------------------------------------------- /Lists/8754.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8754.tsv -------------------------------------------------------------------------------- /Lists/87542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87542.tsv -------------------------------------------------------------------------------- /Lists/87543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87543.tsv -------------------------------------------------------------------------------- /Lists/875432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/875432.tsv -------------------------------------------------------------------------------- /Lists/876.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/876.tsv -------------------------------------------------------------------------------- /Lists/8762.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8762.tsv -------------------------------------------------------------------------------- /Lists/8763.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8763.tsv -------------------------------------------------------------------------------- /Lists/87632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87632.tsv -------------------------------------------------------------------------------- /Lists/8764.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8764.tsv -------------------------------------------------------------------------------- /Lists/87642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87642.tsv -------------------------------------------------------------------------------- /Lists/87643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87643.tsv -------------------------------------------------------------------------------- /Lists/876432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/876432.tsv -------------------------------------------------------------------------------- /Lists/8765.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8765.tsv -------------------------------------------------------------------------------- /Lists/87652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87652.tsv -------------------------------------------------------------------------------- /Lists/87653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87653.tsv -------------------------------------------------------------------------------- /Lists/876532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/876532.tsv -------------------------------------------------------------------------------- /Lists/87654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/87654.tsv -------------------------------------------------------------------------------- /Lists/876542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/876542.tsv -------------------------------------------------------------------------------- /Lists/876543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/876543.tsv -------------------------------------------------------------------------------- /Lists/8765432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/8765432.tsv -------------------------------------------------------------------------------- /Lists/9.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9.tsv -------------------------------------------------------------------------------- /Lists/92.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/92.tsv -------------------------------------------------------------------------------- /Lists/93.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/93.tsv -------------------------------------------------------------------------------- /Lists/932.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/932.tsv -------------------------------------------------------------------------------- /Lists/94.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/94.tsv -------------------------------------------------------------------------------- /Lists/942.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/942.tsv -------------------------------------------------------------------------------- /Lists/943.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/943.tsv -------------------------------------------------------------------------------- /Lists/9432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9432.tsv -------------------------------------------------------------------------------- /Lists/95.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/95.tsv -------------------------------------------------------------------------------- /Lists/952.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/952.tsv -------------------------------------------------------------------------------- /Lists/953.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/953.tsv -------------------------------------------------------------------------------- /Lists/9532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9532.tsv -------------------------------------------------------------------------------- /Lists/954.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/954.tsv -------------------------------------------------------------------------------- /Lists/9542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9542.tsv -------------------------------------------------------------------------------- /Lists/9543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9543.tsv -------------------------------------------------------------------------------- /Lists/95432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/95432.tsv -------------------------------------------------------------------------------- /Lists/96.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/96.tsv -------------------------------------------------------------------------------- /Lists/962.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/962.tsv -------------------------------------------------------------------------------- /Lists/963.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/963.tsv -------------------------------------------------------------------------------- /Lists/9632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9632.tsv -------------------------------------------------------------------------------- /Lists/964.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/964.tsv -------------------------------------------------------------------------------- /Lists/9642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9642.tsv -------------------------------------------------------------------------------- /Lists/9643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9643.tsv -------------------------------------------------------------------------------- /Lists/96432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/96432.tsv -------------------------------------------------------------------------------- /Lists/965.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/965.tsv -------------------------------------------------------------------------------- /Lists/9652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9652.tsv -------------------------------------------------------------------------------- /Lists/9653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9653.tsv -------------------------------------------------------------------------------- /Lists/96532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/96532.tsv -------------------------------------------------------------------------------- /Lists/9654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9654.tsv -------------------------------------------------------------------------------- /Lists/96542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/96542.tsv -------------------------------------------------------------------------------- /Lists/96543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/96543.tsv -------------------------------------------------------------------------------- /Lists/965432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/965432.tsv -------------------------------------------------------------------------------- /Lists/97.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97.tsv -------------------------------------------------------------------------------- /Lists/972.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/972.tsv -------------------------------------------------------------------------------- /Lists/973.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/973.tsv -------------------------------------------------------------------------------- /Lists/9732.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9732.tsv -------------------------------------------------------------------------------- /Lists/974.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/974.tsv -------------------------------------------------------------------------------- /Lists/9742.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9742.tsv -------------------------------------------------------------------------------- /Lists/9743.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9743.tsv -------------------------------------------------------------------------------- /Lists/97432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97432.tsv -------------------------------------------------------------------------------- /Lists/975.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/975.tsv -------------------------------------------------------------------------------- /Lists/9752.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9752.tsv -------------------------------------------------------------------------------- /Lists/9753.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9753.tsv -------------------------------------------------------------------------------- /Lists/97532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97532.tsv -------------------------------------------------------------------------------- /Lists/9754.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9754.tsv -------------------------------------------------------------------------------- /Lists/97542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97542.tsv -------------------------------------------------------------------------------- /Lists/97543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97543.tsv -------------------------------------------------------------------------------- /Lists/975432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/975432.tsv -------------------------------------------------------------------------------- /Lists/976.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/976.tsv -------------------------------------------------------------------------------- /Lists/9762.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9762.tsv -------------------------------------------------------------------------------- /Lists/9763.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9763.tsv -------------------------------------------------------------------------------- /Lists/97632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97632.tsv -------------------------------------------------------------------------------- /Lists/9764.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9764.tsv -------------------------------------------------------------------------------- /Lists/97642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97642.tsv -------------------------------------------------------------------------------- /Lists/97643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97643.tsv -------------------------------------------------------------------------------- /Lists/976432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/976432.tsv -------------------------------------------------------------------------------- /Lists/9765.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9765.tsv -------------------------------------------------------------------------------- /Lists/97652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97652.tsv -------------------------------------------------------------------------------- /Lists/97653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97653.tsv -------------------------------------------------------------------------------- /Lists/976532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/976532.tsv -------------------------------------------------------------------------------- /Lists/97654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/97654.tsv -------------------------------------------------------------------------------- /Lists/976542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/976542.tsv -------------------------------------------------------------------------------- /Lists/976543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/976543.tsv -------------------------------------------------------------------------------- /Lists/9765432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9765432.tsv -------------------------------------------------------------------------------- /Lists/98.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98.tsv -------------------------------------------------------------------------------- /Lists/982.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/982.tsv -------------------------------------------------------------------------------- /Lists/983.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/983.tsv -------------------------------------------------------------------------------- /Lists/9832.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9832.tsv -------------------------------------------------------------------------------- /Lists/984.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/984.tsv -------------------------------------------------------------------------------- /Lists/9842.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9842.tsv -------------------------------------------------------------------------------- /Lists/9843.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9843.tsv -------------------------------------------------------------------------------- /Lists/98432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98432.tsv -------------------------------------------------------------------------------- /Lists/985.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/985.tsv -------------------------------------------------------------------------------- /Lists/9852.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9852.tsv -------------------------------------------------------------------------------- /Lists/9853.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9853.tsv -------------------------------------------------------------------------------- /Lists/98532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98532.tsv -------------------------------------------------------------------------------- /Lists/9854.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9854.tsv -------------------------------------------------------------------------------- /Lists/98542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98542.tsv -------------------------------------------------------------------------------- /Lists/98543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98543.tsv -------------------------------------------------------------------------------- /Lists/985432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/985432.tsv -------------------------------------------------------------------------------- /Lists/986.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/986.tsv -------------------------------------------------------------------------------- /Lists/9862.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9862.tsv -------------------------------------------------------------------------------- /Lists/9863.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9863.tsv -------------------------------------------------------------------------------- /Lists/98632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98632.tsv -------------------------------------------------------------------------------- /Lists/9864.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9864.tsv -------------------------------------------------------------------------------- /Lists/98642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98642.tsv -------------------------------------------------------------------------------- /Lists/98643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98643.tsv -------------------------------------------------------------------------------- /Lists/986432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/986432.tsv -------------------------------------------------------------------------------- /Lists/9865.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9865.tsv -------------------------------------------------------------------------------- /Lists/98652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98652.tsv -------------------------------------------------------------------------------- /Lists/98653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98653.tsv -------------------------------------------------------------------------------- /Lists/986532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/986532.tsv -------------------------------------------------------------------------------- /Lists/98654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98654.tsv -------------------------------------------------------------------------------- /Lists/986542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/986542.tsv -------------------------------------------------------------------------------- /Lists/986543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/986543.tsv -------------------------------------------------------------------------------- /Lists/9865432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9865432.tsv -------------------------------------------------------------------------------- /Lists/987.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987.tsv -------------------------------------------------------------------------------- /Lists/9872.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9872.tsv -------------------------------------------------------------------------------- /Lists/9873.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9873.tsv -------------------------------------------------------------------------------- /Lists/98732.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98732.tsv -------------------------------------------------------------------------------- /Lists/9874.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9874.tsv -------------------------------------------------------------------------------- /Lists/98742.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98742.tsv -------------------------------------------------------------------------------- /Lists/98743.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98743.tsv -------------------------------------------------------------------------------- /Lists/987432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987432.tsv -------------------------------------------------------------------------------- /Lists/9875.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9875.tsv -------------------------------------------------------------------------------- /Lists/98752.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98752.tsv -------------------------------------------------------------------------------- /Lists/98753.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98753.tsv -------------------------------------------------------------------------------- /Lists/987532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987532.tsv -------------------------------------------------------------------------------- /Lists/98754.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98754.tsv -------------------------------------------------------------------------------- /Lists/987542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987542.tsv -------------------------------------------------------------------------------- /Lists/987543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987543.tsv -------------------------------------------------------------------------------- /Lists/9875432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9875432.tsv -------------------------------------------------------------------------------- /Lists/9876.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9876.tsv -------------------------------------------------------------------------------- /Lists/98762.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98762.tsv -------------------------------------------------------------------------------- /Lists/98763.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98763.tsv -------------------------------------------------------------------------------- /Lists/987632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987632.tsv -------------------------------------------------------------------------------- /Lists/98764.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98764.tsv -------------------------------------------------------------------------------- /Lists/987642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987642.tsv -------------------------------------------------------------------------------- /Lists/987643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987643.tsv -------------------------------------------------------------------------------- /Lists/9876432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9876432.tsv -------------------------------------------------------------------------------- /Lists/98765.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98765.tsv -------------------------------------------------------------------------------- /Lists/987652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987652.tsv -------------------------------------------------------------------------------- /Lists/987653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987653.tsv -------------------------------------------------------------------------------- /Lists/9876532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9876532.tsv -------------------------------------------------------------------------------- /Lists/987654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/987654.tsv -------------------------------------------------------------------------------- /Lists/9876542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9876542.tsv -------------------------------------------------------------------------------- /Lists/9876543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/9876543.tsv -------------------------------------------------------------------------------- /Lists/98765432.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Lists/98765432.tsv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Resources/Example/analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/analysis.txt -------------------------------------------------------------------------------- /Tests/Resources/Example/analysis_BPS_format.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/analysis_BPS_format.csv -------------------------------------------------------------------------------- /Tests/Resources/Example/analysis_dez_format.dez: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/analysis_dez_format.dez -------------------------------------------------------------------------------- /Tests/Resources/Example/analysis_on_score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/analysis_on_score.mxl -------------------------------------------------------------------------------- /Tests/Resources/Example/feedback_on_analysis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/feedback_on_analysis.txt -------------------------------------------------------------------------------- /Tests/Resources/Example/lc5000397.mscz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/lc5000397.mscz -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_and_features_by_key.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_and_features_by_key.arff -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_and_features_by_key.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_and_features_by_key.csv -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_and_features_by_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_and_features_by_key.json -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_and_features_by_key.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_and_features_by_key.tsv -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_chord.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_chord.arff -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_chord.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_chord.csv -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_chord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_chord.json -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_chord.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_chord.tsv -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_key.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_key.arff -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_key.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_key.csv -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_key.json -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_key.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_key.tsv -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_measure.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_measure.arff -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_measure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_measure.csv -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_measure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_measure.json -------------------------------------------------------------------------------- /Tests/Resources/Example/profiles_by_measure.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/profiles_by_measure.tsv -------------------------------------------------------------------------------- /Tests/Resources/Example/score.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/score.mxl -------------------------------------------------------------------------------- /Tests/Resources/Example/slices.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/slices.tsv -------------------------------------------------------------------------------- /Tests/Resources/Example/slices_with_analysis.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/slices_with_analysis.tsv -------------------------------------------------------------------------------- /Tests/Resources/Example/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/template.txt -------------------------------------------------------------------------------- /Tests/Resources/Example/transition_features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/Example/transition_features.json -------------------------------------------------------------------------------- /Tests/Resources/testPartialAnalysis.mxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/Resources/testPartialAnalysis.mxl -------------------------------------------------------------------------------- /Tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/__init__.py -------------------------------------------------------------------------------- /Tests/test_Roman_umpire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_Roman_umpire.py -------------------------------------------------------------------------------- /Tests/test_anthology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_anthology.py -------------------------------------------------------------------------------- /Tests/test_chord_comparisons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_chord_comparisons.py -------------------------------------------------------------------------------- /Tests/test_chord_features_and_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_chord_features_and_usage.py -------------------------------------------------------------------------------- /Tests/test_converters_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_converters_local.py -------------------------------------------------------------------------------- /Tests/test_get_distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_get_distributions.py -------------------------------------------------------------------------------- /Tests/test_harmonic_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_harmonic_function.py -------------------------------------------------------------------------------- /Tests/test_key_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_key_profiles.py -------------------------------------------------------------------------------- /Tests/test_make_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_make_list.py -------------------------------------------------------------------------------- /Tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_metadata.py -------------------------------------------------------------------------------- /Tests/test_mixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_mixture.py -------------------------------------------------------------------------------- /Tests/test_normalisation_comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_normalisation_comparison.py -------------------------------------------------------------------------------- /Tests/test_skeleton_harmony.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/Tests/test_skeleton_harmony.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/environment.yml -------------------------------------------------------------------------------- /syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkGotham/When-in-Rome/HEAD/syntax.md --------------------------------------------------------------------------------