diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml index 805817b34fb..efddf29c9c5 100644 --- a/.github/workflows/ci_build.yml +++ b/.github/workflows/ci_build.yml @@ -45,6 +45,7 @@ env: # emscripten EM_VERSION: latest EM_CACHE_FOLDER: "emsdk-cache" + EM_CACHE_ID: 1 # gh-pages GH_PAGES_REPO: ${{ github.repository_owner }}/verovio.org # works from rism-digital and from forks @@ -226,7 +227,7 @@ jobs: # path for cache path: ${{ env.EM_CACHE_FOLDER }} # key for cache - key: ${{ runner.os }}-emsdk-${{ env.EM_VERSION }} + key: ${{ runner.os }}-emsdk-${{ env.EM_VERSION }}-${{ env.EM_CACHE_ID }} - name: Set up emsdk uses: mymindstorm/setup-emsdk@v11 @@ -282,11 +283,11 @@ jobs: # path for cache path: ${{ env.EM_CACHE_FOLDER }} # key for cache - key: ${{ runner.os }}-emsdk-${{ env.EM_VERSION }} + key: ${{ runner.os }}-emsdk-${{ env.EM_VERSION }}-${{ env.EM_CACHE_ID }} # Install and/or activate emsdk - name: Set up emsdk - uses: mymindstorm/setup-emsdk@v7 + uses: mymindstorm/setup-emsdk@v11 with: version: ${{ env.EM_VERSION }} actions-cache-folder: ${{ env.EM_CACHE_FOLDER }} diff --git a/.github/workflows/python-ci-wheel.yml b/.github/workflows/python-ci-wheel.yml index 7887ec8b097..a16ddf1247c 100644 --- a/.github/workflows/python-ci-wheel.yml +++ b/.github/workflows/python-ci-wheel.yml @@ -21,10 +21,10 @@ jobs: strategy: # Ensure that a wheel builder finishes even if another fails fail-fast: false - # Build the wheels for Linux, Windows and macOS for Python 3.9 + # Build the wheels for Linux, Windows and macOS for Python 3.10 matrix: os: [macos-latest, windows-latest, ubuntu-20.04] - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ["3.7", "3.8", "3.9", "3.10"] architecture: [x86, x64] include: - os: macos-latest @@ -82,15 +82,14 @@ jobs: #===============================================# # wheels - name: Build wheels - uses: joerick/cibuildwheel@f3dae81e82da2a2a36338269e32f3adb7b42dc8c + uses: pypa/cibuildwheel@v2.3.1 with: output-dir: wheelhouse env: CIBW_SKIP: cp27-* # manylinux2014 not compatible with python 2.7 CIBW_BUILD: ${{ env.CIBW_BUILD_IDENTIFIER }} - # TODO: change back to "manylinux2014" when cibuildwheel releases new version - CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux2014_x86_64:2021-02-17-8d1372a - CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux2014_i686:2021-02-17-8d1372a + CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 + CIBW_MANYLINUX_I686_IMAGE: manylinux2014 CIBW_BEFORE_ALL_MACOS: brew update && brew install swig CIBW_BEFORE_ALL_WINDOWS: choco install swig -f -y CIBW_BEFORE_BUILD: swig -version && bash -c 'cd tools; ./get_git_commit.sh' && swig -c++ -python -py3 ./bindings/python/verovio.i diff --git a/.gitignore b/.gitignore index 659ae0e9810..d16394c1926 100644 --- a/.gitignore +++ b/.gitignore @@ -94,5 +94,3 @@ Release/ *.vcxproj* *.sln -# Fonts -fonts/tmp/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a0b13a68c2..dfa0b66bdc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [unreleased] +* Support for `beatRpt@beatdef` +* Support for `scoreDef` and `staffDef` `@dur.default` (@eNote-GmBH) +* Support for MIDI output of grace notes and multi-measure rests (@eNote-GmBH) +* Support for `@stem.sameas` on notes for orchestra scores +* Support for MIDI output of arpeggios (@eNote-GmBH) +* Support for tuplets in ABC importer (@eNote-GmBH) +* Support for `beamSpan` (@eNote-GmBH) +* Support for lyrics, tuplets and multiple tunes (`mdiv`) in ABC import (@eNote-GmBH) +* Improved double stemmed beams (@eNote-GmBH) +* Improved tablature MIDI output (@paul-bayleaf) +* Improved PAE importer (nested beams, mensural dots, stemless notes) +* Improved vertical positioning with half staff spacing above and below the systems +* Improved justification (@eNote-GmBH) +* Improved handling of the SMUFL fonts (@eNote-GmBH) +* Additional parameters to the redoLayout method for faster cached layout redoing +* Additional parameters to the renderToTimemap method for including rests and measure +* Additional ids for rests and measure added to the getElementsAtTime methods +* Option --svg-css for passing an additional CSS to be included in the SVG output +* Preliminary support for stems and beam for guitar tablature +* Preliminary support for tablature MusicXML import (@paul-bayleaf) + ## [3.8.1] - 2022-01-10 * Fix bug in PAE importer for durations and for key signatures @@ -9,7 +31,6 @@ * Improved layout with beams and control events (ornaments, fingering, etc.) (@eNote-GmBH) * Improve enharmonic tie overlap with accidentals (@eNote-GmBH) * Improved Plaine and Easie validation output with error codes and values -* Improved adjacent note tie and enharmonic tie overlap (eNote-GmBH) * Additional parameters to the getMEI method for exporting selected content (@eNote-GmBH) * Option --multi-rest-thickness to control the thickness of measure rests (@eNote-GmBH) diff --git a/Verovio.xcodeproj/project.pbxproj b/Verovio.xcodeproj/project.pbxproj index 2eb88887993..27299f1409d 100644 --- a/Verovio.xcodeproj/project.pbxproj +++ b/Verovio.xcodeproj/project.pbxproj @@ -414,10 +414,6 @@ 4D95D4F91D718D4A00B2B856 /* systemelement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D95D4F81D718D4A00B2B856 /* systemelement.cpp */; }; 4D95D4FC1D74551100B2B856 /* score.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D95D4FB1D74551100B2B856 /* score.cpp */; }; 4D983005192E959E00320037 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D983004192E959E00320037 /* main.cpp */; }; - 4D98CCDB25D26E3C00DC7A2C /* smufl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D98CCDA25D26E3C00DC7A2C /* smufl.cpp */; }; - 4D98CCDC25D26E3C00DC7A2C /* smufl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D98CCDA25D26E3C00DC7A2C /* smufl.cpp */; }; - 4D98CCE125D26E8F00DC7A2C /* smufl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D98CCDA25D26E3C00DC7A2C /* smufl.cpp */; }; - 4D98CCE625D26E8F00DC7A2C /* smufl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D98CCDA25D26E3C00DC7A2C /* smufl.cpp */; }; 4D9A9C17199F560200028D93 /* verse.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D9A9C16199F560200028D93 /* verse.h */; }; 4D9A9C19199F561200028D93 /* verse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D9A9C18199F561200028D93 /* verse.cpp */; }; 4D9A9C1A199F561200028D93 /* verse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D9A9C18199F561200028D93 /* verse.cpp */; }; @@ -648,6 +644,12 @@ 4DCB7AA426D3C9600047F01D /* crc.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DCB7AA226D3C9600047F01D /* crc.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4DD11DC42240E78B00A405D8 /* c_wrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4DD11DC22240E78B00A405D8 /* c_wrapper.cpp */; }; 4DD11DC52240E78B00A405D8 /* c_wrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD11DC32240E78B00A405D8 /* c_wrapper.h */; }; + 4DD7C0FC27A55CEA00B9C017 /* timemap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4DD7C0FB27A55CEA00B9C017 /* timemap.cpp */; }; + 4DD7C0FD27A55CEA00B9C017 /* timemap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4DD7C0FB27A55CEA00B9C017 /* timemap.cpp */; }; + 4DD7C0FF27A55CFD00B9C017 /* timemap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD7C0FE27A55CFD00B9C017 /* timemap.h */; }; + 4DD7C10027A55CFD00B9C017 /* timemap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DD7C0FE27A55CFD00B9C017 /* timemap.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DD7C10127A5650600B9C017 /* timemap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4DD7C0FB27A55CEA00B9C017 /* timemap.cpp */; }; + 4DD7C10227A5650600B9C017 /* timemap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4DD7C0FB27A55CEA00B9C017 /* timemap.cpp */; }; 4DDBBB571C7AE43E00054AFF /* hairpin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DDBBB551C7AE43E00054AFF /* hairpin.h */; }; 4DDBBB581C7AE43E00054AFF /* dynam.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DDBBB561C7AE43E00054AFF /* dynam.h */; }; 4DDBBB5B1C7AE45900054AFF /* dynam.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4DDBBB591C7AE45900054AFF /* dynam.cpp */; }; @@ -1264,6 +1266,12 @@ E79C87C62694407B0098FE85 /* lv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E79C87C2269440570098FE85 /* lv.cpp */; }; E79C87C7269440800098FE85 /* lv.h in Headers */ = {isa = PBXBuildFile; fileRef = E79C87C1269440420098FE85 /* lv.h */; }; E79C87C8269440810098FE85 /* lv.h in Headers */ = {isa = PBXBuildFile; fileRef = E79C87C1269440420098FE85 /* lv.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD05622F2518CD12004057EB /* beamspan.h in Headers */ = {isa = PBXBuildFile; fileRef = BD05622E2518CD12004057EB /* beamspan.h */; }; + BD0562302518CD12004057EB /* beamspan.h in Headers */ = {isa = PBXBuildFile; fileRef = BD05622E2518CD12004057EB /* beamspan.h */; }; + BD0562362518CD20004057EB /* beamspan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD0562352518CD20004057EB /* beamspan.cpp */; }; + BD0562372518CD20004057EB /* beamspan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD0562352518CD20004057EB /* beamspan.cpp */; }; + BD0562382518CD20004057EB /* beamspan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD0562352518CD20004057EB /* beamspan.cpp */; }; + BD0562392518CD20004057EB /* beamspan.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD0562352518CD20004057EB /* beamspan.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -1467,7 +1475,6 @@ 4D95D4FA1D74549700B2B856 /* score.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = score.h; path = include/vrv/score.h; sourceTree = ""; }; 4D95D4FB1D74551100B2B856 /* score.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = score.cpp; path = src/score.cpp; sourceTree = ""; }; 4D983004192E959E00320037 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = main.cpp; path = tools/main.cpp; sourceTree = SOURCE_ROOT; }; - 4D98CCDA25D26E3C00DC7A2C /* smufl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = smufl.cpp; path = src/smufl.cpp; sourceTree = ""; }; 4D9A9C16199F560200028D93 /* verse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = verse.h; path = include/vrv/verse.h; sourceTree = ""; }; 4D9A9C18199F561200028D93 /* verse.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = verse.cpp; path = src/verse.cpp; sourceTree = ""; }; 4D9A9C1B199F576100028D93 /* syl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = syl.h; path = include/vrv/syl.h; sourceTree = ""; }; @@ -1547,6 +1554,8 @@ 4DCB7AA226D3C9600047F01D /* crc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crc.h; path = include/crc/crc.h; sourceTree = SOURCE_ROOT; }; 4DD11DC22240E78B00A405D8 /* c_wrapper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = c_wrapper.cpp; path = tools/c_wrapper.cpp; sourceTree = ""; }; 4DD11DC32240E78B00A405D8 /* c_wrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c_wrapper.h; path = tools/c_wrapper.h; sourceTree = ""; }; + 4DD7C0FB27A55CEA00B9C017 /* timemap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = timemap.cpp; path = src/timemap.cpp; sourceTree = ""; }; + 4DD7C0FE27A55CFD00B9C017 /* timemap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = timemap.h; path = include/vrv/timemap.h; sourceTree = ""; }; 4DDBBB551C7AE43E00054AFF /* hairpin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hairpin.h; path = include/vrv/hairpin.h; sourceTree = ""; }; 4DDBBB561C7AE43E00054AFF /* dynam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dynam.h; path = include/vrv/dynam.h; sourceTree = ""; }; 4DDBBB591C7AE45900054AFF /* dynam.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = dynam.cpp; path = src/dynam.cpp; sourceTree = ""; }; @@ -1731,6 +1740,8 @@ E79ADDC626BD645B00527E4B /* runtimeclock.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = runtimeclock.cpp; path = src/runtimeclock.cpp; sourceTree = ""; }; E79C87C1269440420098FE85 /* lv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lv.h; path = include/vrv/lv.h; sourceTree = ""; }; E79C87C2269440570098FE85 /* lv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = lv.cpp; path = src/lv.cpp; sourceTree = ""; }; + BD05622E2518CD12004057EB /* beamspan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = beamspan.h; path = include/vrv/beamspan.h; sourceTree = ""; }; + BD0562352518CD20004057EB /* beamspan.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = beamspan.cpp; path = src/beamspan.cpp; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -2090,6 +2101,8 @@ 4DB3510D1C80409E002DD057 /* anchoredtext.h */, 4D6331F41F46D2CB00A0D6BF /* arpeg.cpp */, 4D6331F21F46D2B400A0D6BF /* arpeg.h */, + BD0562352518CD20004057EB /* beamspan.cpp */, + BD05622E2518CD12004057EB /* beamspan.h */, 4DE96E3A21C4373200CB85BE /* bracketspan.cpp */, 4DE96E3821C4370E00CB85BE /* bracketspan.h */, 4DE644F41EDBEA01002FBE6C /* breath.cpp */, @@ -2209,7 +2222,8 @@ E79ADDC626BD645B00527E4B /* runtimeclock.cpp */, E79ADDC326BD1AE900527E4B /* runtimeclock.h */, 4D1D733B1A1D0390001E08F6 /* smufl.h */, - 4D98CCDA25D26E3C00DC7A2C /* smufl.cpp */, + 4DD7C0FB27A55CEA00B9C017 /* timemap.cpp */, + 4DD7C0FE27A55CFD00B9C017 /* timemap.h */, 8F086EBF188539540037FD8E /* toolkit.cpp */, 8F59291618854BF800FE51AD /* toolkit.h */, 4DC3B9E4239E2ABE007F185E /* transposition.cpp */, @@ -2559,6 +2573,7 @@ 4D1BE7781C6942930086DC0E /* pugiconfig.hpp in Headers */, 4DC12A891F74111E000440E9 /* pgfoot.h in Headers */, 4DB3D8C91F83D10300B5FC2B /* dir.h in Headers */, + BD05622F2518CD12004057EB /* beamspan.h in Headers */, 4DEC4DDA21C8295700D1D273 /* damage.h in Headers */, 8F59294E18854BF800FE51AD /* positioninterface.h in Headers */, 8F59294F18854BF800FE51AD /* rest.h in Headers */, @@ -2618,6 +2633,7 @@ 4D1BE7821C69434C0086DC0E /* MidiFile.h in Headers */, 4D9C53121B52E4AE0003C6EC /* core.h in Headers */, 4DEC4DD221C8295700D1D273 /* supplied.h in Headers */, + 4DD7C0FF27A55CFD00B9C017 /* timemap.h in Headers */, 4D1BD1B921908D78000D35B2 /* halfmrpt.h in Headers */, 4DF4407A1D3D085600152B7E /* functorparams.h in Headers */, 4DA0EADD22BB77AF00A7EBEB /* zone.h in Headers */, @@ -2709,6 +2725,7 @@ 4D79642726C167200026288B /* pagemilestone.h in Headers */, BB4C4B1C22A932CF001F6AF0 /* arpeg.h in Headers */, BB4C4B2A22A932CF001F6AF0 /* harm.h in Headers */, + 4DD7C10027A55CFD00B9C017 /* timemap.h in Headers */, BB4C4AAC22A932A0001F6AF0 /* svgdevicecontext.h in Headers */, BB4C4ADE22A932BC001F6AF0 /* add.h in Headers */, BB4C4B4C22A932D7001F6AF0 /* custos.h in Headers */, @@ -2780,6 +2797,7 @@ BB4C4B2622A932CF001F6AF0 /* fermata.h in Headers */, BB4C4B0022A932BC001F6AF0 /* supplied.h in Headers */, BB4C4B8622A932DF001F6AF0 /* lb.h in Headers */, + BD0562302518CD12004057EB /* beamspan.h in Headers */, BB4C4AFE22A932BC001F6AF0 /* subst.h in Headers */, BB4C4AFC22A932BC001F6AF0 /* sic.h in Headers */, BB4C4AEE22A932BC001F6AF0 /* expan.h in Headers */, @@ -3066,6 +3084,7 @@ 4D1694071E3A44F300569BF4 /* iomusxml.cpp in Sources */, 4D7927D120ECCC6D0002A45D /* view_slur.cpp in Sources */, 4DF21D1322B3D17D009821DE /* ioabc.cpp in Sources */, + 4DD7C10127A5650600B9C017 /* timemap.cpp in Sources */, 4D1694081E3A44F300569BF4 /* iopae.cpp in Sources */, 4D1694091E3A44F300569BF4 /* atts_critapp.cpp in Sources */, 4D16940A1E3A44F300569BF4 /* fermata.cpp in Sources */, @@ -3090,6 +3109,7 @@ 4D308105203DB6B500BC44F6 /* ref.cpp in Sources */, 4D1694161E3A44F300569BF4 /* pedal.cpp in Sources */, 4D1694171E3A44F300569BF4 /* mensur.cpp in Sources */, + BD0562372518CD20004057EB /* beamspan.cpp in Sources */, 4D1694181E3A44F300569BF4 /* text.cpp in Sources */, 4DC12A7D1F740FB9000440E9 /* view_running.cpp in Sources */, 4D15DE3B2411782300457C05 /* expansionmap.cpp in Sources */, @@ -3202,7 +3222,6 @@ 4D16944F1E3A44F300569BF4 /* timeinterface.cpp in Sources */, 4D6331F61F46D2CB00A0D6BF /* arpeg.cpp in Sources */, 4D1694501E3A44F300569BF4 /* attconverter.cpp in Sources */, - 4D98CCE125D26E8F00DC7A2C /* smufl.cpp in Sources */, 4D674B47255F40B7008AEF4C /* plica.cpp in Sources */, 4D1694511E3A44F300569BF4 /* glyph.cpp in Sources */, 4D1694521E3A44F300569BF4 /* syl.cpp in Sources */, @@ -3275,6 +3294,7 @@ 8F086EEE188539540037FD8E /* iomei.cpp in Sources */, 8F086EEF188539540037FD8E /* iomusxml.cpp in Sources */, 8F086EF0188539540037FD8E /* iopae.cpp in Sources */, + BD0562362518CD20004057EB /* beamspan.cpp in Sources */, 4D8CD8A61B4E922A00F0756F /* atts_critapp.cpp in Sources */, 4DEC4D7A21C8048700D1D273 /* abbr.cpp in Sources */, 4067E4C81DDDAF0000C6E059 /* fermata.cpp in Sources */, @@ -3323,6 +3343,7 @@ 4D5FA9111E16A93F00F3B919 /* boundingbox.cpp in Sources */, 4DC12A841F741110000440E9 /* pgfoot2.cpp in Sources */, 8F086EF9188539540037FD8E /* object.cpp in Sources */, + 4DD7C10227A5650600B9C017 /* timemap.cpp in Sources */, 8F086EFA188539540037FD8E /* page.cpp in Sources */, 8F086EFB188539540037FD8E /* pitchinterface.cpp in Sources */, BDEF9EC726725234008A3A47 /* caesura.cpp in Sources */, @@ -3337,7 +3358,6 @@ 4D6413782035F58200BB630E /* pages.cpp in Sources */, 8F086EFE188539540037FD8E /* scoredef.cpp in Sources */, 4D5572401CF3F32A008D06A0 /* octave.cpp in Sources */, - 4D98CCE625D26E8F00DC7A2C /* smufl.cpp in Sources */, 8F086EFF188539540037FD8E /* slur.cpp in Sources */, 4DEC4DAA21C81EEC00D1D273 /* restore.cpp in Sources */, 36E0442C2347A9150054F141 /* expansionmap.cpp in Sources */, @@ -3495,6 +3515,7 @@ 4D4FCD141F54570E0009C455 /* staffdef.cpp in Sources */, 4DEC4D7C21C8048700D1D273 /* abbr.cpp in Sources */, 403BEFF9206C00FF00D022D5 /* beatrpt.cpp in Sources */, + 4DD7C0FC27A55CEA00B9C017 /* timemap.cpp in Sources */, 8F3DD33C18854B2E0051330C /* barline.cpp in Sources */, 4DB3D8D51F83D12B00B5FC2B /* tempo.cpp in Sources */, 4DEC4DA021C81E9400D1D273 /* orig.cpp in Sources */, @@ -3519,6 +3540,7 @@ 4DDBBCC61C2EBAE7001AB50A /* view_text.cpp in Sources */, 8F3DD34618854B2E0051330C /* layerelement.cpp in Sources */, 4DB3D8CA1F83D10700B5FC2B /* fermata.cpp in Sources */, + BD0562382518CD20004057EB /* beamspan.cpp in Sources */, 4D798CBE1B8AEDBA007281CA /* drawinginterface.cpp in Sources */, 4D20740522A46BAA00E0765F /* atts_frettab.cpp in Sources */, 8F3DD34818854B2E0051330C /* mensur.cpp in Sources */, @@ -3631,7 +3653,6 @@ 4D1BE76C1C688F5A0086DC0E /* Binasc.cpp in Sources */, 4D9A9C1A199F561200028D93 /* verse.cpp in Sources */, 4DB3D8DC1F83D14900B5FC2B /* artic.cpp in Sources */, - 4D98CCDB25D26E3C00DC7A2C /* smufl.cpp in Sources */, 4D674B48255F40B7008AEF4C /* plica.cpp in Sources */, 4D9A9C1F19A1DE2000028D93 /* syl.cpp in Sources */, 4D4335CB1ED00A33003BE1A9 /* atts_gestural.cpp in Sources */, @@ -3710,6 +3731,7 @@ BB4C4B9922A932E5001F6AF0 /* linkinginterface.cpp in Sources */, BB4C4A6A22A9321F001F6AF0 /* atts_externalsymbols.cpp in Sources */, BB4C4AAD22A932A6001F6AF0 /* io.cpp in Sources */, + 4DD7C0FD27A55CEA00B9C017 /* timemap.cpp in Sources */, BB4C4B2322A932CF001F6AF0 /* dynam.cpp in Sources */, BB4C4B6522A932D7001F6AF0 /* multirest.cpp in Sources */, BB4C4AB322A932A6001F6AF0 /* iohumdrum.cpp in Sources */, @@ -3735,6 +3757,7 @@ BB4C4B7322A932D7001F6AF0 /* space.cpp in Sources */, 402492BF232E70000017BB75 /* gracegrp.cpp in Sources */, BB4C4A6622A9321F001F6AF0 /* atts_critapp.cpp in Sources */, + BD0562392518CD20004057EB /* beamspan.cpp in Sources */, BB4C4B3D22A932D7001F6AF0 /* artic.cpp in Sources */, BB4C4A5D22A9321F001F6AF0 /* attconverter.cpp in Sources */, BB4C4AF722A932BC001F6AF0 /* reg.cpp in Sources */, @@ -3848,7 +3871,6 @@ BB4C4AF922A932BC001F6AF0 /* restore.cpp in Sources */, BB4C4AFD22A932BC001F6AF0 /* subst.cpp in Sources */, BB4C4BBE22A932FC001F6AF0 /* MidiFile.cpp in Sources */, - 4D98CCDC25D26E3C00DC7A2C /* smufl.cpp in Sources */, 4D674B49255F40B7008AEF4C /* plica.cpp in Sources */, BB4C4A9C22A9328F001F6AF0 /* options.cpp in Sources */, BB4C4A6222A9321F001F6AF0 /* atts_cmn.cpp in Sources */, diff --git a/bindings/python/.pypi-version b/bindings/python/.pypi-version index 39f5337d849..c92119a1aeb 100644 --- a/bindings/python/.pypi-version +++ b/bindings/python/.pypi-version @@ -1,3 +1,3 @@ # dummy file used by setup.py for counting revisions when publishing to test.pypi # counting can be reset by making a change to this file -3.8.0 +3.9.0 diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt index 2a37718f715..3cc83dae8c9 100644 --- a/cmake/CMakeLists.txt +++ b/cmake/CMakeLists.txt @@ -19,7 +19,7 @@ option(NO_MXL_SUPPORT "Disable compressed MusicXML support" O option(NO_HUMDRUM_SUPPORT "Disable Humdrum support" OFF) option(MUSICXML_DEFAULT_HUMDRUM "Enable MusicXML to Humdrum by default" OFF) option(NO_RUNTIME "Disable runtime clock support" ON) -option(BUILD_AS_LIBRARY "Build verovio as library" OFF) +option(BUILD_AS_LIBRARY "Build Verovio as library" OFF) if (NO_HUMDRUM_SUPPORT AND MUSICXML_DEFAULT_HUMDRUM) message(SEND_ERROR "Default MusicXML to Humdrum cannot be enabled by default without Humdrum support") @@ -203,7 +203,10 @@ elseif (BUILD_AS_PYTHON) include(${SWIG_USE_FILE}) set(CMAKE_SWIG_FLAGS "") - if(Python_VERSION VERSION_GREATER_EQUAL 3) + set(PYTHON_VERSION "3" CACHE STRING "Python Version to use") + find_package(Python EXACT ${PYTHON_VERSION} MODULE REQUIRED) + + if(PYTHON_VERSION VERSION_GREATER_EQUAL 3) list(APPEND CMAKE_SWIG_FLAGS "-py3;-DPY3") endif() @@ -212,20 +215,13 @@ elseif (BUILD_AS_PYTHON) # needed for static build on linux add_definitions(-fPIC) - ### For building for specific version of Python (example for 3.4 on OS X with MacPorts installation) - #set(PYTHON_INCLUDE_DIR /opt/local/Library/Frameworks/Python.framework/Versions/3.4/include/python3.4m) - #set(PYTHON_LIBRARY /opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/libpython3.4.dylib) - #include_directories(${PYTHON_INCLUDE_DIR}) - #swig_add_library(verovio_module_custom LANGUAGE python TYPE MODULE SOURCES ../bindings/python/verovio.i) - #swig_link_libraries(verovio_module_custom verovio ${PYTHON_LIBRARY}) - ### For building for found version of Python (comment when specific version is set) - find_package(PythonLibs) - include_directories(${PYTHON_INCLUDE_PATH}) - message(STATUS "***** Building for Python ${PYTHONLIBS_VERSION_STRING} *****") - string(REPLACE "." "_" OUTPUT_VERSION_STRING ${PYTHONLIBS_VERSION_STRING}) + find_package(Python COMPONENTS Interpreter Development) + include_directories(${Python_INCLUDE_DIRS}) + message(STATUS "***** Building for Python ${Python_VERSION} *****") + string(REPLACE "." "_" OUTPUT_VERSION_STRING ${Python_VERSION}) swig_add_library(verovio_module_${OUTPUT_VERSION_STRING} LANGUAGE python TYPE MODULE SOURCES ../bindings/python/verovio.i) - swig_link_libraries(verovio_module_${OUTPUT_VERSION_STRING} verovio ${PYTHON_LIBRARIES}) + swig_link_libraries(verovio_module_${OUTPUT_VERSION_STRING} verovio ${Python_LIBRARIES}) add_library(verovio STATIC ../tools/c_wrapper.cpp ${all_SRC}) diff --git a/data/Bravura.xml b/data/Bravura.xml index bd2e5d3e6b4..d1b0627bc16 100644 --- a/data/Bravura.xml +++ b/data/Bravura.xml @@ -1,692 +1,698 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/Bravura/E000-brace.xml b/data/Bravura/E000-brace.xml deleted file mode 100644 index d041eb14545..00000000000 --- a/data/Bravura/E000-brace.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E000.xml b/data/Bravura/E000.xml new file mode 100644 index 00000000000..af9ef14233a --- /dev/null +++ b/data/Bravura/E000.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E003-bracketTop.xml b/data/Bravura/E003-bracketTop.xml deleted file mode 100644 index 505f66f59ca..00000000000 --- a/data/Bravura/E003-bracketTop.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E003.xml b/data/Bravura/E003.xml new file mode 100644 index 00000000000..56652afb5b0 --- /dev/null +++ b/data/Bravura/E003.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E004-bracketBottom.xml b/data/Bravura/E004-bracketBottom.xml deleted file mode 100644 index 6052aa6ab71..00000000000 --- a/data/Bravura/E004-bracketBottom.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E004.xml b/data/Bravura/E004.xml new file mode 100644 index 00000000000..73212515614 --- /dev/null +++ b/data/Bravura/E004.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E043-repeatDots.xml b/data/Bravura/E043-repeatDots.xml deleted file mode 100644 index 7152109f60d..00000000000 --- a/data/Bravura/E043-repeatDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E043.xml b/data/Bravura/E043.xml new file mode 100644 index 00000000000..0d2a0ddc1c3 --- /dev/null +++ b/data/Bravura/E043.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E044-repeatDot.xml b/data/Bravura/E044-repeatDot.xml deleted file mode 100644 index ac02dc32e29..00000000000 --- a/data/Bravura/E044-repeatDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E044.xml b/data/Bravura/E044.xml new file mode 100644 index 00000000000..07155874aa2 --- /dev/null +++ b/data/Bravura/E044.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E045-dalSegno.xml b/data/Bravura/E045-dalSegno.xml deleted file mode 100644 index 7f470fe9cb9..00000000000 --- a/data/Bravura/E045-dalSegno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E045.xml b/data/Bravura/E045.xml new file mode 100644 index 00000000000..040673e2f9a --- /dev/null +++ b/data/Bravura/E045.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E046-daCapo.xml b/data/Bravura/E046-daCapo.xml deleted file mode 100644 index 8b10a53a9c2..00000000000 --- a/data/Bravura/E046-daCapo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E046.xml b/data/Bravura/E046.xml new file mode 100644 index 00000000000..9579df12be5 --- /dev/null +++ b/data/Bravura/E046.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E047-segno.xml b/data/Bravura/E047-segno.xml deleted file mode 100644 index aad8401b5f3..00000000000 --- a/data/Bravura/E047-segno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E047.xml b/data/Bravura/E047.xml new file mode 100644 index 00000000000..b868edbb77b --- /dev/null +++ b/data/Bravura/E047.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E048-coda.xml b/data/Bravura/E048-coda.xml deleted file mode 100644 index 2fdbc2f88bb..00000000000 --- a/data/Bravura/E048-coda.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E048.xml b/data/Bravura/E048.xml new file mode 100644 index 00000000000..67280bb3ef7 --- /dev/null +++ b/data/Bravura/E048.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E049-codaSquare.xml b/data/Bravura/E049-codaSquare.xml deleted file mode 100644 index cb79a2c3fcd..00000000000 --- a/data/Bravura/E049-codaSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E049.xml b/data/Bravura/E049.xml new file mode 100644 index 00000000000..420d9613289 --- /dev/null +++ b/data/Bravura/E049.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E04B-segnoSerpent2.xml b/data/Bravura/E04B-segnoSerpent2.xml deleted file mode 100644 index ff3ec28428d..00000000000 --- a/data/Bravura/E04B-segnoSerpent2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E04B.xml b/data/Bravura/E04B.xml new file mode 100644 index 00000000000..ead6658bec9 --- /dev/null +++ b/data/Bravura/E04B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E050-gClef.xml b/data/Bravura/E050-gClef.xml deleted file mode 100644 index 708ea67125e..00000000000 --- a/data/Bravura/E050-gClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E050.xml b/data/Bravura/E050.xml new file mode 100644 index 00000000000..ccfddd927b6 --- /dev/null +++ b/data/Bravura/E050.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E051-gClef15mb.xml b/data/Bravura/E051-gClef15mb.xml deleted file mode 100644 index 442aebca255..00000000000 --- a/data/Bravura/E051-gClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E051.xml b/data/Bravura/E051.xml new file mode 100644 index 00000000000..c6655959414 --- /dev/null +++ b/data/Bravura/E051.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E052-gClef8vb.xml b/data/Bravura/E052-gClef8vb.xml deleted file mode 100644 index 7f70c6f9947..00000000000 --- a/data/Bravura/E052-gClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E052.xml b/data/Bravura/E052.xml new file mode 100644 index 00000000000..7658cd92b0a --- /dev/null +++ b/data/Bravura/E052.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E053-gClef8va.xml b/data/Bravura/E053-gClef8va.xml deleted file mode 100644 index ac3893c211f..00000000000 --- a/data/Bravura/E053-gClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E053.xml b/data/Bravura/E053.xml new file mode 100644 index 00000000000..6e297969e0d --- /dev/null +++ b/data/Bravura/E053.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E054-gClef15ma.xml b/data/Bravura/E054-gClef15ma.xml deleted file mode 100644 index 1a800dd6a77..00000000000 --- a/data/Bravura/E054-gClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E054.xml b/data/Bravura/E054.xml new file mode 100644 index 00000000000..5f30eff5670 --- /dev/null +++ b/data/Bravura/E054.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E055-gClef8vbOld.xml b/data/Bravura/E055-gClef8vbOld.xml deleted file mode 100644 index 7d41455ba98..00000000000 --- a/data/Bravura/E055-gClef8vbOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E055.xml b/data/Bravura/E055.xml new file mode 100644 index 00000000000..c6d4fd4bee7 --- /dev/null +++ b/data/Bravura/E055.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E056-gClef8vbCClef.xml b/data/Bravura/E056-gClef8vbCClef.xml deleted file mode 100644 index 84576a5ed3a..00000000000 --- a/data/Bravura/E056-gClef8vbCClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E056.xml b/data/Bravura/E056.xml new file mode 100644 index 00000000000..4b60286cd65 --- /dev/null +++ b/data/Bravura/E056.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E05C-cClef.xml b/data/Bravura/E05C-cClef.xml deleted file mode 100644 index ac0782156c0..00000000000 --- a/data/Bravura/E05C-cClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E05C.xml b/data/Bravura/E05C.xml new file mode 100644 index 00000000000..f3f804ce95c --- /dev/null +++ b/data/Bravura/E05C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E05D-cClef8vb.xml b/data/Bravura/E05D-cClef8vb.xml deleted file mode 100644 index ad46fa632f5..00000000000 --- a/data/Bravura/E05D-cClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E05D.xml b/data/Bravura/E05D.xml new file mode 100644 index 00000000000..41ff54bbbaf --- /dev/null +++ b/data/Bravura/E05D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E062-fClef.xml b/data/Bravura/E062-fClef.xml deleted file mode 100644 index e78d3771932..00000000000 --- a/data/Bravura/E062-fClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E062.xml b/data/Bravura/E062.xml new file mode 100644 index 00000000000..67df9d697cb --- /dev/null +++ b/data/Bravura/E062.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E063-fClef15mb.xml b/data/Bravura/E063-fClef15mb.xml deleted file mode 100644 index a89896b2220..00000000000 --- a/data/Bravura/E063-fClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E063.xml b/data/Bravura/E063.xml new file mode 100644 index 00000000000..32f3833e003 --- /dev/null +++ b/data/Bravura/E063.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E064-fClef8vb.xml b/data/Bravura/E064-fClef8vb.xml deleted file mode 100644 index 95337d24f13..00000000000 --- a/data/Bravura/E064-fClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E064.xml b/data/Bravura/E064.xml new file mode 100644 index 00000000000..c951c3a9a6f --- /dev/null +++ b/data/Bravura/E064.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E065-fClef8va.xml b/data/Bravura/E065-fClef8va.xml deleted file mode 100644 index d37854d647f..00000000000 --- a/data/Bravura/E065-fClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E065.xml b/data/Bravura/E065.xml new file mode 100644 index 00000000000..c3bb2a8b42b --- /dev/null +++ b/data/Bravura/E065.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E066-fClef15ma.xml b/data/Bravura/E066-fClef15ma.xml deleted file mode 100644 index 16f39468496..00000000000 --- a/data/Bravura/E066-fClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E066.xml b/data/Bravura/E066.xml new file mode 100644 index 00000000000..7bb811271c9 --- /dev/null +++ b/data/Bravura/E066.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E069-unpitchedPercussionClef1.xml b/data/Bravura/E069-unpitchedPercussionClef1.xml deleted file mode 100644 index 11faf207b92..00000000000 --- a/data/Bravura/E069-unpitchedPercussionClef1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E069.xml b/data/Bravura/E069.xml new file mode 100644 index 00000000000..890982c0959 --- /dev/null +++ b/data/Bravura/E069.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E06A-unpitchedPercussionClef2.xml b/data/Bravura/E06A-unpitchedPercussionClef2.xml deleted file mode 100644 index bf597710b52..00000000000 --- a/data/Bravura/E06A-unpitchedPercussionClef2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E06A.xml b/data/Bravura/E06A.xml new file mode 100644 index 00000000000..f29c0e2d7a4 --- /dev/null +++ b/data/Bravura/E06A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E06D.xml b/data/Bravura/E06D.xml new file mode 100644 index 00000000000..86e6fddfc7a --- /dev/null +++ b/data/Bravura/E06D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E06E.xml b/data/Bravura/E06E.xml new file mode 100644 index 00000000000..544747096b6 --- /dev/null +++ b/data/Bravura/E06E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E073-gClefReversed.xml b/data/Bravura/E073-gClefReversed.xml deleted file mode 100644 index 2b7cead805c..00000000000 --- a/data/Bravura/E073-gClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E073.xml b/data/Bravura/E073.xml new file mode 100644 index 00000000000..1e1ce3533ee --- /dev/null +++ b/data/Bravura/E073.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E074-gClefTurned.xml b/data/Bravura/E074-gClefTurned.xml deleted file mode 100644 index 599e2b5b97a..00000000000 --- a/data/Bravura/E074-gClefTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E074.xml b/data/Bravura/E074.xml new file mode 100644 index 00000000000..ad2f016d62e --- /dev/null +++ b/data/Bravura/E074.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E075-cClefReversed.xml b/data/Bravura/E075-cClefReversed.xml deleted file mode 100644 index 9d2137cb700..00000000000 --- a/data/Bravura/E075-cClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E075.xml b/data/Bravura/E075.xml new file mode 100644 index 00000000000..a2b77361468 --- /dev/null +++ b/data/Bravura/E075.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E076-fClefReversed.xml b/data/Bravura/E076-fClefReversed.xml deleted file mode 100644 index a35a1c0c588..00000000000 --- a/data/Bravura/E076-fClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E076.xml b/data/Bravura/E076.xml new file mode 100644 index 00000000000..65624d81761 --- /dev/null +++ b/data/Bravura/E076.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E077-fClefTurned.xml b/data/Bravura/E077-fClefTurned.xml deleted file mode 100644 index 61e89fa7256..00000000000 --- a/data/Bravura/E077-fClefTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E077.xml b/data/Bravura/E077.xml new file mode 100644 index 00000000000..7a9ebeba111 --- /dev/null +++ b/data/Bravura/E077.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E080-timeSig0.xml b/data/Bravura/E080-timeSig0.xml deleted file mode 100644 index 65888083b1e..00000000000 --- a/data/Bravura/E080-timeSig0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E080.xml b/data/Bravura/E080.xml new file mode 100644 index 00000000000..6a1a20e08ec --- /dev/null +++ b/data/Bravura/E080.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E081-timeSig1.xml b/data/Bravura/E081-timeSig1.xml deleted file mode 100644 index 77f884eaa73..00000000000 --- a/data/Bravura/E081-timeSig1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E081.xml b/data/Bravura/E081.xml new file mode 100644 index 00000000000..0479059b91a --- /dev/null +++ b/data/Bravura/E081.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E082-timeSig2.xml b/data/Bravura/E082-timeSig2.xml deleted file mode 100644 index 7f4b11309cb..00000000000 --- a/data/Bravura/E082-timeSig2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E082.xml b/data/Bravura/E082.xml new file mode 100644 index 00000000000..f98fce76cf7 --- /dev/null +++ b/data/Bravura/E082.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E083-timeSig3.xml b/data/Bravura/E083-timeSig3.xml deleted file mode 100644 index f28b29b2cb1..00000000000 --- a/data/Bravura/E083-timeSig3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E083.xml b/data/Bravura/E083.xml new file mode 100644 index 00000000000..8c1a05cab4a --- /dev/null +++ b/data/Bravura/E083.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E084-timeSig4.xml b/data/Bravura/E084-timeSig4.xml deleted file mode 100644 index f51550c12df..00000000000 --- a/data/Bravura/E084-timeSig4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E084.xml b/data/Bravura/E084.xml new file mode 100644 index 00000000000..20aa2db5523 --- /dev/null +++ b/data/Bravura/E084.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E085-timeSig5.xml b/data/Bravura/E085-timeSig5.xml deleted file mode 100644 index b820a814c9b..00000000000 --- a/data/Bravura/E085-timeSig5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E085.xml b/data/Bravura/E085.xml new file mode 100644 index 00000000000..b8f1995417e --- /dev/null +++ b/data/Bravura/E085.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E086-timeSig6.xml b/data/Bravura/E086-timeSig6.xml deleted file mode 100644 index 5b88da2bb4b..00000000000 --- a/data/Bravura/E086-timeSig6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E086.xml b/data/Bravura/E086.xml new file mode 100644 index 00000000000..f915e89514d --- /dev/null +++ b/data/Bravura/E086.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E087-timeSig7.xml b/data/Bravura/E087-timeSig7.xml deleted file mode 100644 index 3dc69f16f5b..00000000000 --- a/data/Bravura/E087-timeSig7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E087.xml b/data/Bravura/E087.xml new file mode 100644 index 00000000000..15af3653bcb --- /dev/null +++ b/data/Bravura/E087.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E088-timeSig8.xml b/data/Bravura/E088-timeSig8.xml deleted file mode 100644 index 9b629ed6de2..00000000000 --- a/data/Bravura/E088-timeSig8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E088.xml b/data/Bravura/E088.xml new file mode 100644 index 00000000000..cb63489f735 --- /dev/null +++ b/data/Bravura/E088.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E089-timeSig9.xml b/data/Bravura/E089-timeSig9.xml deleted file mode 100644 index 5e0a5e7d394..00000000000 --- a/data/Bravura/E089-timeSig9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E089.xml b/data/Bravura/E089.xml new file mode 100644 index 00000000000..a7cac3baba5 --- /dev/null +++ b/data/Bravura/E089.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E08A-timeSigCommon.xml b/data/Bravura/E08A-timeSigCommon.xml deleted file mode 100644 index cffb2ae8911..00000000000 --- a/data/Bravura/E08A-timeSigCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E08A.xml b/data/Bravura/E08A.xml new file mode 100644 index 00000000000..e1d54494648 --- /dev/null +++ b/data/Bravura/E08A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E08B-timeSigCutCommon.xml b/data/Bravura/E08B-timeSigCutCommon.xml deleted file mode 100644 index a63297775a5..00000000000 --- a/data/Bravura/E08B-timeSigCutCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E08B.xml b/data/Bravura/E08B.xml new file mode 100644 index 00000000000..a7b1d28b1a8 --- /dev/null +++ b/data/Bravura/E08B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E08C-timeSigPlus.xml b/data/Bravura/E08C-timeSigPlus.xml deleted file mode 100644 index eeba8038c0d..00000000000 --- a/data/Bravura/E08C-timeSigPlus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E08C.xml b/data/Bravura/E08C.xml new file mode 100644 index 00000000000..30ec2bc3e0c --- /dev/null +++ b/data/Bravura/E08C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E08D-timeSigPlusSmall.xml b/data/Bravura/E08D-timeSigPlusSmall.xml deleted file mode 100644 index 9df2c847d10..00000000000 --- a/data/Bravura/E08D-timeSigPlusSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E08D.xml b/data/Bravura/E08D.xml new file mode 100644 index 00000000000..acbd6889d29 --- /dev/null +++ b/data/Bravura/E08D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E08E-timeSigFractionalSlash.xml b/data/Bravura/E08E-timeSigFractionalSlash.xml deleted file mode 100644 index 4a3343e913b..00000000000 --- a/data/Bravura/E08E-timeSigFractionalSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E08E.xml b/data/Bravura/E08E.xml new file mode 100644 index 00000000000..0ae7339fa45 --- /dev/null +++ b/data/Bravura/E08E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E08F-timeSigEquals.xml b/data/Bravura/E08F-timeSigEquals.xml deleted file mode 100644 index 4f2ac8177c2..00000000000 --- a/data/Bravura/E08F-timeSigEquals.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E08F.xml b/data/Bravura/E08F.xml new file mode 100644 index 00000000000..109161b45e1 --- /dev/null +++ b/data/Bravura/E08F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E090-timeSigMinus.xml b/data/Bravura/E090-timeSigMinus.xml deleted file mode 100644 index 0d8b9103ec8..00000000000 --- a/data/Bravura/E090-timeSigMinus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E090.xml b/data/Bravura/E090.xml new file mode 100644 index 00000000000..3c1734cd81b --- /dev/null +++ b/data/Bravura/E090.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E091-timeSigMultiply.xml b/data/Bravura/E091-timeSigMultiply.xml deleted file mode 100644 index 2440f6894e5..00000000000 --- a/data/Bravura/E091-timeSigMultiply.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E091.xml b/data/Bravura/E091.xml new file mode 100644 index 00000000000..66e1d6d7a5d --- /dev/null +++ b/data/Bravura/E091.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E092-timeSigParensLeftSmall.xml b/data/Bravura/E092-timeSigParensLeftSmall.xml deleted file mode 100644 index 356eebb803c..00000000000 --- a/data/Bravura/E092-timeSigParensLeftSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E092.xml b/data/Bravura/E092.xml new file mode 100644 index 00000000000..1537e653942 --- /dev/null +++ b/data/Bravura/E092.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E093-timeSigParensRightSmall.xml b/data/Bravura/E093-timeSigParensRightSmall.xml deleted file mode 100644 index 86964768210..00000000000 --- a/data/Bravura/E093-timeSigParensRightSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E093.xml b/data/Bravura/E093.xml new file mode 100644 index 00000000000..45df32a3218 --- /dev/null +++ b/data/Bravura/E093.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E094-timeSigParensLeft.xml b/data/Bravura/E094-timeSigParensLeft.xml deleted file mode 100644 index 76e990bbf0b..00000000000 --- a/data/Bravura/E094-timeSigParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E094.xml b/data/Bravura/E094.xml new file mode 100644 index 00000000000..524148c0549 --- /dev/null +++ b/data/Bravura/E094.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E095-timeSigParensRight.xml b/data/Bravura/E095-timeSigParensRight.xml deleted file mode 100644 index 58f6436e70a..00000000000 --- a/data/Bravura/E095-timeSigParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E095.xml b/data/Bravura/E095.xml new file mode 100644 index 00000000000..14d13173838 --- /dev/null +++ b/data/Bravura/E095.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0A0-noteheadDoubleWhole.xml b/data/Bravura/E0A0-noteheadDoubleWhole.xml deleted file mode 100644 index efed65b7485..00000000000 --- a/data/Bravura/E0A0-noteheadDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0A0.xml b/data/Bravura/E0A0.xml new file mode 100644 index 00000000000..9ce35f126e2 --- /dev/null +++ b/data/Bravura/E0A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0A1-noteheadDoubleWholeSquare.xml b/data/Bravura/E0A1-noteheadDoubleWholeSquare.xml deleted file mode 100644 index e09614fb0b0..00000000000 --- a/data/Bravura/E0A1-noteheadDoubleWholeSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0A1.xml b/data/Bravura/E0A1.xml new file mode 100644 index 00000000000..a9b054526f4 --- /dev/null +++ b/data/Bravura/E0A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0A2-noteheadWhole.xml b/data/Bravura/E0A2-noteheadWhole.xml deleted file mode 100644 index 7668a0969b0..00000000000 --- a/data/Bravura/E0A2-noteheadWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0A2.xml b/data/Bravura/E0A2.xml new file mode 100644 index 00000000000..5c4da6fce28 --- /dev/null +++ b/data/Bravura/E0A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0A3-noteheadHalf.xml b/data/Bravura/E0A3-noteheadHalf.xml deleted file mode 100644 index a71b697d242..00000000000 --- a/data/Bravura/E0A3-noteheadHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0A3.xml b/data/Bravura/E0A3.xml new file mode 100644 index 00000000000..a667856bd8b --- /dev/null +++ b/data/Bravura/E0A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0A4-noteheadBlack.xml b/data/Bravura/E0A4-noteheadBlack.xml deleted file mode 100644 index b225dc3f7d7..00000000000 --- a/data/Bravura/E0A4-noteheadBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0A4.xml b/data/Bravura/E0A4.xml new file mode 100644 index 00000000000..6cffcc920af --- /dev/null +++ b/data/Bravura/E0A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0A5-noteheadNull.xml b/data/Bravura/E0A5-noteheadNull.xml deleted file mode 100644 index 1445fb5f59a..00000000000 --- a/data/Bravura/E0A5-noteheadNull.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0A5.xml b/data/Bravura/E0A5.xml new file mode 100644 index 00000000000..d4eec1c1f60 --- /dev/null +++ b/data/Bravura/E0A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0A9-noteheadXBlack.xml b/data/Bravura/E0A9-noteheadXBlack.xml deleted file mode 100644 index 552d775249b..00000000000 --- a/data/Bravura/E0A9-noteheadXBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0A9.xml b/data/Bravura/E0A9.xml new file mode 100644 index 00000000000..6ec70417a2f --- /dev/null +++ b/data/Bravura/E0A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0AF-noteheadPlusBlack.xml b/data/Bravura/E0AF-noteheadPlusBlack.xml deleted file mode 100644 index 1eafa3dce03..00000000000 --- a/data/Bravura/E0AF-noteheadPlusBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0AF.xml b/data/Bravura/E0AF.xml new file mode 100644 index 00000000000..c353b2855d2 --- /dev/null +++ b/data/Bravura/E0AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0B5-noteheadWholeWithX.xml b/data/Bravura/E0B5-noteheadWholeWithX.xml deleted file mode 100644 index acce0c48a81..00000000000 --- a/data/Bravura/E0B5-noteheadWholeWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0B5.xml b/data/Bravura/E0B5.xml new file mode 100644 index 00000000000..b183401e5e2 --- /dev/null +++ b/data/Bravura/E0B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0B6-noteheadHalfWithX.xml b/data/Bravura/E0B6-noteheadHalfWithX.xml deleted file mode 100644 index b42bcad3e3b..00000000000 --- a/data/Bravura/E0B6-noteheadHalfWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0B6.xml b/data/Bravura/E0B6.xml new file mode 100644 index 00000000000..9d6121de6fa --- /dev/null +++ b/data/Bravura/E0B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0B7-noteheadVoidWithX.xml b/data/Bravura/E0B7-noteheadVoidWithX.xml deleted file mode 100644 index 97e2c175792..00000000000 --- a/data/Bravura/E0B7-noteheadVoidWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0B7.xml b/data/Bravura/E0B7.xml new file mode 100644 index 00000000000..ba9c7f9b058 --- /dev/null +++ b/data/Bravura/E0B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0D9-noteheadDiamondHalf.xml b/data/Bravura/E0D9-noteheadDiamondHalf.xml deleted file mode 100644 index 13c19f237f9..00000000000 --- a/data/Bravura/E0D9-noteheadDiamondHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0D9.xml b/data/Bravura/E0D9.xml new file mode 100644 index 00000000000..d48554a59d7 --- /dev/null +++ b/data/Bravura/E0D9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0DA-noteheadDiamondHalfWide.xml b/data/Bravura/E0DA-noteheadDiamondHalfWide.xml deleted file mode 100644 index f517c709444..00000000000 --- a/data/Bravura/E0DA-noteheadDiamondHalfWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0DA.xml b/data/Bravura/E0DA.xml new file mode 100644 index 00000000000..5f3c6440114 --- /dev/null +++ b/data/Bravura/E0DA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0DB-noteheadDiamondBlack.xml b/data/Bravura/E0DB-noteheadDiamondBlack.xml deleted file mode 100644 index 409994715ac..00000000000 --- a/data/Bravura/E0DB-noteheadDiamondBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0DB.xml b/data/Bravura/E0DB.xml new file mode 100644 index 00000000000..3ff2fe40a4f --- /dev/null +++ b/data/Bravura/E0DB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0DC-noteheadDiamondBlackWide.xml b/data/Bravura/E0DC-noteheadDiamondBlackWide.xml deleted file mode 100644 index cbe6f7951dd..00000000000 --- a/data/Bravura/E0DC-noteheadDiamondBlackWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0DC.xml b/data/Bravura/E0DC.xml new file mode 100644 index 00000000000..dc917248c73 --- /dev/null +++ b/data/Bravura/E0DC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0DD-noteheadDiamondWhite.xml b/data/Bravura/E0DD-noteheadDiamondWhite.xml deleted file mode 100644 index 1fc9b8951da..00000000000 --- a/data/Bravura/E0DD-noteheadDiamondWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0DD.xml b/data/Bravura/E0DD.xml new file mode 100644 index 00000000000..20bc604d1e6 --- /dev/null +++ b/data/Bravura/E0DD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0DE-noteheadDiamondWhiteWide.xml b/data/Bravura/E0DE-noteheadDiamondWhiteWide.xml deleted file mode 100644 index aa35f276c3f..00000000000 --- a/data/Bravura/E0DE-noteheadDiamondWhiteWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0DE.xml b/data/Bravura/E0DE.xml new file mode 100644 index 00000000000..f733e4f4ba3 --- /dev/null +++ b/data/Bravura/E0DE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0F5-noteheadParenthesisLeft.xml b/data/Bravura/E0F5-noteheadParenthesisLeft.xml deleted file mode 100644 index 1c7428523e1..00000000000 --- a/data/Bravura/E0F5-noteheadParenthesisLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0F5.xml b/data/Bravura/E0F5.xml new file mode 100644 index 00000000000..92449cd6086 --- /dev/null +++ b/data/Bravura/E0F5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0F6-noteheadParenthesisRight.xml b/data/Bravura/E0F6-noteheadParenthesisRight.xml deleted file mode 100644 index 476df581fdb..00000000000 --- a/data/Bravura/E0F6-noteheadParenthesisRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0F6.xml b/data/Bravura/E0F6.xml new file mode 100644 index 00000000000..31823b6b69a --- /dev/null +++ b/data/Bravura/E0F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E0FA-noteheadWholeFilled.xml b/data/Bravura/E0FA-noteheadWholeFilled.xml deleted file mode 100644 index c69596f769e..00000000000 --- a/data/Bravura/E0FA-noteheadWholeFilled.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E0FA.xml b/data/Bravura/E0FA.xml new file mode 100644 index 00000000000..dab725f66ab --- /dev/null +++ b/data/Bravura/E0FA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E101-noteheadSlashHorizontalEnds.xml b/data/Bravura/E101-noteheadSlashHorizontalEnds.xml deleted file mode 100644 index cb9bd307cf0..00000000000 --- a/data/Bravura/E101-noteheadSlashHorizontalEnds.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E101.xml b/data/Bravura/E101.xml new file mode 100644 index 00000000000..41fc2858ea9 --- /dev/null +++ b/data/Bravura/E101.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E102-noteheadSlashWhiteWhole.xml b/data/Bravura/E102-noteheadSlashWhiteWhole.xml deleted file mode 100644 index 054464693f0..00000000000 --- a/data/Bravura/E102-noteheadSlashWhiteWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E102.xml b/data/Bravura/E102.xml new file mode 100644 index 00000000000..774c30eb6bb --- /dev/null +++ b/data/Bravura/E102.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E103-noteheadSlashWhiteHalf.xml b/data/Bravura/E103-noteheadSlashWhiteHalf.xml deleted file mode 100644 index e92d2e47a0b..00000000000 --- a/data/Bravura/E103-noteheadSlashWhiteHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E103.xml b/data/Bravura/E103.xml new file mode 100644 index 00000000000..9e5d42ebe2b --- /dev/null +++ b/data/Bravura/E103.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E220-tremolo1.xml b/data/Bravura/E220-tremolo1.xml deleted file mode 100644 index 0febed16fd0..00000000000 --- a/data/Bravura/E220-tremolo1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E220.xml b/data/Bravura/E220.xml new file mode 100644 index 00000000000..a90d1e3e120 --- /dev/null +++ b/data/Bravura/E220.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E221-tremolo2.xml b/data/Bravura/E221-tremolo2.xml deleted file mode 100644 index 71f7e784f85..00000000000 --- a/data/Bravura/E221-tremolo2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E221.xml b/data/Bravura/E221.xml new file mode 100644 index 00000000000..66c83c4ad49 --- /dev/null +++ b/data/Bravura/E221.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E222-tremolo3.xml b/data/Bravura/E222-tremolo3.xml deleted file mode 100644 index 05a1751fdb7..00000000000 --- a/data/Bravura/E222-tremolo3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E222.xml b/data/Bravura/E222.xml new file mode 100644 index 00000000000..d0b591a6071 --- /dev/null +++ b/data/Bravura/E222.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E223-tremolo4.xml b/data/Bravura/E223-tremolo4.xml deleted file mode 100644 index 4bb89434a78..00000000000 --- a/data/Bravura/E223-tremolo4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E223.xml b/data/Bravura/E223.xml new file mode 100644 index 00000000000..aab4cd5f418 --- /dev/null +++ b/data/Bravura/E223.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E224-tremolo5.xml b/data/Bravura/E224-tremolo5.xml deleted file mode 100644 index 5769f29c692..00000000000 --- a/data/Bravura/E224-tremolo5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E224.xml b/data/Bravura/E224.xml new file mode 100644 index 00000000000..6e0edd0953b --- /dev/null +++ b/data/Bravura/E224.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E22A-buzzRoll.xml b/data/Bravura/E22A-buzzRoll.xml deleted file mode 100644 index 7d7bd05b7ef..00000000000 --- a/data/Bravura/E22A-buzzRoll.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E22A.xml b/data/Bravura/E22A.xml new file mode 100644 index 00000000000..5be7d962bb0 --- /dev/null +++ b/data/Bravura/E22A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E240-flag8thUp.xml b/data/Bravura/E240-flag8thUp.xml deleted file mode 100644 index 1ee624d6732..00000000000 --- a/data/Bravura/E240-flag8thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E240.xml b/data/Bravura/E240.xml new file mode 100644 index 00000000000..cf817688d65 --- /dev/null +++ b/data/Bravura/E240.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E241-flag8thDown.xml b/data/Bravura/E241-flag8thDown.xml deleted file mode 100644 index 6c895e000f9..00000000000 --- a/data/Bravura/E241-flag8thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E241.xml b/data/Bravura/E241.xml new file mode 100644 index 00000000000..2aa4967dbec --- /dev/null +++ b/data/Bravura/E241.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E242-flag16thUp.xml b/data/Bravura/E242-flag16thUp.xml deleted file mode 100644 index 3d1c4b1f708..00000000000 --- a/data/Bravura/E242-flag16thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E242.xml b/data/Bravura/E242.xml new file mode 100644 index 00000000000..fbc6f3a5ce8 --- /dev/null +++ b/data/Bravura/E242.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E243-flag16thDown.xml b/data/Bravura/E243-flag16thDown.xml deleted file mode 100644 index 337253eeebe..00000000000 --- a/data/Bravura/E243-flag16thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E243.xml b/data/Bravura/E243.xml new file mode 100644 index 00000000000..7bf7f3bf3c3 --- /dev/null +++ b/data/Bravura/E243.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E244-flag32ndUp.xml b/data/Bravura/E244-flag32ndUp.xml deleted file mode 100644 index 0c1f6c7d366..00000000000 --- a/data/Bravura/E244-flag32ndUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E244.xml b/data/Bravura/E244.xml new file mode 100644 index 00000000000..2637f5b77ce --- /dev/null +++ b/data/Bravura/E244.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E245-flag32ndDown.xml b/data/Bravura/E245-flag32ndDown.xml deleted file mode 100644 index 1bf31b78f2a..00000000000 --- a/data/Bravura/E245-flag32ndDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E245.xml b/data/Bravura/E245.xml new file mode 100644 index 00000000000..7cc156153a4 --- /dev/null +++ b/data/Bravura/E245.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E246-flag64thUp.xml b/data/Bravura/E246-flag64thUp.xml deleted file mode 100644 index 6fc7123f3d8..00000000000 --- a/data/Bravura/E246-flag64thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E246.xml b/data/Bravura/E246.xml new file mode 100644 index 00000000000..8d090ee8a4b --- /dev/null +++ b/data/Bravura/E246.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E247-flag64thDown.xml b/data/Bravura/E247-flag64thDown.xml deleted file mode 100644 index df79fd2c0a8..00000000000 --- a/data/Bravura/E247-flag64thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E247.xml b/data/Bravura/E247.xml new file mode 100644 index 00000000000..e098a251b7d --- /dev/null +++ b/data/Bravura/E247.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E248-flag128thUp.xml b/data/Bravura/E248-flag128thUp.xml deleted file mode 100644 index 367fb10d650..00000000000 --- a/data/Bravura/E248-flag128thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E248.xml b/data/Bravura/E248.xml new file mode 100644 index 00000000000..7ef7aa4b738 --- /dev/null +++ b/data/Bravura/E248.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E249-flag128thDown.xml b/data/Bravura/E249-flag128thDown.xml deleted file mode 100644 index ae1da108d72..00000000000 --- a/data/Bravura/E249-flag128thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E249.xml b/data/Bravura/E249.xml new file mode 100644 index 00000000000..ff47fbefabf --- /dev/null +++ b/data/Bravura/E249.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E24A-flag256thUp.xml b/data/Bravura/E24A-flag256thUp.xml deleted file mode 100644 index 4699bf88588..00000000000 --- a/data/Bravura/E24A-flag256thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E24A.xml b/data/Bravura/E24A.xml new file mode 100644 index 00000000000..116123fc385 --- /dev/null +++ b/data/Bravura/E24A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E24B-flag256thDown.xml b/data/Bravura/E24B-flag256thDown.xml deleted file mode 100644 index 14395eace49..00000000000 --- a/data/Bravura/E24B-flag256thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E24B.xml b/data/Bravura/E24B.xml new file mode 100644 index 00000000000..6042622cffd --- /dev/null +++ b/data/Bravura/E24B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E24C-flag512thUp.xml b/data/Bravura/E24C-flag512thUp.xml deleted file mode 100644 index 3438d8c3093..00000000000 --- a/data/Bravura/E24C-flag512thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E24C.xml b/data/Bravura/E24C.xml new file mode 100644 index 00000000000..20fa639cccb --- /dev/null +++ b/data/Bravura/E24C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E24D-flag512thDown.xml b/data/Bravura/E24D-flag512thDown.xml deleted file mode 100644 index 18a32803398..00000000000 --- a/data/Bravura/E24D-flag512thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E24D.xml b/data/Bravura/E24D.xml new file mode 100644 index 00000000000..88574c4f406 --- /dev/null +++ b/data/Bravura/E24D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E24E-flag1024thUp.xml b/data/Bravura/E24E-flag1024thUp.xml deleted file mode 100644 index 214a4155580..00000000000 --- a/data/Bravura/E24E-flag1024thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E24E.xml b/data/Bravura/E24E.xml new file mode 100644 index 00000000000..f36bae7a638 --- /dev/null +++ b/data/Bravura/E24E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E24F-flag1024thDown.xml b/data/Bravura/E24F-flag1024thDown.xml deleted file mode 100644 index b5de10ac352..00000000000 --- a/data/Bravura/E24F-flag1024thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E24F.xml b/data/Bravura/E24F.xml new file mode 100644 index 00000000000..3b075461e04 --- /dev/null +++ b/data/Bravura/E24F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E260-accidentalFlat.xml b/data/Bravura/E260-accidentalFlat.xml deleted file mode 100644 index 0e56beae4af..00000000000 --- a/data/Bravura/E260-accidentalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E260.xml b/data/Bravura/E260.xml new file mode 100644 index 00000000000..fb0200ab823 --- /dev/null +++ b/data/Bravura/E260.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E261-accidentalNatural.xml b/data/Bravura/E261-accidentalNatural.xml deleted file mode 100644 index efa0ca04899..00000000000 --- a/data/Bravura/E261-accidentalNatural.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E261.xml b/data/Bravura/E261.xml new file mode 100644 index 00000000000..1995a83789a --- /dev/null +++ b/data/Bravura/E261.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E262-accidentalSharp.xml b/data/Bravura/E262-accidentalSharp.xml deleted file mode 100644 index 02417421b0e..00000000000 --- a/data/Bravura/E262-accidentalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E262.xml b/data/Bravura/E262.xml new file mode 100644 index 00000000000..95bb9f1b2d0 --- /dev/null +++ b/data/Bravura/E262.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E263-accidentalDoubleSharp.xml b/data/Bravura/E263-accidentalDoubleSharp.xml deleted file mode 100644 index 530b54a8064..00000000000 --- a/data/Bravura/E263-accidentalDoubleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E263.xml b/data/Bravura/E263.xml new file mode 100644 index 00000000000..a065aa25d25 --- /dev/null +++ b/data/Bravura/E263.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E264-accidentalDoubleFlat.xml b/data/Bravura/E264-accidentalDoubleFlat.xml deleted file mode 100644 index 5d3fef3484d..00000000000 --- a/data/Bravura/E264-accidentalDoubleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E264.xml b/data/Bravura/E264.xml new file mode 100644 index 00000000000..6e8b6512bc4 --- /dev/null +++ b/data/Bravura/E264.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E265-accidentalTripleSharp.xml b/data/Bravura/E265-accidentalTripleSharp.xml deleted file mode 100644 index 4f9bb7f5590..00000000000 --- a/data/Bravura/E265-accidentalTripleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E265.xml b/data/Bravura/E265.xml new file mode 100644 index 00000000000..cfca0e3a0ce --- /dev/null +++ b/data/Bravura/E265.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E266-accidentalTripleFlat.xml b/data/Bravura/E266-accidentalTripleFlat.xml deleted file mode 100644 index fd272217312..00000000000 --- a/data/Bravura/E266-accidentalTripleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E266.xml b/data/Bravura/E266.xml new file mode 100644 index 00000000000..105d5a48bed --- /dev/null +++ b/data/Bravura/E266.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E267-accidentalNaturalFlat.xml b/data/Bravura/E267-accidentalNaturalFlat.xml deleted file mode 100644 index e9279c9fb97..00000000000 --- a/data/Bravura/E267-accidentalNaturalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E267.xml b/data/Bravura/E267.xml new file mode 100644 index 00000000000..4cd0049c5a6 --- /dev/null +++ b/data/Bravura/E267.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E268-accidentalNaturalSharp.xml b/data/Bravura/E268-accidentalNaturalSharp.xml deleted file mode 100644 index f7f1a587f2a..00000000000 --- a/data/Bravura/E268-accidentalNaturalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E268.xml b/data/Bravura/E268.xml new file mode 100644 index 00000000000..dcfd8ec246c --- /dev/null +++ b/data/Bravura/E268.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E269-accidentalSharpSharp.xml b/data/Bravura/E269-accidentalSharpSharp.xml deleted file mode 100644 index d5f5252e7e5..00000000000 --- a/data/Bravura/E269-accidentalSharpSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E269.xml b/data/Bravura/E269.xml new file mode 100644 index 00000000000..93489e36c81 --- /dev/null +++ b/data/Bravura/E269.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E26A-accidentalParensLeft.xml b/data/Bravura/E26A-accidentalParensLeft.xml deleted file mode 100644 index b0f23f0f78d..00000000000 --- a/data/Bravura/E26A-accidentalParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E26A.xml b/data/Bravura/E26A.xml new file mode 100644 index 00000000000..5fdc48f968e --- /dev/null +++ b/data/Bravura/E26A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E26B-accidentalParensRight.xml b/data/Bravura/E26B-accidentalParensRight.xml deleted file mode 100644 index ec2a01943e1..00000000000 --- a/data/Bravura/E26B-accidentalParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E26B.xml b/data/Bravura/E26B.xml new file mode 100644 index 00000000000..ba21df9adc7 --- /dev/null +++ b/data/Bravura/E26B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E26C-accidentalBracketLeft.xml b/data/Bravura/E26C-accidentalBracketLeft.xml deleted file mode 100644 index 60b8fbf9bae..00000000000 --- a/data/Bravura/E26C-accidentalBracketLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E26C.xml b/data/Bravura/E26C.xml new file mode 100644 index 00000000000..11c3255d0f9 --- /dev/null +++ b/data/Bravura/E26C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E26D-accidentalBracketRight.xml b/data/Bravura/E26D-accidentalBracketRight.xml deleted file mode 100644 index f8a58735f7d..00000000000 --- a/data/Bravura/E26D-accidentalBracketRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E26D.xml b/data/Bravura/E26D.xml new file mode 100644 index 00000000000..b17eec2af98 --- /dev/null +++ b/data/Bravura/E26D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E270-accidentalQuarterToneFlatArrowUp.xml b/data/Bravura/E270-accidentalQuarterToneFlatArrowUp.xml deleted file mode 100644 index 6438387ea1f..00000000000 --- a/data/Bravura/E270-accidentalQuarterToneFlatArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E270.xml b/data/Bravura/E270.xml new file mode 100644 index 00000000000..84960e562d7 --- /dev/null +++ b/data/Bravura/E270.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E271-accidentalThreeQuarterTonesFlatArrowDown.xml b/data/Bravura/E271-accidentalThreeQuarterTonesFlatArrowDown.xml deleted file mode 100644 index 87e35c8468f..00000000000 --- a/data/Bravura/E271-accidentalThreeQuarterTonesFlatArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E271.xml b/data/Bravura/E271.xml new file mode 100644 index 00000000000..187d02bf2e6 --- /dev/null +++ b/data/Bravura/E271.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E272-accidentalQuarterToneSharpNaturalArrowUp.xml b/data/Bravura/E272-accidentalQuarterToneSharpNaturalArrowUp.xml deleted file mode 100644 index 9698bc84f1e..00000000000 --- a/data/Bravura/E272-accidentalQuarterToneSharpNaturalArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E272.xml b/data/Bravura/E272.xml new file mode 100644 index 00000000000..d4c99d6f066 --- /dev/null +++ b/data/Bravura/E272.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E273-accidentalQuarterToneFlatNaturalArrowDown.xml b/data/Bravura/E273-accidentalQuarterToneFlatNaturalArrowDown.xml deleted file mode 100644 index 7aa6ea4d87d..00000000000 --- a/data/Bravura/E273-accidentalQuarterToneFlatNaturalArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E273.xml b/data/Bravura/E273.xml new file mode 100644 index 00000000000..1524e27d141 --- /dev/null +++ b/data/Bravura/E273.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E274-accidentalThreeQuarterTonesSharpArrowUp.xml b/data/Bravura/E274-accidentalThreeQuarterTonesSharpArrowUp.xml deleted file mode 100644 index 659806b4409..00000000000 --- a/data/Bravura/E274-accidentalThreeQuarterTonesSharpArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E274.xml b/data/Bravura/E274.xml new file mode 100644 index 00000000000..d95265d905b --- /dev/null +++ b/data/Bravura/E274.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E275-accidentalQuarterToneSharpArrowDown.xml b/data/Bravura/E275-accidentalQuarterToneSharpArrowDown.xml deleted file mode 100644 index 1878535920e..00000000000 --- a/data/Bravura/E275-accidentalQuarterToneSharpArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E275.xml b/data/Bravura/E275.xml new file mode 100644 index 00000000000..04ad6ae645a --- /dev/null +++ b/data/Bravura/E275.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E280-accidentalQuarterToneFlatStein.xml b/data/Bravura/E280-accidentalQuarterToneFlatStein.xml deleted file mode 100644 index b0f740ca38e..00000000000 --- a/data/Bravura/E280-accidentalQuarterToneFlatStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E280.xml b/data/Bravura/E280.xml new file mode 100644 index 00000000000..71e35bba405 --- /dev/null +++ b/data/Bravura/E280.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E281-accidentalThreeQuarterTonesFlatZimmermann.xml b/data/Bravura/E281-accidentalThreeQuarterTonesFlatZimmermann.xml deleted file mode 100644 index f33360cdeaa..00000000000 --- a/data/Bravura/E281-accidentalThreeQuarterTonesFlatZimmermann.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E281.xml b/data/Bravura/E281.xml new file mode 100644 index 00000000000..feb9dddb400 --- /dev/null +++ b/data/Bravura/E281.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E282-accidentalQuarterToneSharpStein.xml b/data/Bravura/E282-accidentalQuarterToneSharpStein.xml deleted file mode 100644 index c98e97805fa..00000000000 --- a/data/Bravura/E282-accidentalQuarterToneSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E282.xml b/data/Bravura/E282.xml new file mode 100644 index 00000000000..bf1ae8a82cf --- /dev/null +++ b/data/Bravura/E282.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E283-accidentalThreeQuarterTonesSharpStein.xml b/data/Bravura/E283-accidentalThreeQuarterTonesSharpStein.xml deleted file mode 100644 index 84ad6017781..00000000000 --- a/data/Bravura/E283-accidentalThreeQuarterTonesSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E283.xml b/data/Bravura/E283.xml new file mode 100644 index 00000000000..d47a066decf --- /dev/null +++ b/data/Bravura/E283.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E440-accidentalBuyukMucennebFlat.xml b/data/Bravura/E440-accidentalBuyukMucennebFlat.xml deleted file mode 100644 index c6b6c11126d..00000000000 --- a/data/Bravura/E440-accidentalBuyukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E440.xml b/data/Bravura/E440.xml new file mode 100644 index 00000000000..9cb9245a91c --- /dev/null +++ b/data/Bravura/E440.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E441-accidentalKucukMucennebFlat.xml b/data/Bravura/E441-accidentalKucukMucennebFlat.xml deleted file mode 100644 index 528e2ad1a9b..00000000000 --- a/data/Bravura/E441-accidentalKucukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E441.xml b/data/Bravura/E441.xml new file mode 100644 index 00000000000..0e103eb2a0a --- /dev/null +++ b/data/Bravura/E441.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E442-accidentalBakiyeFlat.xml b/data/Bravura/E442-accidentalBakiyeFlat.xml deleted file mode 100644 index 77e3ea29ab7..00000000000 --- a/data/Bravura/E442-accidentalBakiyeFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E442.xml b/data/Bravura/E442.xml new file mode 100644 index 00000000000..e65ebc48951 --- /dev/null +++ b/data/Bravura/E442.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E443-accidentalKomaFlat.xml b/data/Bravura/E443-accidentalKomaFlat.xml deleted file mode 100644 index 6e8011ffce0..00000000000 --- a/data/Bravura/E443-accidentalKomaFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E443.xml b/data/Bravura/E443.xml new file mode 100644 index 00000000000..0ba9d08c755 --- /dev/null +++ b/data/Bravura/E443.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E444-accidentalKomaSharp.xml b/data/Bravura/E444-accidentalKomaSharp.xml deleted file mode 100644 index d17c08d3fbb..00000000000 --- a/data/Bravura/E444-accidentalKomaSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E444.xml b/data/Bravura/E444.xml new file mode 100644 index 00000000000..9c240b5d028 --- /dev/null +++ b/data/Bravura/E444.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E445-accidentalBakiyeSharp.xml b/data/Bravura/E445-accidentalBakiyeSharp.xml deleted file mode 100644 index 860088a94fd..00000000000 --- a/data/Bravura/E445-accidentalBakiyeSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E445.xml b/data/Bravura/E445.xml new file mode 100644 index 00000000000..28cc00babd1 --- /dev/null +++ b/data/Bravura/E445.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E446-accidentalKucukMucennebSharp.xml b/data/Bravura/E446-accidentalKucukMucennebSharp.xml deleted file mode 100644 index 0743eeb95f7..00000000000 --- a/data/Bravura/E446-accidentalKucukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E446.xml b/data/Bravura/E446.xml new file mode 100644 index 00000000000..3ff4c9c37b0 --- /dev/null +++ b/data/Bravura/E446.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E447-accidentalBuyukMucennebSharp.xml b/data/Bravura/E447-accidentalBuyukMucennebSharp.xml deleted file mode 100644 index d748bf4cbb5..00000000000 --- a/data/Bravura/E447-accidentalBuyukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E447.xml b/data/Bravura/E447.xml new file mode 100644 index 00000000000..8e1c521d568 --- /dev/null +++ b/data/Bravura/E447.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A0-articAccentAbove.xml b/data/Bravura/E4A0-articAccentAbove.xml deleted file mode 100644 index 69dcb183cd0..00000000000 --- a/data/Bravura/E4A0-articAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A0.xml b/data/Bravura/E4A0.xml new file mode 100644 index 00000000000..fbddfea45f6 --- /dev/null +++ b/data/Bravura/E4A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A1-articAccentBelow.xml b/data/Bravura/E4A1-articAccentBelow.xml deleted file mode 100644 index c75f0de0456..00000000000 --- a/data/Bravura/E4A1-articAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A1.xml b/data/Bravura/E4A1.xml new file mode 100644 index 00000000000..5c92d74c9fb --- /dev/null +++ b/data/Bravura/E4A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A2-articStaccatoAbove.xml b/data/Bravura/E4A2-articStaccatoAbove.xml deleted file mode 100644 index 7d109f9a8b5..00000000000 --- a/data/Bravura/E4A2-articStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A2.xml b/data/Bravura/E4A2.xml new file mode 100644 index 00000000000..93a243e4ce5 --- /dev/null +++ b/data/Bravura/E4A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A3-articStaccatoBelow.xml b/data/Bravura/E4A3-articStaccatoBelow.xml deleted file mode 100644 index 537aba00dc1..00000000000 --- a/data/Bravura/E4A3-articStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A3.xml b/data/Bravura/E4A3.xml new file mode 100644 index 00000000000..631b916659d --- /dev/null +++ b/data/Bravura/E4A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A4-articTenutoAbove.xml b/data/Bravura/E4A4-articTenutoAbove.xml deleted file mode 100644 index f664beb6cf8..00000000000 --- a/data/Bravura/E4A4-articTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A4.xml b/data/Bravura/E4A4.xml new file mode 100644 index 00000000000..ef41b08d1f6 --- /dev/null +++ b/data/Bravura/E4A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A5-articTenutoBelow.xml b/data/Bravura/E4A5-articTenutoBelow.xml deleted file mode 100644 index fe7147469c4..00000000000 --- a/data/Bravura/E4A5-articTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A5.xml b/data/Bravura/E4A5.xml new file mode 100644 index 00000000000..d2d48d212d6 --- /dev/null +++ b/data/Bravura/E4A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A6-articStaccatissimoAbove.xml b/data/Bravura/E4A6-articStaccatissimoAbove.xml deleted file mode 100644 index 1e3131d0fc7..00000000000 --- a/data/Bravura/E4A6-articStaccatissimoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A6.xml b/data/Bravura/E4A6.xml new file mode 100644 index 00000000000..3c4b5698129 --- /dev/null +++ b/data/Bravura/E4A6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A7-articStaccatissimoBelow.xml b/data/Bravura/E4A7-articStaccatissimoBelow.xml deleted file mode 100644 index f8565946ae9..00000000000 --- a/data/Bravura/E4A7-articStaccatissimoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A7.xml b/data/Bravura/E4A7.xml new file mode 100644 index 00000000000..d6949e92740 --- /dev/null +++ b/data/Bravura/E4A7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A8-articStaccatissimoWedgeAbove.xml b/data/Bravura/E4A8-articStaccatissimoWedgeAbove.xml deleted file mode 100644 index 785dd49a688..00000000000 --- a/data/Bravura/E4A8-articStaccatissimoWedgeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A8.xml b/data/Bravura/E4A8.xml new file mode 100644 index 00000000000..a7cd9748811 --- /dev/null +++ b/data/Bravura/E4A8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4A9-articStaccatissimoWedgeBelow.xml b/data/Bravura/E4A9-articStaccatissimoWedgeBelow.xml deleted file mode 100644 index 5317c818a26..00000000000 --- a/data/Bravura/E4A9-articStaccatissimoWedgeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4A9.xml b/data/Bravura/E4A9.xml new file mode 100644 index 00000000000..c705104974e --- /dev/null +++ b/data/Bravura/E4A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4AA-articStaccatissimoStrokeAbove.xml b/data/Bravura/E4AA-articStaccatissimoStrokeAbove.xml deleted file mode 100644 index a708758ab0a..00000000000 --- a/data/Bravura/E4AA-articStaccatissimoStrokeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4AA.xml b/data/Bravura/E4AA.xml new file mode 100644 index 00000000000..7f8a0241ac7 --- /dev/null +++ b/data/Bravura/E4AA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4AB-articStaccatissimoStrokeBelow.xml b/data/Bravura/E4AB-articStaccatissimoStrokeBelow.xml deleted file mode 100644 index e66603f1891..00000000000 --- a/data/Bravura/E4AB-articStaccatissimoStrokeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4AB.xml b/data/Bravura/E4AB.xml new file mode 100644 index 00000000000..f4173bef9bf --- /dev/null +++ b/data/Bravura/E4AB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4AC-articMarcatoAbove.xml b/data/Bravura/E4AC-articMarcatoAbove.xml deleted file mode 100644 index 1bccb8af598..00000000000 --- a/data/Bravura/E4AC-articMarcatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4AC.xml b/data/Bravura/E4AC.xml new file mode 100644 index 00000000000..752cb5864df --- /dev/null +++ b/data/Bravura/E4AC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4AD-articMarcatoBelow.xml b/data/Bravura/E4AD-articMarcatoBelow.xml deleted file mode 100644 index 256559974ed..00000000000 --- a/data/Bravura/E4AD-articMarcatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4AD.xml b/data/Bravura/E4AD.xml new file mode 100644 index 00000000000..76b90995038 --- /dev/null +++ b/data/Bravura/E4AD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4AE-articMarcatoStaccatoAbove.xml b/data/Bravura/E4AE-articMarcatoStaccatoAbove.xml deleted file mode 100644 index b36ae79d3a2..00000000000 --- a/data/Bravura/E4AE-articMarcatoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4AE.xml b/data/Bravura/E4AE.xml new file mode 100644 index 00000000000..087921517b9 --- /dev/null +++ b/data/Bravura/E4AE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4AF-articMarcatoStaccatoBelow.xml b/data/Bravura/E4AF-articMarcatoStaccatoBelow.xml deleted file mode 100644 index 427ffd0b3d1..00000000000 --- a/data/Bravura/E4AF-articMarcatoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4AF.xml b/data/Bravura/E4AF.xml new file mode 100644 index 00000000000..4bc3c2582c1 --- /dev/null +++ b/data/Bravura/E4AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B0-articAccentStaccatoAbove.xml b/data/Bravura/E4B0-articAccentStaccatoAbove.xml deleted file mode 100644 index f0e77ef3a4a..00000000000 --- a/data/Bravura/E4B0-articAccentStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B0.xml b/data/Bravura/E4B0.xml new file mode 100644 index 00000000000..af3973bc5de --- /dev/null +++ b/data/Bravura/E4B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B1-articAccentStaccatoBelow.xml b/data/Bravura/E4B1-articAccentStaccatoBelow.xml deleted file mode 100644 index 6a17dad45cc..00000000000 --- a/data/Bravura/E4B1-articAccentStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B1.xml b/data/Bravura/E4B1.xml new file mode 100644 index 00000000000..c5f59135f9d --- /dev/null +++ b/data/Bravura/E4B1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B2-articTenutoStaccatoAbove.xml b/data/Bravura/E4B2-articTenutoStaccatoAbove.xml deleted file mode 100644 index 399782635ba..00000000000 --- a/data/Bravura/E4B2-articTenutoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B2.xml b/data/Bravura/E4B2.xml new file mode 100644 index 00000000000..9af0c199517 --- /dev/null +++ b/data/Bravura/E4B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B3-articTenutoStaccatoBelow.xml b/data/Bravura/E4B3-articTenutoStaccatoBelow.xml deleted file mode 100644 index f3c8a2a6906..00000000000 --- a/data/Bravura/E4B3-articTenutoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B3.xml b/data/Bravura/E4B3.xml new file mode 100644 index 00000000000..54136f73eb6 --- /dev/null +++ b/data/Bravura/E4B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B4-articTenutoAccentAbove.xml b/data/Bravura/E4B4-articTenutoAccentAbove.xml deleted file mode 100644 index 71b828bf314..00000000000 --- a/data/Bravura/E4B4-articTenutoAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B4.xml b/data/Bravura/E4B4.xml new file mode 100644 index 00000000000..8a62f3bfe7a --- /dev/null +++ b/data/Bravura/E4B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B5-articTenutoAccentBelow.xml b/data/Bravura/E4B5-articTenutoAccentBelow.xml deleted file mode 100644 index 31e66fdb125..00000000000 --- a/data/Bravura/E4B5-articTenutoAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B5.xml b/data/Bravura/E4B5.xml new file mode 100644 index 00000000000..a61a2a9b0cc --- /dev/null +++ b/data/Bravura/E4B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B6-articStressAbove.xml b/data/Bravura/E4B6-articStressAbove.xml deleted file mode 100644 index 20311f8b55e..00000000000 --- a/data/Bravura/E4B6-articStressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B6.xml b/data/Bravura/E4B6.xml new file mode 100644 index 00000000000..908cda16b69 --- /dev/null +++ b/data/Bravura/E4B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B7-articStressBelow.xml b/data/Bravura/E4B7-articStressBelow.xml deleted file mode 100644 index 8022dc7d01c..00000000000 --- a/data/Bravura/E4B7-articStressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B7.xml b/data/Bravura/E4B7.xml new file mode 100644 index 00000000000..0068e03b19c --- /dev/null +++ b/data/Bravura/E4B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B8-articUnstressAbove.xml b/data/Bravura/E4B8-articUnstressAbove.xml deleted file mode 100644 index 17486953899..00000000000 --- a/data/Bravura/E4B8-articUnstressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B8.xml b/data/Bravura/E4B8.xml new file mode 100644 index 00000000000..0dd524674df --- /dev/null +++ b/data/Bravura/E4B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4B9-articUnstressBelow.xml b/data/Bravura/E4B9-articUnstressBelow.xml deleted file mode 100644 index ff5143c2c2f..00000000000 --- a/data/Bravura/E4B9-articUnstressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4B9.xml b/data/Bravura/E4B9.xml new file mode 100644 index 00000000000..66858cb299d --- /dev/null +++ b/data/Bravura/E4B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4BA-articLaissezVibrerAbove.xml b/data/Bravura/E4BA-articLaissezVibrerAbove.xml deleted file mode 100644 index 99ccb98782e..00000000000 --- a/data/Bravura/E4BA-articLaissezVibrerAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4BA.xml b/data/Bravura/E4BA.xml new file mode 100644 index 00000000000..b16370ab9fc --- /dev/null +++ b/data/Bravura/E4BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4BB-articLaissezVibrerBelow.xml b/data/Bravura/E4BB-articLaissezVibrerBelow.xml deleted file mode 100644 index 7a1cd43167f..00000000000 --- a/data/Bravura/E4BB-articLaissezVibrerBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4BB.xml b/data/Bravura/E4BB.xml new file mode 100644 index 00000000000..57f20c1d050 --- /dev/null +++ b/data/Bravura/E4BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4BC-articMarcatoTenutoAbove.xml b/data/Bravura/E4BC-articMarcatoTenutoAbove.xml deleted file mode 100644 index 24f5193f74e..00000000000 --- a/data/Bravura/E4BC-articMarcatoTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4BC.xml b/data/Bravura/E4BC.xml new file mode 100644 index 00000000000..4d3e3debd1f --- /dev/null +++ b/data/Bravura/E4BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4BD-articMarcatoTenutoBelow.xml b/data/Bravura/E4BD-articMarcatoTenutoBelow.xml deleted file mode 100644 index ca753958e92..00000000000 --- a/data/Bravura/E4BD-articMarcatoTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4BD.xml b/data/Bravura/E4BD.xml new file mode 100644 index 00000000000..e65edf006ab --- /dev/null +++ b/data/Bravura/E4BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C0-fermataAbove.xml b/data/Bravura/E4C0-fermataAbove.xml deleted file mode 100644 index 887e71c1388..00000000000 --- a/data/Bravura/E4C0-fermataAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C0.xml b/data/Bravura/E4C0.xml new file mode 100644 index 00000000000..aae6f3184cc --- /dev/null +++ b/data/Bravura/E4C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C1-fermataBelow.xml b/data/Bravura/E4C1-fermataBelow.xml deleted file mode 100644 index 8503168a015..00000000000 --- a/data/Bravura/E4C1-fermataBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C1.xml b/data/Bravura/E4C1.xml new file mode 100644 index 00000000000..a78d255c783 --- /dev/null +++ b/data/Bravura/E4C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C2-fermataVeryShortAbove.xml b/data/Bravura/E4C2-fermataVeryShortAbove.xml deleted file mode 100644 index ff95516fb87..00000000000 --- a/data/Bravura/E4C2-fermataVeryShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C2.xml b/data/Bravura/E4C2.xml new file mode 100644 index 00000000000..39c80df7850 --- /dev/null +++ b/data/Bravura/E4C2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C3-fermataVeryShortBelow.xml b/data/Bravura/E4C3-fermataVeryShortBelow.xml deleted file mode 100644 index c97f5e2eb34..00000000000 --- a/data/Bravura/E4C3-fermataVeryShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C3.xml b/data/Bravura/E4C3.xml new file mode 100644 index 00000000000..b81913fb196 --- /dev/null +++ b/data/Bravura/E4C3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C4-fermataShortAbove.xml b/data/Bravura/E4C4-fermataShortAbove.xml deleted file mode 100644 index f9c9e86ef29..00000000000 --- a/data/Bravura/E4C4-fermataShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C4.xml b/data/Bravura/E4C4.xml new file mode 100644 index 00000000000..1954b290a3d --- /dev/null +++ b/data/Bravura/E4C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C5-fermataShortBelow.xml b/data/Bravura/E4C5-fermataShortBelow.xml deleted file mode 100644 index c2f9efc9676..00000000000 --- a/data/Bravura/E4C5-fermataShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C5.xml b/data/Bravura/E4C5.xml new file mode 100644 index 00000000000..a7a20e43e39 --- /dev/null +++ b/data/Bravura/E4C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C6-fermataLongAbove.xml b/data/Bravura/E4C6-fermataLongAbove.xml deleted file mode 100644 index 32d40d209db..00000000000 --- a/data/Bravura/E4C6-fermataLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C6.xml b/data/Bravura/E4C6.xml new file mode 100644 index 00000000000..7ec4c8ed085 --- /dev/null +++ b/data/Bravura/E4C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C7-fermataLongBelow.xml b/data/Bravura/E4C7-fermataLongBelow.xml deleted file mode 100644 index 8da986c3763..00000000000 --- a/data/Bravura/E4C7-fermataLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C7.xml b/data/Bravura/E4C7.xml new file mode 100644 index 00000000000..35ea9f08464 --- /dev/null +++ b/data/Bravura/E4C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C8-fermataVeryLongAbove.xml b/data/Bravura/E4C8-fermataVeryLongAbove.xml deleted file mode 100644 index 74cd2194008..00000000000 --- a/data/Bravura/E4C8-fermataVeryLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C8.xml b/data/Bravura/E4C8.xml new file mode 100644 index 00000000000..24dc8c894f9 --- /dev/null +++ b/data/Bravura/E4C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4C9-fermataVeryLongBelow.xml b/data/Bravura/E4C9-fermataVeryLongBelow.xml deleted file mode 100644 index 8ffcb143815..00000000000 --- a/data/Bravura/E4C9-fermataVeryLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4C9.xml b/data/Bravura/E4C9.xml new file mode 100644 index 00000000000..cddd389c759 --- /dev/null +++ b/data/Bravura/E4C9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4CE-breathMarkComma.xml b/data/Bravura/E4CE-breathMarkComma.xml deleted file mode 100644 index 0246c08fd19..00000000000 --- a/data/Bravura/E4CE-breathMarkComma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4CE.xml b/data/Bravura/E4CE.xml new file mode 100644 index 00000000000..2e8b2199538 --- /dev/null +++ b/data/Bravura/E4CE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E0-restMaxima.xml b/data/Bravura/E4E0-restMaxima.xml deleted file mode 100644 index 954651f5ab8..00000000000 --- a/data/Bravura/E4E0-restMaxima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E0.xml b/data/Bravura/E4E0.xml new file mode 100644 index 00000000000..d9c828db189 --- /dev/null +++ b/data/Bravura/E4E0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E1-restLonga.xml b/data/Bravura/E4E1-restLonga.xml deleted file mode 100644 index 489d9aadfa5..00000000000 --- a/data/Bravura/E4E1-restLonga.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E1.xml b/data/Bravura/E4E1.xml new file mode 100644 index 00000000000..f709217ee67 --- /dev/null +++ b/data/Bravura/E4E1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E2-restDoubleWhole.xml b/data/Bravura/E4E2-restDoubleWhole.xml deleted file mode 100644 index e682ef0923c..00000000000 --- a/data/Bravura/E4E2-restDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E2.xml b/data/Bravura/E4E2.xml new file mode 100644 index 00000000000..e4c4376fa2a --- /dev/null +++ b/data/Bravura/E4E2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E3-restWhole.xml b/data/Bravura/E4E3-restWhole.xml deleted file mode 100644 index 5ef49f33be5..00000000000 --- a/data/Bravura/E4E3-restWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E3.xml b/data/Bravura/E4E3.xml new file mode 100644 index 00000000000..26a83b682af --- /dev/null +++ b/data/Bravura/E4E3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E4-restHalf.xml b/data/Bravura/E4E4-restHalf.xml deleted file mode 100644 index 908fe6586a3..00000000000 --- a/data/Bravura/E4E4-restHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E4.xml b/data/Bravura/E4E4.xml new file mode 100644 index 00000000000..4dcc53d8d16 --- /dev/null +++ b/data/Bravura/E4E4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E5-restQuarter.xml b/data/Bravura/E4E5-restQuarter.xml deleted file mode 100644 index 04f1d1238c4..00000000000 --- a/data/Bravura/E4E5-restQuarter.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E5.xml b/data/Bravura/E4E5.xml new file mode 100644 index 00000000000..d75a9195eec --- /dev/null +++ b/data/Bravura/E4E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E6-rest8th.xml b/data/Bravura/E4E6-rest8th.xml deleted file mode 100644 index b5622052823..00000000000 --- a/data/Bravura/E4E6-rest8th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E6.xml b/data/Bravura/E4E6.xml new file mode 100644 index 00000000000..6067d79e519 --- /dev/null +++ b/data/Bravura/E4E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E7-rest16th.xml b/data/Bravura/E4E7-rest16th.xml deleted file mode 100644 index cd50c5db1d6..00000000000 --- a/data/Bravura/E4E7-rest16th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E7.xml b/data/Bravura/E4E7.xml new file mode 100644 index 00000000000..68258f52078 --- /dev/null +++ b/data/Bravura/E4E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E8-rest32nd.xml b/data/Bravura/E4E8-rest32nd.xml deleted file mode 100644 index be9a83d813d..00000000000 --- a/data/Bravura/E4E8-rest32nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E8.xml b/data/Bravura/E4E8.xml new file mode 100644 index 00000000000..fd15d73a540 --- /dev/null +++ b/data/Bravura/E4E8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4E9-rest64th.xml b/data/Bravura/E4E9-rest64th.xml deleted file mode 100644 index 04e2162cfc7..00000000000 --- a/data/Bravura/E4E9-rest64th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4E9.xml b/data/Bravura/E4E9.xml new file mode 100644 index 00000000000..8c72c5a9f17 --- /dev/null +++ b/data/Bravura/E4E9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4EA-rest128th.xml b/data/Bravura/E4EA-rest128th.xml deleted file mode 100644 index 63a2df0be58..00000000000 --- a/data/Bravura/E4EA-rest128th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4EA.xml b/data/Bravura/E4EA.xml new file mode 100644 index 00000000000..eae0c26784d --- /dev/null +++ b/data/Bravura/E4EA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4EB-rest256th.xml b/data/Bravura/E4EB-rest256th.xml deleted file mode 100644 index bc1010eb49d..00000000000 --- a/data/Bravura/E4EB-rest256th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4EB.xml b/data/Bravura/E4EB.xml new file mode 100644 index 00000000000..8b792a2a771 --- /dev/null +++ b/data/Bravura/E4EB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4EC-rest512th.xml b/data/Bravura/E4EC-rest512th.xml deleted file mode 100644 index 6b9b3ac9d1c..00000000000 --- a/data/Bravura/E4EC-rest512th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4EC.xml b/data/Bravura/E4EC.xml new file mode 100644 index 00000000000..d24a6200c87 --- /dev/null +++ b/data/Bravura/E4EC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4ED-rest1024th.xml b/data/Bravura/E4ED-rest1024th.xml deleted file mode 100644 index 572a5d4e7f9..00000000000 --- a/data/Bravura/E4ED-rest1024th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4ED.xml b/data/Bravura/E4ED.xml new file mode 100644 index 00000000000..49f0bcb406b --- /dev/null +++ b/data/Bravura/E4ED.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4F2-restQuarterOld.xml b/data/Bravura/E4F2-restQuarterOld.xml deleted file mode 100644 index 20e70b0aaf3..00000000000 --- a/data/Bravura/E4F2-restQuarterOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4F2.xml b/data/Bravura/E4F2.xml new file mode 100644 index 00000000000..3736b6557ae --- /dev/null +++ b/data/Bravura/E4F2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E4F6-restQuarterZ.xml b/data/Bravura/E4F6-restQuarterZ.xml deleted file mode 100644 index b9e07171a3c..00000000000 --- a/data/Bravura/E4F6-restQuarterZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E4F6.xml b/data/Bravura/E4F6.xml new file mode 100644 index 00000000000..ffe8bcfb731 --- /dev/null +++ b/data/Bravura/E4F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E500-repeat1Bar.xml b/data/Bravura/E500-repeat1Bar.xml deleted file mode 100644 index 1ae0e5e0040..00000000000 --- a/data/Bravura/E500-repeat1Bar.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E500.xml b/data/Bravura/E500.xml new file mode 100644 index 00000000000..69b2770b2e0 --- /dev/null +++ b/data/Bravura/E500.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E501-repeat2Bars.xml b/data/Bravura/E501-repeat2Bars.xml deleted file mode 100644 index 38d4000c8ea..00000000000 --- a/data/Bravura/E501-repeat2Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E501.xml b/data/Bravura/E501.xml new file mode 100644 index 00000000000..1d4216055e4 --- /dev/null +++ b/data/Bravura/E501.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E502-repeat4Bars.xml b/data/Bravura/E502-repeat4Bars.xml deleted file mode 100644 index 5a741a57049..00000000000 --- a/data/Bravura/E502-repeat4Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E502.xml b/data/Bravura/E502.xml new file mode 100644 index 00000000000..8011473b1d0 --- /dev/null +++ b/data/Bravura/E502.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E503-repeatBarUpperDot.xml b/data/Bravura/E503-repeatBarUpperDot.xml deleted file mode 100644 index 6142d1673d2..00000000000 --- a/data/Bravura/E503-repeatBarUpperDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E503.xml b/data/Bravura/E503.xml new file mode 100644 index 00000000000..306b9f0d6f1 --- /dev/null +++ b/data/Bravura/E503.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E504-repeatBarSlash.xml b/data/Bravura/E504-repeatBarSlash.xml deleted file mode 100644 index 9158d3af0d6..00000000000 --- a/data/Bravura/E504-repeatBarSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E504.xml b/data/Bravura/E504.xml new file mode 100644 index 00000000000..f6be7400a66 --- /dev/null +++ b/data/Bravura/E504.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E505-repeatBarLowerDot.xml b/data/Bravura/E505-repeatBarLowerDot.xml deleted file mode 100644 index d7935b98fe8..00000000000 --- a/data/Bravura/E505-repeatBarLowerDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E505.xml b/data/Bravura/E505.xml new file mode 100644 index 00000000000..ae3321916d6 --- /dev/null +++ b/data/Bravura/E505.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E510-ottava.xml b/data/Bravura/E510-ottava.xml deleted file mode 100644 index ffba9fabca7..00000000000 --- a/data/Bravura/E510-ottava.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E510.xml b/data/Bravura/E510.xml new file mode 100644 index 00000000000..851de58a05e --- /dev/null +++ b/data/Bravura/E510.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E511-ottavaAlta.xml b/data/Bravura/E511-ottavaAlta.xml deleted file mode 100644 index 6e58362829a..00000000000 --- a/data/Bravura/E511-ottavaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E511.xml b/data/Bravura/E511.xml new file mode 100644 index 00000000000..d7e2825b011 --- /dev/null +++ b/data/Bravura/E511.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E512-ottavaBassa.xml b/data/Bravura/E512-ottavaBassa.xml deleted file mode 100644 index e51a616a297..00000000000 --- a/data/Bravura/E512-ottavaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E512.xml b/data/Bravura/E512.xml new file mode 100644 index 00000000000..c6bf33fe976 --- /dev/null +++ b/data/Bravura/E512.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E513-ottavaBassaBa.xml b/data/Bravura/E513-ottavaBassaBa.xml deleted file mode 100644 index 891082dd249..00000000000 --- a/data/Bravura/E513-ottavaBassaBa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E513.xml b/data/Bravura/E513.xml new file mode 100644 index 00000000000..beea934b4d0 --- /dev/null +++ b/data/Bravura/E513.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E514-quindicesima.xml b/data/Bravura/E514-quindicesima.xml deleted file mode 100644 index aea1a12a52c..00000000000 --- a/data/Bravura/E514-quindicesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E514.xml b/data/Bravura/E514.xml new file mode 100644 index 00000000000..de357e69262 --- /dev/null +++ b/data/Bravura/E514.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E515-quindicesimaAlta.xml b/data/Bravura/E515-quindicesimaAlta.xml deleted file mode 100644 index 66ac15b5571..00000000000 --- a/data/Bravura/E515-quindicesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E515.xml b/data/Bravura/E515.xml new file mode 100644 index 00000000000..32000e465cc --- /dev/null +++ b/data/Bravura/E515.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E516-quindicesimaBassa.xml b/data/Bravura/E516-quindicesimaBassa.xml deleted file mode 100644 index ddad82c5942..00000000000 --- a/data/Bravura/E516-quindicesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E516.xml b/data/Bravura/E516.xml new file mode 100644 index 00000000000..d4346fb3bae --- /dev/null +++ b/data/Bravura/E516.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E517-ventiduesima.xml b/data/Bravura/E517-ventiduesima.xml deleted file mode 100644 index 22213ef5469..00000000000 --- a/data/Bravura/E517-ventiduesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E517.xml b/data/Bravura/E517.xml new file mode 100644 index 00000000000..3d4afb407a3 --- /dev/null +++ b/data/Bravura/E517.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E518-ventiduesimaAlta.xml b/data/Bravura/E518-ventiduesimaAlta.xml deleted file mode 100644 index 17e3ba2bc56..00000000000 --- a/data/Bravura/E518-ventiduesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E518.xml b/data/Bravura/E518.xml new file mode 100644 index 00000000000..cf2cb685b56 --- /dev/null +++ b/data/Bravura/E518.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E519-ventiduesimaBassa.xml b/data/Bravura/E519-ventiduesimaBassa.xml deleted file mode 100644 index 57832c3fdad..00000000000 --- a/data/Bravura/E519-ventiduesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E519.xml b/data/Bravura/E519.xml new file mode 100644 index 00000000000..dd5875c7cda --- /dev/null +++ b/data/Bravura/E519.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E51A-octaveParensLeft.xml b/data/Bravura/E51A-octaveParensLeft.xml deleted file mode 100644 index 42eec0fc78e..00000000000 --- a/data/Bravura/E51A-octaveParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E51A.xml b/data/Bravura/E51A.xml new file mode 100644 index 00000000000..fa0c771758f --- /dev/null +++ b/data/Bravura/E51A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E51B-octaveParensRight.xml b/data/Bravura/E51B-octaveParensRight.xml deleted file mode 100644 index 47c7df910ea..00000000000 --- a/data/Bravura/E51B-octaveParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E51B.xml b/data/Bravura/E51B.xml new file mode 100644 index 00000000000..5b7950fcec9 --- /dev/null +++ b/data/Bravura/E51B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E51C-ottavaBassaVb.xml b/data/Bravura/E51C-ottavaBassaVb.xml deleted file mode 100644 index 000f876304b..00000000000 --- a/data/Bravura/E51C-ottavaBassaVb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E51C.xml b/data/Bravura/E51C.xml new file mode 100644 index 00000000000..01f4040a715 --- /dev/null +++ b/data/Bravura/E51C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E51D-quindicesimaBassaMb.xml b/data/Bravura/E51D-quindicesimaBassaMb.xml deleted file mode 100644 index 0ef7e2d4434..00000000000 --- a/data/Bravura/E51D-quindicesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E51D.xml b/data/Bravura/E51D.xml new file mode 100644 index 00000000000..9e8b64290cd --- /dev/null +++ b/data/Bravura/E51D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E51E-ventiduesimaBassaMb.xml b/data/Bravura/E51E-ventiduesimaBassaMb.xml deleted file mode 100644 index 2e752adaf37..00000000000 --- a/data/Bravura/E51E-ventiduesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E51E.xml b/data/Bravura/E51E.xml new file mode 100644 index 00000000000..cd396189a7e --- /dev/null +++ b/data/Bravura/E51E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E520-dynamicPiano.xml b/data/Bravura/E520-dynamicPiano.xml deleted file mode 100644 index 77e0893f308..00000000000 --- a/data/Bravura/E520-dynamicPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E520.xml b/data/Bravura/E520.xml new file mode 100644 index 00000000000..673fab55680 --- /dev/null +++ b/data/Bravura/E520.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E521-dynamicMezzo.xml b/data/Bravura/E521-dynamicMezzo.xml deleted file mode 100644 index 4f43d49f9cb..00000000000 --- a/data/Bravura/E521-dynamicMezzo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E521.xml b/data/Bravura/E521.xml new file mode 100644 index 00000000000..204b975adc2 --- /dev/null +++ b/data/Bravura/E521.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E522-dynamicForte.xml b/data/Bravura/E522-dynamicForte.xml deleted file mode 100644 index 1045c221096..00000000000 --- a/data/Bravura/E522-dynamicForte.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E522.xml b/data/Bravura/E522.xml new file mode 100644 index 00000000000..08d7af7304f --- /dev/null +++ b/data/Bravura/E522.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E523-dynamicRinforzando.xml b/data/Bravura/E523-dynamicRinforzando.xml deleted file mode 100644 index 3eb35c50987..00000000000 --- a/data/Bravura/E523-dynamicRinforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E523.xml b/data/Bravura/E523.xml new file mode 100644 index 00000000000..266d653d823 --- /dev/null +++ b/data/Bravura/E523.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E524-dynamicSforzando.xml b/data/Bravura/E524-dynamicSforzando.xml deleted file mode 100644 index 6b2f34dd583..00000000000 --- a/data/Bravura/E524-dynamicSforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E524.xml b/data/Bravura/E524.xml new file mode 100644 index 00000000000..c003a424a16 --- /dev/null +++ b/data/Bravura/E524.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E525-dynamicZ.xml b/data/Bravura/E525-dynamicZ.xml deleted file mode 100644 index 2b91f98aad3..00000000000 --- a/data/Bravura/E525-dynamicZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E525.xml b/data/Bravura/E525.xml new file mode 100644 index 00000000000..643d0623b3e --- /dev/null +++ b/data/Bravura/E525.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E526-dynamicNiente.xml b/data/Bravura/E526-dynamicNiente.xml deleted file mode 100644 index 97681155dec..00000000000 --- a/data/Bravura/E526-dynamicNiente.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E526.xml b/data/Bravura/E526.xml new file mode 100644 index 00000000000..0edfb85a4c7 --- /dev/null +++ b/data/Bravura/E526.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E527-dynamicPPPPPP.xml b/data/Bravura/E527-dynamicPPPPPP.xml deleted file mode 100644 index 89dcaf02197..00000000000 --- a/data/Bravura/E527-dynamicPPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E527.xml b/data/Bravura/E527.xml new file mode 100644 index 00000000000..22d362032a9 --- /dev/null +++ b/data/Bravura/E527.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E528-dynamicPPPPP.xml b/data/Bravura/E528-dynamicPPPPP.xml deleted file mode 100644 index a9486ab443a..00000000000 --- a/data/Bravura/E528-dynamicPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E528.xml b/data/Bravura/E528.xml new file mode 100644 index 00000000000..ec28c2441c9 --- /dev/null +++ b/data/Bravura/E528.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E529-dynamicPPPP.xml b/data/Bravura/E529-dynamicPPPP.xml deleted file mode 100644 index d3cdc43721e..00000000000 --- a/data/Bravura/E529-dynamicPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E529.xml b/data/Bravura/E529.xml new file mode 100644 index 00000000000..ee7d85bec84 --- /dev/null +++ b/data/Bravura/E529.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E52A-dynamicPPP.xml b/data/Bravura/E52A-dynamicPPP.xml deleted file mode 100644 index 961198132f2..00000000000 --- a/data/Bravura/E52A-dynamicPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E52A.xml b/data/Bravura/E52A.xml new file mode 100644 index 00000000000..7a7d4ad08f8 --- /dev/null +++ b/data/Bravura/E52A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E52B-dynamicPP.xml b/data/Bravura/E52B-dynamicPP.xml deleted file mode 100644 index 10f7b1f7a5d..00000000000 --- a/data/Bravura/E52B-dynamicPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E52B.xml b/data/Bravura/E52B.xml new file mode 100644 index 00000000000..25a77992a6b --- /dev/null +++ b/data/Bravura/E52B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E52C-dynamicMP.xml b/data/Bravura/E52C-dynamicMP.xml deleted file mode 100644 index 5ac29c602bf..00000000000 --- a/data/Bravura/E52C-dynamicMP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E52C.xml b/data/Bravura/E52C.xml new file mode 100644 index 00000000000..ece74a74de4 --- /dev/null +++ b/data/Bravura/E52C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E52D-dynamicMF.xml b/data/Bravura/E52D-dynamicMF.xml deleted file mode 100644 index a19a838cd7a..00000000000 --- a/data/Bravura/E52D-dynamicMF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E52D.xml b/data/Bravura/E52D.xml new file mode 100644 index 00000000000..cd548201e0f --- /dev/null +++ b/data/Bravura/E52D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E52E-dynamicPF.xml b/data/Bravura/E52E-dynamicPF.xml deleted file mode 100644 index 24987d5cf1f..00000000000 --- a/data/Bravura/E52E-dynamicPF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E52E.xml b/data/Bravura/E52E.xml new file mode 100644 index 00000000000..1f0b0e4b57a --- /dev/null +++ b/data/Bravura/E52E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E52F-dynamicFF.xml b/data/Bravura/E52F-dynamicFF.xml deleted file mode 100644 index 2abab9cdec5..00000000000 --- a/data/Bravura/E52F-dynamicFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E52F.xml b/data/Bravura/E52F.xml new file mode 100644 index 00000000000..f712e725f16 --- /dev/null +++ b/data/Bravura/E52F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E530-dynamicFFF.xml b/data/Bravura/E530-dynamicFFF.xml deleted file mode 100644 index a35d1201705..00000000000 --- a/data/Bravura/E530-dynamicFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E530.xml b/data/Bravura/E530.xml new file mode 100644 index 00000000000..10b7f4035ee --- /dev/null +++ b/data/Bravura/E530.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E531-dynamicFFFF.xml b/data/Bravura/E531-dynamicFFFF.xml deleted file mode 100644 index 7d0476081f6..00000000000 --- a/data/Bravura/E531-dynamicFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E531.xml b/data/Bravura/E531.xml new file mode 100644 index 00000000000..1ad5e9908a3 --- /dev/null +++ b/data/Bravura/E531.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E532-dynamicFFFFF.xml b/data/Bravura/E532-dynamicFFFFF.xml deleted file mode 100644 index 4181676b123..00000000000 --- a/data/Bravura/E532-dynamicFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E532.xml b/data/Bravura/E532.xml new file mode 100644 index 00000000000..7d570f2f3dc --- /dev/null +++ b/data/Bravura/E532.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E533-dynamicFFFFFF.xml b/data/Bravura/E533-dynamicFFFFFF.xml deleted file mode 100644 index 43c131dcc41..00000000000 --- a/data/Bravura/E533-dynamicFFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E533.xml b/data/Bravura/E533.xml new file mode 100644 index 00000000000..d9d13d014c7 --- /dev/null +++ b/data/Bravura/E533.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E534-dynamicFortePiano.xml b/data/Bravura/E534-dynamicFortePiano.xml deleted file mode 100644 index 8c69668cccb..00000000000 --- a/data/Bravura/E534-dynamicFortePiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E534.xml b/data/Bravura/E534.xml new file mode 100644 index 00000000000..aa702cf12ee --- /dev/null +++ b/data/Bravura/E534.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E535-dynamicForzando.xml b/data/Bravura/E535-dynamicForzando.xml deleted file mode 100644 index 2a7982a57fb..00000000000 --- a/data/Bravura/E535-dynamicForzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E535.xml b/data/Bravura/E535.xml new file mode 100644 index 00000000000..d7c509e138e --- /dev/null +++ b/data/Bravura/E535.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E536-dynamicSforzando1.xml b/data/Bravura/E536-dynamicSforzando1.xml deleted file mode 100644 index 06b1ee7ed38..00000000000 --- a/data/Bravura/E536-dynamicSforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E536.xml b/data/Bravura/E536.xml new file mode 100644 index 00000000000..9b726460ad3 --- /dev/null +++ b/data/Bravura/E536.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E537-dynamicSforzandoPiano.xml b/data/Bravura/E537-dynamicSforzandoPiano.xml deleted file mode 100644 index 8abd2dcc2fb..00000000000 --- a/data/Bravura/E537-dynamicSforzandoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E537.xml b/data/Bravura/E537.xml new file mode 100644 index 00000000000..f9ddf704e78 --- /dev/null +++ b/data/Bravura/E537.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E538-dynamicSforzandoPianissimo.xml b/data/Bravura/E538-dynamicSforzandoPianissimo.xml deleted file mode 100644 index 2a21246cedb..00000000000 --- a/data/Bravura/E538-dynamicSforzandoPianissimo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E538.xml b/data/Bravura/E538.xml new file mode 100644 index 00000000000..87016694f24 --- /dev/null +++ b/data/Bravura/E538.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E539-dynamicSforzato.xml b/data/Bravura/E539-dynamicSforzato.xml deleted file mode 100644 index 388a0760d76..00000000000 --- a/data/Bravura/E539-dynamicSforzato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E539.xml b/data/Bravura/E539.xml new file mode 100644 index 00000000000..79893f39367 --- /dev/null +++ b/data/Bravura/E539.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E53A-dynamicSforzatoPiano.xml b/data/Bravura/E53A-dynamicSforzatoPiano.xml deleted file mode 100644 index 4048cd8b0e1..00000000000 --- a/data/Bravura/E53A-dynamicSforzatoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E53A.xml b/data/Bravura/E53A.xml new file mode 100644 index 00000000000..0b0005d0387 --- /dev/null +++ b/data/Bravura/E53A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E53B-dynamicSforzatoFF.xml b/data/Bravura/E53B-dynamicSforzatoFF.xml deleted file mode 100644 index 31c249b417c..00000000000 --- a/data/Bravura/E53B-dynamicSforzatoFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E53B.xml b/data/Bravura/E53B.xml new file mode 100644 index 00000000000..78639ea8bef --- /dev/null +++ b/data/Bravura/E53B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E53C-dynamicRinforzando1.xml b/data/Bravura/E53C-dynamicRinforzando1.xml deleted file mode 100644 index 4a326fa4811..00000000000 --- a/data/Bravura/E53C-dynamicRinforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E53C.xml b/data/Bravura/E53C.xml new file mode 100644 index 00000000000..92da373345f --- /dev/null +++ b/data/Bravura/E53C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E53D-dynamicRinforzando2.xml b/data/Bravura/E53D-dynamicRinforzando2.xml deleted file mode 100644 index 77f62cdb60a..00000000000 --- a/data/Bravura/E53D-dynamicRinforzando2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E53D.xml b/data/Bravura/E53D.xml new file mode 100644 index 00000000000..09ca8f9cc40 --- /dev/null +++ b/data/Bravura/E53D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E566-ornamentTrill.xml b/data/Bravura/E566-ornamentTrill.xml deleted file mode 100644 index 4273068d3d8..00000000000 --- a/data/Bravura/E566-ornamentTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E566.xml b/data/Bravura/E566.xml new file mode 100644 index 00000000000..0bd5013fb76 --- /dev/null +++ b/data/Bravura/E566.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E567-ornamentTurn.xml b/data/Bravura/E567-ornamentTurn.xml deleted file mode 100644 index 358a40a3b49..00000000000 --- a/data/Bravura/E567-ornamentTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E567.xml b/data/Bravura/E567.xml new file mode 100644 index 00000000000..3ab7c50ed58 --- /dev/null +++ b/data/Bravura/E567.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E568-ornamentTurnInverted.xml b/data/Bravura/E568-ornamentTurnInverted.xml deleted file mode 100644 index 2423871589f..00000000000 --- a/data/Bravura/E568-ornamentTurnInverted.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E568.xml b/data/Bravura/E568.xml new file mode 100644 index 00000000000..8fe035f9ed4 --- /dev/null +++ b/data/Bravura/E568.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E569-ornamentTurnSlash.xml b/data/Bravura/E569-ornamentTurnSlash.xml deleted file mode 100644 index ada260058dd..00000000000 --- a/data/Bravura/E569-ornamentTurnSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E569.xml b/data/Bravura/E569.xml new file mode 100644 index 00000000000..a023c122b91 --- /dev/null +++ b/data/Bravura/E569.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E56A-ornamentTurnUp.xml b/data/Bravura/E56A-ornamentTurnUp.xml deleted file mode 100644 index d421ab83d4e..00000000000 --- a/data/Bravura/E56A-ornamentTurnUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E56A.xml b/data/Bravura/E56A.xml new file mode 100644 index 00000000000..48a46318a1d --- /dev/null +++ b/data/Bravura/E56A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E56B-ornamentTurnUpS.xml b/data/Bravura/E56B-ornamentTurnUpS.xml deleted file mode 100644 index af2eeef183f..00000000000 --- a/data/Bravura/E56B-ornamentTurnUpS.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E56B.xml b/data/Bravura/E56B.xml new file mode 100644 index 00000000000..e24ac5cc643 --- /dev/null +++ b/data/Bravura/E56B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E56C-ornamentShortTrill.xml b/data/Bravura/E56C-ornamentShortTrill.xml deleted file mode 100644 index ffde74903a6..00000000000 --- a/data/Bravura/E56C-ornamentShortTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E56C.xml b/data/Bravura/E56C.xml new file mode 100644 index 00000000000..fefc88f0b7a --- /dev/null +++ b/data/Bravura/E56C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E56D-ornamentMordent.xml b/data/Bravura/E56D-ornamentMordent.xml deleted file mode 100644 index fcbe4509864..00000000000 --- a/data/Bravura/E56D-ornamentMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E56D.xml b/data/Bravura/E56D.xml new file mode 100644 index 00000000000..57b7f580d0e --- /dev/null +++ b/data/Bravura/E56D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E56E-ornamentTremblement.xml b/data/Bravura/E56E-ornamentTremblement.xml deleted file mode 100644 index abe74888361..00000000000 --- a/data/Bravura/E56E-ornamentTremblement.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E56E.xml b/data/Bravura/E56E.xml new file mode 100644 index 00000000000..c74d7b3d287 --- /dev/null +++ b/data/Bravura/E56E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E56F-ornamentHaydn.xml b/data/Bravura/E56F-ornamentHaydn.xml deleted file mode 100644 index 2e092ac4d88..00000000000 --- a/data/Bravura/E56F-ornamentHaydn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E56F.xml b/data/Bravura/E56F.xml new file mode 100644 index 00000000000..95c89045b1e --- /dev/null +++ b/data/Bravura/E56F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E583-ornamentVerticalLine.xml b/data/Bravura/E583-ornamentVerticalLine.xml deleted file mode 100644 index f0370d67fb3..00000000000 --- a/data/Bravura/E583-ornamentVerticalLine.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E583.xml b/data/Bravura/E583.xml new file mode 100644 index 00000000000..bc50a2ebcfc --- /dev/null +++ b/data/Bravura/E583.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E587-ornamentSchleifer.xml b/data/Bravura/E587-ornamentSchleifer.xml deleted file mode 100644 index 92e8508d917..00000000000 --- a/data/Bravura/E587-ornamentSchleifer.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E587.xml b/data/Bravura/E587.xml new file mode 100644 index 00000000000..1bcb325b4b6 --- /dev/null +++ b/data/Bravura/E587.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E59D-ornamentZigZagLineNoRightEnd.xml b/data/Bravura/E59D-ornamentZigZagLineNoRightEnd.xml deleted file mode 100644 index 02fa87ea4df..00000000000 --- a/data/Bravura/E59D-ornamentZigZagLineNoRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E59D.xml b/data/Bravura/E59D.xml new file mode 100644 index 00000000000..b9dd9a953cb --- /dev/null +++ b/data/Bravura/E59D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E59E-ornamentZigZagLineWithRightEnd.xml b/data/Bravura/E59E-ornamentZigZagLineWithRightEnd.xml deleted file mode 100644 index 0d3bedcd1ae..00000000000 --- a/data/Bravura/E59E-ornamentZigZagLineWithRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E59E.xml b/data/Bravura/E59E.xml new file mode 100644 index 00000000000..26d5719cba1 --- /dev/null +++ b/data/Bravura/E59E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B0-ornamentPrecompSlide.xml b/data/Bravura/E5B0-ornamentPrecompSlide.xml deleted file mode 100644 index 906b4f4629e..00000000000 --- a/data/Bravura/E5B0-ornamentPrecompSlide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B0.xml b/data/Bravura/E5B0.xml new file mode 100644 index 00000000000..de61443d28a --- /dev/null +++ b/data/Bravura/E5B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B1-ornamentPrecompDescendingSlide.xml b/data/Bravura/E5B1-ornamentPrecompDescendingSlide.xml deleted file mode 100644 index a07ec907723..00000000000 --- a/data/Bravura/E5B1-ornamentPrecompDescendingSlide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B1.xml b/data/Bravura/E5B1.xml new file mode 100644 index 00000000000..ad0b557bb47 --- /dev/null +++ b/data/Bravura/E5B1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B2-ornamentPrecompAppoggTrill.xml b/data/Bravura/E5B2-ornamentPrecompAppoggTrill.xml deleted file mode 100644 index 629ea0e20f6..00000000000 --- a/data/Bravura/E5B2-ornamentPrecompAppoggTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B2.xml b/data/Bravura/E5B2.xml new file mode 100644 index 00000000000..30f287b8bb5 --- /dev/null +++ b/data/Bravura/E5B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B3-ornamentPrecompAppoggTrillSuffix.xml b/data/Bravura/E5B3-ornamentPrecompAppoggTrillSuffix.xml deleted file mode 100644 index 0c75924fa1f..00000000000 --- a/data/Bravura/E5B3-ornamentPrecompAppoggTrillSuffix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B3.xml b/data/Bravura/E5B3.xml new file mode 100644 index 00000000000..17c2a847652 --- /dev/null +++ b/data/Bravura/E5B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B4-ornamentPrecompTurnTrillDAnglebert.xml b/data/Bravura/E5B4-ornamentPrecompTurnTrillDAnglebert.xml deleted file mode 100644 index 77e58232029..00000000000 --- a/data/Bravura/E5B4-ornamentPrecompTurnTrillDAnglebert.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B4.xml b/data/Bravura/E5B4.xml new file mode 100644 index 00000000000..b52dfb495e4 --- /dev/null +++ b/data/Bravura/E5B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B5-ornamentPrecompSlideTrillDAnglebert.xml b/data/Bravura/E5B5-ornamentPrecompSlideTrillDAnglebert.xml deleted file mode 100644 index 6797d1da571..00000000000 --- a/data/Bravura/E5B5-ornamentPrecompSlideTrillDAnglebert.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B5.xml b/data/Bravura/E5B5.xml new file mode 100644 index 00000000000..9f4c9983fa7 --- /dev/null +++ b/data/Bravura/E5B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B6-ornamentPrecompSlideTrillMarpurg.xml b/data/Bravura/E5B6-ornamentPrecompSlideTrillMarpurg.xml deleted file mode 100644 index 811ae026bd0..00000000000 --- a/data/Bravura/E5B6-ornamentPrecompSlideTrillMarpurg.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B6.xml b/data/Bravura/E5B6.xml new file mode 100644 index 00000000000..6f82867babc --- /dev/null +++ b/data/Bravura/E5B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B7-ornamentPrecompTurnTrillBach.xml b/data/Bravura/E5B7-ornamentPrecompTurnTrillBach.xml deleted file mode 100644 index 3496c17ce74..00000000000 --- a/data/Bravura/E5B7-ornamentPrecompTurnTrillBach.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B7.xml b/data/Bravura/E5B7.xml new file mode 100644 index 00000000000..f0220acde6b --- /dev/null +++ b/data/Bravura/E5B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B8-ornamentPrecompSlideTrillBach.xml b/data/Bravura/E5B8-ornamentPrecompSlideTrillBach.xml deleted file mode 100644 index 78f8fdfc2b7..00000000000 --- a/data/Bravura/E5B8-ornamentPrecompSlideTrillBach.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B8.xml b/data/Bravura/E5B8.xml new file mode 100644 index 00000000000..7f7e51b7db3 --- /dev/null +++ b/data/Bravura/E5B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5B9-ornamentPrecompSlideTrillMuffat.xml b/data/Bravura/E5B9-ornamentPrecompSlideTrillMuffat.xml deleted file mode 100644 index 42da135721d..00000000000 --- a/data/Bravura/E5B9-ornamentPrecompSlideTrillMuffat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5B9.xml b/data/Bravura/E5B9.xml new file mode 100644 index 00000000000..9f9c480f9b3 --- /dev/null +++ b/data/Bravura/E5B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml b/data/Bravura/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml deleted file mode 100644 index e1dd22353b1..00000000000 --- a/data/Bravura/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5BA.xml b/data/Bravura/E5BA.xml new file mode 100644 index 00000000000..b548f590eeb --- /dev/null +++ b/data/Bravura/E5BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5BB-ornamentPrecompTrillSuffixDandrieu.xml b/data/Bravura/E5BB-ornamentPrecompTrillSuffixDandrieu.xml deleted file mode 100644 index 3c941f0ba2b..00000000000 --- a/data/Bravura/E5BB-ornamentPrecompTrillSuffixDandrieu.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5BB.xml b/data/Bravura/E5BB.xml new file mode 100644 index 00000000000..391fabb5404 --- /dev/null +++ b/data/Bravura/E5BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5BC-ornamentPrecompPortDeVoixMordent.xml b/data/Bravura/E5BC-ornamentPrecompPortDeVoixMordent.xml deleted file mode 100644 index 1e9854f9366..00000000000 --- a/data/Bravura/E5BC-ornamentPrecompPortDeVoixMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5BC.xml b/data/Bravura/E5BC.xml new file mode 100644 index 00000000000..d631645c86f --- /dev/null +++ b/data/Bravura/E5BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5BD-ornamentPrecompTrillWithMordent.xml b/data/Bravura/E5BD-ornamentPrecompTrillWithMordent.xml deleted file mode 100644 index 27f15a1efbd..00000000000 --- a/data/Bravura/E5BD-ornamentPrecompTrillWithMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5BD.xml b/data/Bravura/E5BD.xml new file mode 100644 index 00000000000..18032fe7e5c --- /dev/null +++ b/data/Bravura/E5BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5BE-ornamentPrecompCadence.xml b/data/Bravura/E5BE-ornamentPrecompCadence.xml deleted file mode 100644 index caca381e024..00000000000 --- a/data/Bravura/E5BE-ornamentPrecompCadence.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5BE.xml b/data/Bravura/E5BE.xml new file mode 100644 index 00000000000..4957c67fa5f --- /dev/null +++ b/data/Bravura/E5BE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5BF-ornamentPrecompCadenceWithTurn.xml b/data/Bravura/E5BF-ornamentPrecompCadenceWithTurn.xml deleted file mode 100644 index 230b9d157ef..00000000000 --- a/data/Bravura/E5BF-ornamentPrecompCadenceWithTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5BF.xml b/data/Bravura/E5BF.xml new file mode 100644 index 00000000000..f9819d3815d --- /dev/null +++ b/data/Bravura/E5BF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml b/data/Bravura/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml deleted file mode 100644 index 8a64ec92b31..00000000000 --- a/data/Bravura/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C0.xml b/data/Bravura/E5C0.xml new file mode 100644 index 00000000000..bf0facc55e3 --- /dev/null +++ b/data/Bravura/E5C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C1-ornamentPrecompCadenceUpperPrefix.xml b/data/Bravura/E5C1-ornamentPrecompCadenceUpperPrefix.xml deleted file mode 100644 index cc78e1c7348..00000000000 --- a/data/Bravura/E5C1-ornamentPrecompCadenceUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C1.xml b/data/Bravura/E5C1.xml new file mode 100644 index 00000000000..40c50019a36 --- /dev/null +++ b/data/Bravura/E5C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml b/data/Bravura/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml deleted file mode 100644 index 8e052ef42a9..00000000000 --- a/data/Bravura/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C2.xml b/data/Bravura/E5C2.xml new file mode 100644 index 00000000000..e761e012ef0 --- /dev/null +++ b/data/Bravura/E5C2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml b/data/Bravura/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml deleted file mode 100644 index 7ac64bc2423..00000000000 --- a/data/Bravura/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C3.xml b/data/Bravura/E5C3.xml new file mode 100644 index 00000000000..8e1441c4d87 --- /dev/null +++ b/data/Bravura/E5C3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml b/data/Bravura/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml deleted file mode 100644 index d3128a1dad8..00000000000 --- a/data/Bravura/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C4.xml b/data/Bravura/E5C4.xml new file mode 100644 index 00000000000..a6978a02131 --- /dev/null +++ b/data/Bravura/E5C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C5-ornamentPrecompMordentRelease.xml b/data/Bravura/E5C5-ornamentPrecompMordentRelease.xml deleted file mode 100644 index 9d28b05d48b..00000000000 --- a/data/Bravura/E5C5-ornamentPrecompMordentRelease.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C5.xml b/data/Bravura/E5C5.xml new file mode 100644 index 00000000000..e8002f9528a --- /dev/null +++ b/data/Bravura/E5C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C6-ornamentPrecompMordentUpperPrefix.xml b/data/Bravura/E5C6-ornamentPrecompMordentUpperPrefix.xml deleted file mode 100644 index 6563387704c..00000000000 --- a/data/Bravura/E5C6-ornamentPrecompMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C6.xml b/data/Bravura/E5C6.xml new file mode 100644 index 00000000000..ae305f6ff6a --- /dev/null +++ b/data/Bravura/E5C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml b/data/Bravura/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml deleted file mode 100644 index 5dfbe9b2ce4..00000000000 --- a/data/Bravura/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C7.xml b/data/Bravura/E5C7.xml new file mode 100644 index 00000000000..22dcad0d3c6 --- /dev/null +++ b/data/Bravura/E5C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5C8-ornamentPrecompTrillLowerSuffix.xml b/data/Bravura/E5C8-ornamentPrecompTrillLowerSuffix.xml deleted file mode 100644 index 93dc1c4ce97..00000000000 --- a/data/Bravura/E5C8-ornamentPrecompTrillLowerSuffix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5C8.xml b/data/Bravura/E5C8.xml new file mode 100644 index 00000000000..bc653dff181 --- /dev/null +++ b/data/Bravura/E5C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5E5-brassMuteClosed.xml b/data/Bravura/E5E5-brassMuteClosed.xml deleted file mode 100644 index 81647d32990..00000000000 --- a/data/Bravura/E5E5-brassMuteClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5E5.xml b/data/Bravura/E5E5.xml new file mode 100644 index 00000000000..bcb77d5973f --- /dev/null +++ b/data/Bravura/E5E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5E6-brassMuteHalfClosed.xml b/data/Bravura/E5E6-brassMuteHalfClosed.xml deleted file mode 100644 index 1fbbc0421c9..00000000000 --- a/data/Bravura/E5E6-brassMuteHalfClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5E6.xml b/data/Bravura/E5E6.xml new file mode 100644 index 00000000000..6b2c3eab355 --- /dev/null +++ b/data/Bravura/E5E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E5E7-brassMuteOpen.xml b/data/Bravura/E5E7-brassMuteOpen.xml deleted file mode 100644 index 87739c7f744..00000000000 --- a/data/Bravura/E5E7-brassMuteOpen.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E5E7.xml b/data/Bravura/E5E7.xml new file mode 100644 index 00000000000..a95e92256ec --- /dev/null +++ b/data/Bravura/E5E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E610-stringsDownBow.xml b/data/Bravura/E610-stringsDownBow.xml deleted file mode 100644 index 803365cda34..00000000000 --- a/data/Bravura/E610-stringsDownBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E610.xml b/data/Bravura/E610.xml new file mode 100644 index 00000000000..85c0170bcd9 --- /dev/null +++ b/data/Bravura/E610.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E611-stringsDownBowTurned.xml b/data/Bravura/E611-stringsDownBowTurned.xml deleted file mode 100644 index e43bfb41f43..00000000000 --- a/data/Bravura/E611-stringsDownBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E611.xml b/data/Bravura/E611.xml new file mode 100644 index 00000000000..a6c833a8789 --- /dev/null +++ b/data/Bravura/E611.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E612-stringsUpBow.xml b/data/Bravura/E612-stringsUpBow.xml deleted file mode 100644 index f7a6ba3e50a..00000000000 --- a/data/Bravura/E612-stringsUpBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E612.xml b/data/Bravura/E612.xml new file mode 100644 index 00000000000..6acdc8883ad --- /dev/null +++ b/data/Bravura/E612.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E613-stringsUpBowTurned.xml b/data/Bravura/E613-stringsUpBowTurned.xml deleted file mode 100644 index 53cdeff35e6..00000000000 --- a/data/Bravura/E613-stringsUpBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E613.xml b/data/Bravura/E613.xml new file mode 100644 index 00000000000..40a9cd9ab7e --- /dev/null +++ b/data/Bravura/E613.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E614-stringsHarmonic.xml b/data/Bravura/E614-stringsHarmonic.xml deleted file mode 100644 index 94d81d52e2f..00000000000 --- a/data/Bravura/E614-stringsHarmonic.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E614.xml b/data/Bravura/E614.xml new file mode 100644 index 00000000000..ac139eea9e3 --- /dev/null +++ b/data/Bravura/E614.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E630-pluckedSnapPizzicatoBelow.xml b/data/Bravura/E630-pluckedSnapPizzicatoBelow.xml deleted file mode 100644 index 5f751f74b9d..00000000000 --- a/data/Bravura/E630-pluckedSnapPizzicatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E630.xml b/data/Bravura/E630.xml new file mode 100644 index 00000000000..c3d23a1778b --- /dev/null +++ b/data/Bravura/E630.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E631-pluckedSnapPizzicatoAbove.xml b/data/Bravura/E631-pluckedSnapPizzicatoAbove.xml deleted file mode 100644 index a85ce874a1b..00000000000 --- a/data/Bravura/E631-pluckedSnapPizzicatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E631.xml b/data/Bravura/E631.xml new file mode 100644 index 00000000000..99cd58f5589 --- /dev/null +++ b/data/Bravura/E631.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E632-pluckedBuzzPizzicato.xml b/data/Bravura/E632-pluckedBuzzPizzicato.xml deleted file mode 100644 index 964926aa03c..00000000000 --- a/data/Bravura/E632-pluckedBuzzPizzicato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E632.xml b/data/Bravura/E632.xml new file mode 100644 index 00000000000..3114b6ab2cd --- /dev/null +++ b/data/Bravura/E632.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E633-pluckedLeftHandPizzicato.xml b/data/Bravura/E633-pluckedLeftHandPizzicato.xml deleted file mode 100644 index 69d2ea3a4bf..00000000000 --- a/data/Bravura/E633-pluckedLeftHandPizzicato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E633.xml b/data/Bravura/E633.xml new file mode 100644 index 00000000000..3cf7e649409 --- /dev/null +++ b/data/Bravura/E633.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E638-pluckedDamp.xml b/data/Bravura/E638-pluckedDamp.xml deleted file mode 100644 index b3cf4addec7..00000000000 --- a/data/Bravura/E638-pluckedDamp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E638.xml b/data/Bravura/E638.xml new file mode 100644 index 00000000000..268e0dd85d7 --- /dev/null +++ b/data/Bravura/E638.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E645-vocalSprechgesang.xml b/data/Bravura/E645-vocalSprechgesang.xml deleted file mode 100644 index 492da71e11c..00000000000 --- a/data/Bravura/E645-vocalSprechgesang.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E645.xml b/data/Bravura/E645.xml new file mode 100644 index 00000000000..8ddc5970815 --- /dev/null +++ b/data/Bravura/E645.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E650-keyboardPedalPed.xml b/data/Bravura/E650-keyboardPedalPed.xml deleted file mode 100644 index e89cde722aa..00000000000 --- a/data/Bravura/E650-keyboardPedalPed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E650.xml b/data/Bravura/E650.xml new file mode 100644 index 00000000000..1152383327b --- /dev/null +++ b/data/Bravura/E650.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E651-keyboardPedalP.xml b/data/Bravura/E651-keyboardPedalP.xml deleted file mode 100644 index 56dd34a4fae..00000000000 --- a/data/Bravura/E651-keyboardPedalP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E651.xml b/data/Bravura/E651.xml new file mode 100644 index 00000000000..85ea515ac1f --- /dev/null +++ b/data/Bravura/E651.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E655-keyboardPedalUp.xml b/data/Bravura/E655-keyboardPedalUp.xml deleted file mode 100644 index 8412ed96093..00000000000 --- a/data/Bravura/E655-keyboardPedalUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E655.xml b/data/Bravura/E655.xml new file mode 100644 index 00000000000..f016f3c8660 --- /dev/null +++ b/data/Bravura/E655.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E659-keyboardPedalSost.xml b/data/Bravura/E659-keyboardPedalSost.xml deleted file mode 100644 index c076f4ba541..00000000000 --- a/data/Bravura/E659-keyboardPedalSost.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E659.xml b/data/Bravura/E659.xml new file mode 100644 index 00000000000..5d3b0898ada --- /dev/null +++ b/data/Bravura/E659.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E65A-keyboardPedalS.xml b/data/Bravura/E65A-keyboardPedalS.xml deleted file mode 100644 index be3d70f7df1..00000000000 --- a/data/Bravura/E65A-keyboardPedalS.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E65A.xml b/data/Bravura/E65A.xml new file mode 100644 index 00000000000..4794aea3bb4 --- /dev/null +++ b/data/Bravura/E65A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E880-tuplet0.xml b/data/Bravura/E880-tuplet0.xml deleted file mode 100644 index 13c8364cb61..00000000000 --- a/data/Bravura/E880-tuplet0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E880.xml b/data/Bravura/E880.xml new file mode 100644 index 00000000000..46bef43a9b2 --- /dev/null +++ b/data/Bravura/E880.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E881-tuplet1.xml b/data/Bravura/E881-tuplet1.xml deleted file mode 100644 index 36fca354a40..00000000000 --- a/data/Bravura/E881-tuplet1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E881.xml b/data/Bravura/E881.xml new file mode 100644 index 00000000000..d3e304c3c73 --- /dev/null +++ b/data/Bravura/E881.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E882-tuplet2.xml b/data/Bravura/E882-tuplet2.xml deleted file mode 100644 index b2625592bc6..00000000000 --- a/data/Bravura/E882-tuplet2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E882.xml b/data/Bravura/E882.xml new file mode 100644 index 00000000000..12aecc7c96b --- /dev/null +++ b/data/Bravura/E882.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E883-tuplet3.xml b/data/Bravura/E883-tuplet3.xml deleted file mode 100644 index 0d44eb6d795..00000000000 --- a/data/Bravura/E883-tuplet3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E883.xml b/data/Bravura/E883.xml new file mode 100644 index 00000000000..28ce2e5b0ba --- /dev/null +++ b/data/Bravura/E883.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E884-tuplet4.xml b/data/Bravura/E884-tuplet4.xml deleted file mode 100644 index 324f0476a2c..00000000000 --- a/data/Bravura/E884-tuplet4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E884.xml b/data/Bravura/E884.xml new file mode 100644 index 00000000000..4701201deed --- /dev/null +++ b/data/Bravura/E884.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E885-tuplet5.xml b/data/Bravura/E885-tuplet5.xml deleted file mode 100644 index 6aa33760273..00000000000 --- a/data/Bravura/E885-tuplet5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E885.xml b/data/Bravura/E885.xml new file mode 100644 index 00000000000..38e6c973ebe --- /dev/null +++ b/data/Bravura/E885.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E886-tuplet6.xml b/data/Bravura/E886-tuplet6.xml deleted file mode 100644 index f9fa797ef1f..00000000000 --- a/data/Bravura/E886-tuplet6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E886.xml b/data/Bravura/E886.xml new file mode 100644 index 00000000000..ea7a6ee8e2c --- /dev/null +++ b/data/Bravura/E886.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E887-tuplet7.xml b/data/Bravura/E887-tuplet7.xml deleted file mode 100644 index 55759e53033..00000000000 --- a/data/Bravura/E887-tuplet7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E887.xml b/data/Bravura/E887.xml new file mode 100644 index 00000000000..d18b2e95896 --- /dev/null +++ b/data/Bravura/E887.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E888-tuplet8.xml b/data/Bravura/E888-tuplet8.xml deleted file mode 100644 index 11385bab75f..00000000000 --- a/data/Bravura/E888-tuplet8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E888.xml b/data/Bravura/E888.xml new file mode 100644 index 00000000000..54c5019cdce --- /dev/null +++ b/data/Bravura/E888.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E889-tuplet9.xml b/data/Bravura/E889-tuplet9.xml deleted file mode 100644 index 9ecd012c9c1..00000000000 --- a/data/Bravura/E889-tuplet9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E889.xml b/data/Bravura/E889.xml new file mode 100644 index 00000000000..85a31758fa3 --- /dev/null +++ b/data/Bravura/E889.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E88A-tupletColon.xml b/data/Bravura/E88A-tupletColon.xml deleted file mode 100644 index c9d4858f898..00000000000 --- a/data/Bravura/E88A-tupletColon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E88A.xml b/data/Bravura/E88A.xml new file mode 100644 index 00000000000..e00e6608b70 --- /dev/null +++ b/data/Bravura/E88A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E901-mensuralGclefPetrucci.xml b/data/Bravura/E901-mensuralGclefPetrucci.xml deleted file mode 100644 index 9c5c457d33c..00000000000 --- a/data/Bravura/E901-mensuralGclefPetrucci.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E901.xml b/data/Bravura/E901.xml new file mode 100644 index 00000000000..a9173e9ce8a --- /dev/null +++ b/data/Bravura/E901.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E902-chantFclef.xml b/data/Bravura/E902-chantFclef.xml deleted file mode 100644 index 42595ae579f..00000000000 --- a/data/Bravura/E902-chantFclef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E902.xml b/data/Bravura/E902.xml new file mode 100644 index 00000000000..346c65e29ba --- /dev/null +++ b/data/Bravura/E902.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E904-mensuralFclefPetrucci.xml b/data/Bravura/E904-mensuralFclefPetrucci.xml deleted file mode 100644 index 8f0118969c4..00000000000 --- a/data/Bravura/E904-mensuralFclefPetrucci.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E904.xml b/data/Bravura/E904.xml new file mode 100644 index 00000000000..041f727ffea --- /dev/null +++ b/data/Bravura/E904.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E906-chantCclef.xml b/data/Bravura/E906-chantCclef.xml deleted file mode 100644 index 5803bba2324..00000000000 --- a/data/Bravura/E906-chantCclef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E906.xml b/data/Bravura/E906.xml new file mode 100644 index 00000000000..4bae5c9c6e5 --- /dev/null +++ b/data/Bravura/E906.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E907.xml b/data/Bravura/E907.xml new file mode 100644 index 00000000000..bf913196491 --- /dev/null +++ b/data/Bravura/E907.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E908.xml b/data/Bravura/E908.xml new file mode 100644 index 00000000000..0f0ae313fb9 --- /dev/null +++ b/data/Bravura/E908.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E909-mensuralCclefPetrucciPosMiddle.xml b/data/Bravura/E909-mensuralCclefPetrucciPosMiddle.xml deleted file mode 100644 index 6cbb14b530c..00000000000 --- a/data/Bravura/E909-mensuralCclefPetrucciPosMiddle.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E909.xml b/data/Bravura/E909.xml new file mode 100644 index 00000000000..7f26a939c0b --- /dev/null +++ b/data/Bravura/E909.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E90A.xml b/data/Bravura/E90A.xml new file mode 100644 index 00000000000..c77610a587d --- /dev/null +++ b/data/Bravura/E90A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E90B.xml b/data/Bravura/E90B.xml new file mode 100644 index 00000000000..c983703ed72 --- /dev/null +++ b/data/Bravura/E90B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E910-mensuralProlation1.xml b/data/Bravura/E910-mensuralProlation1.xml deleted file mode 100644 index b70ea906c21..00000000000 --- a/data/Bravura/E910-mensuralProlation1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E910.xml b/data/Bravura/E910.xml new file mode 100644 index 00000000000..36a91b7b525 --- /dev/null +++ b/data/Bravura/E910.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E911-mensuralProlation2.xml b/data/Bravura/E911-mensuralProlation2.xml deleted file mode 100644 index 64f8f93e448..00000000000 --- a/data/Bravura/E911-mensuralProlation2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E911.xml b/data/Bravura/E911.xml new file mode 100644 index 00000000000..7905daaeb2b --- /dev/null +++ b/data/Bravura/E911.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E912-mensuralProlation3.xml b/data/Bravura/E912-mensuralProlation3.xml deleted file mode 100644 index 7bc67e8aea5..00000000000 --- a/data/Bravura/E912-mensuralProlation3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E912.xml b/data/Bravura/E912.xml new file mode 100644 index 00000000000..afbf8e178f3 --- /dev/null +++ b/data/Bravura/E912.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E913-mensuralProlation4.xml b/data/Bravura/E913-mensuralProlation4.xml deleted file mode 100644 index 3b1c3ebe663..00000000000 --- a/data/Bravura/E913-mensuralProlation4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E913.xml b/data/Bravura/E913.xml new file mode 100644 index 00000000000..0ca55fac83a --- /dev/null +++ b/data/Bravura/E913.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E914-mensuralProlation5.xml b/data/Bravura/E914-mensuralProlation5.xml deleted file mode 100644 index c63f501bd54..00000000000 --- a/data/Bravura/E914-mensuralProlation5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E914.xml b/data/Bravura/E914.xml new file mode 100644 index 00000000000..8ac5ce71715 --- /dev/null +++ b/data/Bravura/E914.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E915-mensuralProlation6.xml b/data/Bravura/E915-mensuralProlation6.xml deleted file mode 100644 index 21495dc2e5e..00000000000 --- a/data/Bravura/E915-mensuralProlation6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E915.xml b/data/Bravura/E915.xml new file mode 100644 index 00000000000..3eb9af22a8d --- /dev/null +++ b/data/Bravura/E915.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E916-mensuralProlation7.xml b/data/Bravura/E916-mensuralProlation7.xml deleted file mode 100644 index 39af68686ce..00000000000 --- a/data/Bravura/E916-mensuralProlation7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E916.xml b/data/Bravura/E916.xml new file mode 100644 index 00000000000..d8d64b0d65a --- /dev/null +++ b/data/Bravura/E916.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E917-mensuralProlation8.xml b/data/Bravura/E917-mensuralProlation8.xml deleted file mode 100644 index fd81b4ea85b..00000000000 --- a/data/Bravura/E917-mensuralProlation8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E917.xml b/data/Bravura/E917.xml new file mode 100644 index 00000000000..8ec9831f303 --- /dev/null +++ b/data/Bravura/E917.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E918-mensuralProlation9.xml b/data/Bravura/E918-mensuralProlation9.xml deleted file mode 100644 index c8e3828b5a0..00000000000 --- a/data/Bravura/E918-mensuralProlation9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E918.xml b/data/Bravura/E918.xml new file mode 100644 index 00000000000..92b068d7fa5 --- /dev/null +++ b/data/Bravura/E918.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E919-mensuralProlation10.xml b/data/Bravura/E919-mensuralProlation10.xml deleted file mode 100644 index 0f099556917..00000000000 --- a/data/Bravura/E919-mensuralProlation10.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E919.xml b/data/Bravura/E919.xml new file mode 100644 index 00000000000..63f1d3e6ea1 --- /dev/null +++ b/data/Bravura/E919.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E91A-mensuralProlation11.xml b/data/Bravura/E91A-mensuralProlation11.xml deleted file mode 100644 index ac3395d6220..00000000000 --- a/data/Bravura/E91A-mensuralProlation11.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E91A.xml b/data/Bravura/E91A.xml new file mode 100644 index 00000000000..3e889ce142c --- /dev/null +++ b/data/Bravura/E91A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E91B-mensuralProportionTempusPerfectum.xml b/data/Bravura/E91B-mensuralProportionTempusPerfectum.xml deleted file mode 100644 index 6bd4925a16d..00000000000 --- a/data/Bravura/E91B-mensuralProportionTempusPerfectum.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E91B.xml b/data/Bravura/E91B.xml new file mode 100644 index 00000000000..acdb022e16f --- /dev/null +++ b/data/Bravura/E91B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E91C-mensuralProportionProportioDupla1.xml b/data/Bravura/E91C-mensuralProportionProportioDupla1.xml deleted file mode 100644 index 31368c1098c..00000000000 --- a/data/Bravura/E91C-mensuralProportionProportioDupla1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E91C.xml b/data/Bravura/E91C.xml new file mode 100644 index 00000000000..a3684029e0f --- /dev/null +++ b/data/Bravura/E91C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E91D-mensuralProportionProportioDupla2.xml b/data/Bravura/E91D-mensuralProportionProportioDupla2.xml deleted file mode 100644 index 7ff93a1360a..00000000000 --- a/data/Bravura/E91D-mensuralProportionProportioDupla2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E91D.xml b/data/Bravura/E91D.xml new file mode 100644 index 00000000000..e1974252169 --- /dev/null +++ b/data/Bravura/E91D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E91E-mensuralProportionProportioTripla.xml b/data/Bravura/E91E-mensuralProportionProportioTripla.xml deleted file mode 100644 index 90c3ad07e67..00000000000 --- a/data/Bravura/E91E-mensuralProportionProportioTripla.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E91E.xml b/data/Bravura/E91E.xml new file mode 100644 index 00000000000..b7eaaf5de4d --- /dev/null +++ b/data/Bravura/E91E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E91F-mensuralProportionProportioQuadrupla.xml b/data/Bravura/E91F-mensuralProportionProportioQuadrupla.xml deleted file mode 100644 index a6cbeef07d2..00000000000 --- a/data/Bravura/E91F-mensuralProportionProportioQuadrupla.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E91F.xml b/data/Bravura/E91F.xml new file mode 100644 index 00000000000..8742de89c50 --- /dev/null +++ b/data/Bravura/E91F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E920-mensuralProlationCombiningDot.xml b/data/Bravura/E920-mensuralProlationCombiningDot.xml deleted file mode 100644 index b2b7f32cc97..00000000000 --- a/data/Bravura/E920-mensuralProlationCombiningDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E920.xml b/data/Bravura/E920.xml new file mode 100644 index 00000000000..cf66abdf0c4 --- /dev/null +++ b/data/Bravura/E920.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E921-mensuralProlationCombiningTwoDots.xml b/data/Bravura/E921-mensuralProlationCombiningTwoDots.xml deleted file mode 100644 index 10daa97645c..00000000000 --- a/data/Bravura/E921-mensuralProlationCombiningTwoDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E921.xml b/data/Bravura/E921.xml new file mode 100644 index 00000000000..4c3768e2cf8 --- /dev/null +++ b/data/Bravura/E921.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E922-mensuralProlationCombiningThreeDots.xml b/data/Bravura/E922-mensuralProlationCombiningThreeDots.xml deleted file mode 100644 index ddc1d48cf1f..00000000000 --- a/data/Bravura/E922-mensuralProlationCombiningThreeDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E922.xml b/data/Bravura/E922.xml new file mode 100644 index 00000000000..cf6e00b779a --- /dev/null +++ b/data/Bravura/E922.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E923-mensuralProlationCombiningThreeDotsTri.xml b/data/Bravura/E923-mensuralProlationCombiningThreeDotsTri.xml deleted file mode 100644 index e20212bddaa..00000000000 --- a/data/Bravura/E923-mensuralProlationCombiningThreeDotsTri.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E923.xml b/data/Bravura/E923.xml new file mode 100644 index 00000000000..735024811c4 --- /dev/null +++ b/data/Bravura/E923.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E924-mensuralProlationCombiningDotVoid.xml b/data/Bravura/E924-mensuralProlationCombiningDotVoid.xml deleted file mode 100644 index 4760f97b1cb..00000000000 --- a/data/Bravura/E924-mensuralProlationCombiningDotVoid.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E924.xml b/data/Bravura/E924.xml new file mode 100644 index 00000000000..17547882372 --- /dev/null +++ b/data/Bravura/E924.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E925-mensuralProlationCombiningStroke.xml b/data/Bravura/E925-mensuralProlationCombiningStroke.xml deleted file mode 100644 index 7c9e17a0a84..00000000000 --- a/data/Bravura/E925-mensuralProlationCombiningStroke.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E925.xml b/data/Bravura/E925.xml new file mode 100644 index 00000000000..1e7fcf2812e --- /dev/null +++ b/data/Bravura/E925.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E938-mensuralNoteheadSemibrevisBlack.xml b/data/Bravura/E938-mensuralNoteheadSemibrevisBlack.xml deleted file mode 100644 index 66b04fd719b..00000000000 --- a/data/Bravura/E938-mensuralNoteheadSemibrevisBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E938.xml b/data/Bravura/E938.xml new file mode 100644 index 00000000000..fccceb49e53 --- /dev/null +++ b/data/Bravura/E938.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E939-mensuralNoteheadSemibrevisVoid.xml b/data/Bravura/E939-mensuralNoteheadSemibrevisVoid.xml deleted file mode 100644 index 4c484092074..00000000000 --- a/data/Bravura/E939-mensuralNoteheadSemibrevisVoid.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E939.xml b/data/Bravura/E939.xml new file mode 100644 index 00000000000..e670878eba0 --- /dev/null +++ b/data/Bravura/E939.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E93C-mensuralNoteheadMinimaWhite.xml b/data/Bravura/E93C-mensuralNoteheadMinimaWhite.xml deleted file mode 100644 index 165ff1341fc..00000000000 --- a/data/Bravura/E93C-mensuralNoteheadMinimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E93C.xml b/data/Bravura/E93C.xml new file mode 100644 index 00000000000..bc6e116735d --- /dev/null +++ b/data/Bravura/E93C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E93D-mensuralNoteheadSemiminimaWhite.xml b/data/Bravura/E93D-mensuralNoteheadSemiminimaWhite.xml deleted file mode 100644 index 727718414bc..00000000000 --- a/data/Bravura/E93D-mensuralNoteheadSemiminimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E93D.xml b/data/Bravura/E93D.xml new file mode 100644 index 00000000000..c339969d544 --- /dev/null +++ b/data/Bravura/E93D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E93E-mensuralCombStemUp.xml b/data/Bravura/E93E-mensuralCombStemUp.xml deleted file mode 100644 index ad143028f30..00000000000 --- a/data/Bravura/E93E-mensuralCombStemUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E93E.xml b/data/Bravura/E93E.xml new file mode 100644 index 00000000000..69c1755e1f9 --- /dev/null +++ b/data/Bravura/E93E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E93F-mensuralCombStemDown.xml b/data/Bravura/E93F-mensuralCombStemDown.xml deleted file mode 100644 index 4d1353c1e53..00000000000 --- a/data/Bravura/E93F-mensuralCombStemDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E93F.xml b/data/Bravura/E93F.xml new file mode 100644 index 00000000000..991692bac21 --- /dev/null +++ b/data/Bravura/E93F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E949-mensuralCombStemUpFlagSemiminima.xml b/data/Bravura/E949-mensuralCombStemUpFlagSemiminima.xml deleted file mode 100644 index f32c725ce98..00000000000 --- a/data/Bravura/E949-mensuralCombStemUpFlagSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E949.xml b/data/Bravura/E949.xml new file mode 100644 index 00000000000..95ef6b06e04 --- /dev/null +++ b/data/Bravura/E949.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E94A-mensuralCombStemDownFlagSemiminima.xml b/data/Bravura/E94A-mensuralCombStemDownFlagSemiminima.xml deleted file mode 100644 index 0b894fe377f..00000000000 --- a/data/Bravura/E94A-mensuralCombStemDownFlagSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E94A.xml b/data/Bravura/E94A.xml new file mode 100644 index 00000000000..b01ec86ab27 --- /dev/null +++ b/data/Bravura/E94A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E94B-mensuralCombStemUpFlagFusa.xml b/data/Bravura/E94B-mensuralCombStemUpFlagFusa.xml deleted file mode 100644 index 0cb11ed3331..00000000000 --- a/data/Bravura/E94B-mensuralCombStemUpFlagFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E94B.xml b/data/Bravura/E94B.xml new file mode 100644 index 00000000000..8e191de6f03 --- /dev/null +++ b/data/Bravura/E94B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E94C-mensuralCombStemDownFlagFusa.xml b/data/Bravura/E94C-mensuralCombStemDownFlagFusa.xml deleted file mode 100644 index b222a91fe52..00000000000 --- a/data/Bravura/E94C-mensuralCombStemDownFlagFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E94C.xml b/data/Bravura/E94C.xml new file mode 100644 index 00000000000..5161b44f697 --- /dev/null +++ b/data/Bravura/E94C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E990-chantPunctum.xml b/data/Bravura/E990-chantPunctum.xml deleted file mode 100644 index bf7a2bae504..00000000000 --- a/data/Bravura/E990-chantPunctum.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E990.xml b/data/Bravura/E990.xml new file mode 100644 index 00000000000..09bd051d6b2 --- /dev/null +++ b/data/Bravura/E990.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E991-chantPunctumInclinatum.xml b/data/Bravura/E991-chantPunctumInclinatum.xml deleted file mode 100644 index 657043b5ff5..00000000000 --- a/data/Bravura/E991-chantPunctumInclinatum.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E991.xml b/data/Bravura/E991.xml new file mode 100644 index 00000000000..72d5b7a96ae --- /dev/null +++ b/data/Bravura/E991.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E996-chantPunctumVirga.xml b/data/Bravura/E996-chantPunctumVirga.xml deleted file mode 100644 index e486c8b45f8..00000000000 --- a/data/Bravura/E996-chantPunctumVirga.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E996.xml b/data/Bravura/E996.xml new file mode 100644 index 00000000000..650ed1628db --- /dev/null +++ b/data/Bravura/E996.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E99B-chantQuilisma.xml b/data/Bravura/E99B-chantQuilisma.xml deleted file mode 100644 index d42efce7448..00000000000 --- a/data/Bravura/E99B-chantQuilisma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E99B.xml b/data/Bravura/E99B.xml new file mode 100644 index 00000000000..f1c98f73de7 --- /dev/null +++ b/data/Bravura/E99B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E99E-chantOriscusLiquescens.xml b/data/Bravura/E99E-chantOriscusLiquescens.xml deleted file mode 100644 index 5795c6c8908..00000000000 --- a/data/Bravura/E99E-chantOriscusLiquescens.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E99E.xml b/data/Bravura/E99E.xml new file mode 100644 index 00000000000..12aa9397af2 --- /dev/null +++ b/data/Bravura/E99E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E99F-chantStrophicus.xml b/data/Bravura/E99F-chantStrophicus.xml deleted file mode 100644 index 1f3d0718c1b..00000000000 --- a/data/Bravura/E99F-chantStrophicus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E99F.xml b/data/Bravura/E99F.xml new file mode 100644 index 00000000000..1338616622f --- /dev/null +++ b/data/Bravura/E99F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9B4-chantEntryLineAsc2nd.xml b/data/Bravura/E9B4-chantEntryLineAsc2nd.xml deleted file mode 100644 index dc5db66fd16..00000000000 --- a/data/Bravura/E9B4-chantEntryLineAsc2nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9B4.xml b/data/Bravura/E9B4.xml new file mode 100644 index 00000000000..3cf09b7087f --- /dev/null +++ b/data/Bravura/E9B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9B5-chantEntryLineAsc3rd.xml b/data/Bravura/E9B5-chantEntryLineAsc3rd.xml deleted file mode 100644 index 7c7f78e6038..00000000000 --- a/data/Bravura/E9B5-chantEntryLineAsc3rd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9B5.xml b/data/Bravura/E9B5.xml new file mode 100644 index 00000000000..5b66c5a9014 --- /dev/null +++ b/data/Bravura/E9B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9B6-chantEntryLineAsc4th.xml b/data/Bravura/E9B6-chantEntryLineAsc4th.xml deleted file mode 100644 index 9268b60f958..00000000000 --- a/data/Bravura/E9B6-chantEntryLineAsc4th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9B6.xml b/data/Bravura/E9B6.xml new file mode 100644 index 00000000000..8b93bc6bcf6 --- /dev/null +++ b/data/Bravura/E9B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9B7-chantEntryLineAsc5th.xml b/data/Bravura/E9B7-chantEntryLineAsc5th.xml deleted file mode 100644 index 9ec5423ad2a..00000000000 --- a/data/Bravura/E9B7-chantEntryLineAsc5th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9B7.xml b/data/Bravura/E9B7.xml new file mode 100644 index 00000000000..03a98dc8afe --- /dev/null +++ b/data/Bravura/E9B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9B9-chantLigaturaDesc2nd.xml b/data/Bravura/E9B9-chantLigaturaDesc2nd.xml deleted file mode 100644 index 3fd9361cfd3..00000000000 --- a/data/Bravura/E9B9-chantLigaturaDesc2nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9B9.xml b/data/Bravura/E9B9.xml new file mode 100644 index 00000000000..4ed5cf8e535 --- /dev/null +++ b/data/Bravura/E9B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9BA-chantLigaturaDesc3rd.xml b/data/Bravura/E9BA-chantLigaturaDesc3rd.xml deleted file mode 100644 index aee076b3fa1..00000000000 --- a/data/Bravura/E9BA-chantLigaturaDesc3rd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9BA.xml b/data/Bravura/E9BA.xml new file mode 100644 index 00000000000..c8e3df134e0 --- /dev/null +++ b/data/Bravura/E9BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9BB-chantLigaturaDesc4th.xml b/data/Bravura/E9BB-chantLigaturaDesc4th.xml deleted file mode 100644 index 08278dd0b65..00000000000 --- a/data/Bravura/E9BB-chantLigaturaDesc4th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9BB.xml b/data/Bravura/E9BB.xml new file mode 100644 index 00000000000..bd2b09cf1b7 --- /dev/null +++ b/data/Bravura/E9BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9BC-chantLigaturaDesc5th.xml b/data/Bravura/E9BC-chantLigaturaDesc5th.xml deleted file mode 100644 index e6d74cb8aed..00000000000 --- a/data/Bravura/E9BC-chantLigaturaDesc5th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9BC.xml b/data/Bravura/E9BC.xml new file mode 100644 index 00000000000..59a5bf84988 --- /dev/null +++ b/data/Bravura/E9BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9E0-medRenFlatSoftB.xml b/data/Bravura/E9E0-medRenFlatSoftB.xml deleted file mode 100644 index 5aad7787c6c..00000000000 --- a/data/Bravura/E9E0-medRenFlatSoftB.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9E0.xml b/data/Bravura/E9E0.xml new file mode 100644 index 00000000000..33da12ff288 --- /dev/null +++ b/data/Bravura/E9E0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9E1-medRenFlatHardB.xml b/data/Bravura/E9E1-medRenFlatHardB.xml deleted file mode 100644 index 2e083d40a04..00000000000 --- a/data/Bravura/E9E1-medRenFlatHardB.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9E1.xml b/data/Bravura/E9E1.xml new file mode 100644 index 00000000000..32c3bfd11e3 --- /dev/null +++ b/data/Bravura/E9E1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9E2-medRenNatural.xml b/data/Bravura/E9E2-medRenNatural.xml deleted file mode 100644 index 3840c1153ed..00000000000 --- a/data/Bravura/E9E2-medRenNatural.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9E2.xml b/data/Bravura/E9E2.xml new file mode 100644 index 00000000000..dcd8b9f082e --- /dev/null +++ b/data/Bravura/E9E2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9E3-medRenSharpCroix.xml b/data/Bravura/E9E3-medRenSharpCroix.xml deleted file mode 100644 index b860f0b45ca..00000000000 --- a/data/Bravura/E9E3-medRenSharpCroix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9E3.xml b/data/Bravura/E9E3.xml new file mode 100644 index 00000000000..fcdfa65ab66 --- /dev/null +++ b/data/Bravura/E9E3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F0-mensuralRestMaxima.xml b/data/Bravura/E9F0-mensuralRestMaxima.xml deleted file mode 100644 index 4c20092e8a0..00000000000 --- a/data/Bravura/E9F0-mensuralRestMaxima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F0.xml b/data/Bravura/E9F0.xml new file mode 100644 index 00000000000..8d1a26decc3 --- /dev/null +++ b/data/Bravura/E9F0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F1-mensuralRestLongaPerfecta.xml b/data/Bravura/E9F1-mensuralRestLongaPerfecta.xml deleted file mode 100644 index 7838423de84..00000000000 --- a/data/Bravura/E9F1-mensuralRestLongaPerfecta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F1.xml b/data/Bravura/E9F1.xml new file mode 100644 index 00000000000..ae7affbf859 --- /dev/null +++ b/data/Bravura/E9F1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F2-mensuralRestLongaImperfecta.xml b/data/Bravura/E9F2-mensuralRestLongaImperfecta.xml deleted file mode 100644 index 74ce1e94d89..00000000000 --- a/data/Bravura/E9F2-mensuralRestLongaImperfecta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F2.xml b/data/Bravura/E9F2.xml new file mode 100644 index 00000000000..343ee4b19bd --- /dev/null +++ b/data/Bravura/E9F2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F3-mensuralRestBrevis.xml b/data/Bravura/E9F3-mensuralRestBrevis.xml deleted file mode 100644 index 7e26de29165..00000000000 --- a/data/Bravura/E9F3-mensuralRestBrevis.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F3.xml b/data/Bravura/E9F3.xml new file mode 100644 index 00000000000..59b49479eca --- /dev/null +++ b/data/Bravura/E9F3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F4-mensuralRestSemibrevis.xml b/data/Bravura/E9F4-mensuralRestSemibrevis.xml deleted file mode 100644 index 8f8b8cf224d..00000000000 --- a/data/Bravura/E9F4-mensuralRestSemibrevis.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F4.xml b/data/Bravura/E9F4.xml new file mode 100644 index 00000000000..49a50029193 --- /dev/null +++ b/data/Bravura/E9F4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F5-mensuralRestMinima.xml b/data/Bravura/E9F5-mensuralRestMinima.xml deleted file mode 100644 index 9e5d520607d..00000000000 --- a/data/Bravura/E9F5-mensuralRestMinima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F5.xml b/data/Bravura/E9F5.xml new file mode 100644 index 00000000000..aea8de7a1ce --- /dev/null +++ b/data/Bravura/E9F5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F6-mensuralRestSemiminima.xml b/data/Bravura/E9F6-mensuralRestSemiminima.xml deleted file mode 100644 index 7fe3c3e1677..00000000000 --- a/data/Bravura/E9F6-mensuralRestSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F6.xml b/data/Bravura/E9F6.xml new file mode 100644 index 00000000000..fe8eb6d0d8a --- /dev/null +++ b/data/Bravura/E9F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F7-mensuralRestFusa.xml b/data/Bravura/E9F7-mensuralRestFusa.xml deleted file mode 100644 index 076913e2b61..00000000000 --- a/data/Bravura/E9F7-mensuralRestFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F7.xml b/data/Bravura/E9F7.xml new file mode 100644 index 00000000000..1c224feca8e --- /dev/null +++ b/data/Bravura/E9F7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/E9F8-mensuralRestSemifusa.xml b/data/Bravura/E9F8-mensuralRestSemifusa.xml deleted file mode 100644 index aa4fb9522c8..00000000000 --- a/data/Bravura/E9F8-mensuralRestSemifusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/E9F8.xml b/data/Bravura/E9F8.xml new file mode 100644 index 00000000000..97dfec82444 --- /dev/null +++ b/data/Bravura/E9F8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EA02-mensuralCustosUp.xml b/data/Bravura/EA02-mensuralCustosUp.xml deleted file mode 100644 index 7338e1a2743..00000000000 --- a/data/Bravura/EA02-mensuralCustosUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EA02.xml b/data/Bravura/EA02.xml new file mode 100644 index 00000000000..2e532245717 --- /dev/null +++ b/data/Bravura/EA02.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EA06-chantCustosStemUpPosMiddle.xml b/data/Bravura/EA06-chantCustosStemUpPosMiddle.xml deleted file mode 100644 index 1a5de6c4d7b..00000000000 --- a/data/Bravura/EA06-chantCustosStemUpPosMiddle.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EA06.xml b/data/Bravura/EA06.xml new file mode 100644 index 00000000000..7c1c93ad2a0 --- /dev/null +++ b/data/Bravura/EA06.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EAA4-wiggleTrill.xml b/data/Bravura/EAA4-wiggleTrill.xml deleted file mode 100644 index 039200accf8..00000000000 --- a/data/Bravura/EAA4-wiggleTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EAA4.xml b/data/Bravura/EAA4.xml new file mode 100644 index 00000000000..401d133833c --- /dev/null +++ b/data/Bravura/EAA4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EAA9-wiggleArpeggiatoUp.xml b/data/Bravura/EAA9-wiggleArpeggiatoUp.xml deleted file mode 100644 index 8e4808e96f8..00000000000 --- a/data/Bravura/EAA9-wiggleArpeggiatoUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EAA9.xml b/data/Bravura/EAA9.xml new file mode 100644 index 00000000000..dde86a858a6 --- /dev/null +++ b/data/Bravura/EAA9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EAAA-wiggleArpeggiatoDown.xml b/data/Bravura/EAAA-wiggleArpeggiatoDown.xml deleted file mode 100644 index 865fb398af6..00000000000 --- a/data/Bravura/EAAA-wiggleArpeggiatoDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EAAA.xml b/data/Bravura/EAAA.xml new file mode 100644 index 00000000000..806a315e2c2 --- /dev/null +++ b/data/Bravura/EAAA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EAAD-wiggleArpeggiatoUpArrow.xml b/data/Bravura/EAAD-wiggleArpeggiatoUpArrow.xml deleted file mode 100644 index 91f645779c2..00000000000 --- a/data/Bravura/EAAD-wiggleArpeggiatoUpArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EAAD.xml b/data/Bravura/EAAD.xml new file mode 100644 index 00000000000..2395bde9d0e --- /dev/null +++ b/data/Bravura/EAAD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EAAE-wiggleArpeggiatoDownArrow.xml b/data/Bravura/EAAE-wiggleArpeggiatoDownArrow.xml deleted file mode 100644 index 0115ceadd54..00000000000 --- a/data/Bravura/EAAE-wiggleArpeggiatoDownArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EAAE.xml b/data/Bravura/EAAE.xml new file mode 100644 index 00000000000..e47f620467f --- /dev/null +++ b/data/Bravura/EAAE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EAAF-wiggleGlissando.xml b/data/Bravura/EAAF-wiggleGlissando.xml deleted file mode 100644 index 520e0c96dd9..00000000000 --- a/data/Bravura/EAAF-wiggleGlissando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EAAF.xml b/data/Bravura/EAAF.xml new file mode 100644 index 00000000000..6c2c4dbb6c8 --- /dev/null +++ b/data/Bravura/EAAF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBA7-luteDurationWhole.xml b/data/Bravura/EBA7-luteDurationWhole.xml deleted file mode 100644 index c686cfb6ddb..00000000000 --- a/data/Bravura/EBA7-luteDurationWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBA7.xml b/data/Bravura/EBA7.xml new file mode 100644 index 00000000000..f56459f2ea3 --- /dev/null +++ b/data/Bravura/EBA7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBA8-luteDurationHalf.xml b/data/Bravura/EBA8-luteDurationHalf.xml deleted file mode 100644 index 073260463ce..00000000000 --- a/data/Bravura/EBA8-luteDurationHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBA8.xml b/data/Bravura/EBA8.xml new file mode 100644 index 00000000000..c914956ae07 --- /dev/null +++ b/data/Bravura/EBA8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBA9-luteDurationQuarter.xml b/data/Bravura/EBA9-luteDurationQuarter.xml deleted file mode 100644 index a4848a8ec5b..00000000000 --- a/data/Bravura/EBA9-luteDurationQuarter.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBA9.xml b/data/Bravura/EBA9.xml new file mode 100644 index 00000000000..4d47c33917d --- /dev/null +++ b/data/Bravura/EBA9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBAA-luteDuration8th.xml b/data/Bravura/EBAA-luteDuration8th.xml deleted file mode 100644 index f22cf9a7433..00000000000 --- a/data/Bravura/EBAA-luteDuration8th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBAA.xml b/data/Bravura/EBAA.xml new file mode 100644 index 00000000000..10976ccbc62 --- /dev/null +++ b/data/Bravura/EBAA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBAB-luteDuration16th.xml b/data/Bravura/EBAB-luteDuration16th.xml deleted file mode 100644 index a80d9d55e46..00000000000 --- a/data/Bravura/EBAB-luteDuration16th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBAB.xml b/data/Bravura/EBAB.xml new file mode 100644 index 00000000000..1683003263c --- /dev/null +++ b/data/Bravura/EBAB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBAC-luteDuration32nd.xml b/data/Bravura/EBAC-luteDuration32nd.xml deleted file mode 100644 index 6b8f4ab23dc..00000000000 --- a/data/Bravura/EBAC-luteDuration32nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBAC.xml b/data/Bravura/EBAC.xml new file mode 100644 index 00000000000..b0cb42a8dec --- /dev/null +++ b/data/Bravura/EBAC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC0-luteFrenchFretA.xml b/data/Bravura/EBC0-luteFrenchFretA.xml deleted file mode 100644 index 1befe6ef5da..00000000000 --- a/data/Bravura/EBC0-luteFrenchFretA.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC0.xml b/data/Bravura/EBC0.xml new file mode 100644 index 00000000000..8a73edac364 --- /dev/null +++ b/data/Bravura/EBC0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC1-luteFrenchFretB.xml b/data/Bravura/EBC1-luteFrenchFretB.xml deleted file mode 100644 index ce47f07443a..00000000000 --- a/data/Bravura/EBC1-luteFrenchFretB.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC1.xml b/data/Bravura/EBC1.xml new file mode 100644 index 00000000000..c8e62bb4ce5 --- /dev/null +++ b/data/Bravura/EBC1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC2-luteFrenchFretC.xml b/data/Bravura/EBC2-luteFrenchFretC.xml deleted file mode 100644 index a41e93abe90..00000000000 --- a/data/Bravura/EBC2-luteFrenchFretC.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC2.xml b/data/Bravura/EBC2.xml new file mode 100644 index 00000000000..28b65ba07a6 --- /dev/null +++ b/data/Bravura/EBC2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC3-luteFrenchFretD.xml b/data/Bravura/EBC3-luteFrenchFretD.xml deleted file mode 100644 index 300f5b76c31..00000000000 --- a/data/Bravura/EBC3-luteFrenchFretD.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC3.xml b/data/Bravura/EBC3.xml new file mode 100644 index 00000000000..bdbb65612f0 --- /dev/null +++ b/data/Bravura/EBC3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC4-luteFrenchFretE.xml b/data/Bravura/EBC4-luteFrenchFretE.xml deleted file mode 100644 index 0f1fce7fe90..00000000000 --- a/data/Bravura/EBC4-luteFrenchFretE.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC4.xml b/data/Bravura/EBC4.xml new file mode 100644 index 00000000000..11a63851ee2 --- /dev/null +++ b/data/Bravura/EBC4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC5-luteFrenchFretF.xml b/data/Bravura/EBC5-luteFrenchFretF.xml deleted file mode 100644 index 62d504fbeef..00000000000 --- a/data/Bravura/EBC5-luteFrenchFretF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC5.xml b/data/Bravura/EBC5.xml new file mode 100644 index 00000000000..7c2ff76d5e4 --- /dev/null +++ b/data/Bravura/EBC5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC6-luteFrenchFretG.xml b/data/Bravura/EBC6-luteFrenchFretG.xml deleted file mode 100644 index 9092db8dcb2..00000000000 --- a/data/Bravura/EBC6-luteFrenchFretG.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC6.xml b/data/Bravura/EBC6.xml new file mode 100644 index 00000000000..00c4813233d --- /dev/null +++ b/data/Bravura/EBC6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC7-luteFrenchFretH.xml b/data/Bravura/EBC7-luteFrenchFretH.xml deleted file mode 100644 index 1ba8656085b..00000000000 --- a/data/Bravura/EBC7-luteFrenchFretH.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC7.xml b/data/Bravura/EBC7.xml new file mode 100644 index 00000000000..a6da9dddbcd --- /dev/null +++ b/data/Bravura/EBC7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC8-luteFrenchFretI.xml b/data/Bravura/EBC8-luteFrenchFretI.xml deleted file mode 100644 index 8e8854e8ccb..00000000000 --- a/data/Bravura/EBC8-luteFrenchFretI.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC8.xml b/data/Bravura/EBC8.xml new file mode 100644 index 00000000000..3aae3c56a2b --- /dev/null +++ b/data/Bravura/EBC8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBC9-luteFrenchFretK.xml b/data/Bravura/EBC9-luteFrenchFretK.xml deleted file mode 100644 index 4fb9a7c7608..00000000000 --- a/data/Bravura/EBC9-luteFrenchFretK.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBC9.xml b/data/Bravura/EBC9.xml new file mode 100644 index 00000000000..57c5c686406 --- /dev/null +++ b/data/Bravura/EBC9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBCA-luteFrenchFretL.xml b/data/Bravura/EBCA-luteFrenchFretL.xml deleted file mode 100644 index 58c02fc570f..00000000000 --- a/data/Bravura/EBCA-luteFrenchFretL.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBCA.xml b/data/Bravura/EBCA.xml new file mode 100644 index 00000000000..241921fa8dc --- /dev/null +++ b/data/Bravura/EBCA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBCB-luteFrenchFretM.xml b/data/Bravura/EBCB-luteFrenchFretM.xml deleted file mode 100644 index e512c7dfbe5..00000000000 --- a/data/Bravura/EBCB-luteFrenchFretM.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBCB.xml b/data/Bravura/EBCB.xml new file mode 100644 index 00000000000..b922ca2486b --- /dev/null +++ b/data/Bravura/EBCB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBCC-luteFrenchFretN.xml b/data/Bravura/EBCC-luteFrenchFretN.xml deleted file mode 100644 index 5df80d67025..00000000000 --- a/data/Bravura/EBCC-luteFrenchFretN.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBCC.xml b/data/Bravura/EBCC.xml new file mode 100644 index 00000000000..bf7202ab6a3 --- /dev/null +++ b/data/Bravura/EBCC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE0-luteItalianFret0.xml b/data/Bravura/EBE0-luteItalianFret0.xml deleted file mode 100644 index fa16c10ca9b..00000000000 --- a/data/Bravura/EBE0-luteItalianFret0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE0.xml b/data/Bravura/EBE0.xml new file mode 100644 index 00000000000..4fa12a87b88 --- /dev/null +++ b/data/Bravura/EBE0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE1-luteItalianFret1.xml b/data/Bravura/EBE1-luteItalianFret1.xml deleted file mode 100644 index c6c59044704..00000000000 --- a/data/Bravura/EBE1-luteItalianFret1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE1.xml b/data/Bravura/EBE1.xml new file mode 100644 index 00000000000..f03c7cf7636 --- /dev/null +++ b/data/Bravura/EBE1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE2-luteItalianFret2.xml b/data/Bravura/EBE2-luteItalianFret2.xml deleted file mode 100644 index 5146ef08065..00000000000 --- a/data/Bravura/EBE2-luteItalianFret2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE2.xml b/data/Bravura/EBE2.xml new file mode 100644 index 00000000000..1d63fe16ba5 --- /dev/null +++ b/data/Bravura/EBE2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE3-luteItalianFret3.xml b/data/Bravura/EBE3-luteItalianFret3.xml deleted file mode 100644 index fa31144f075..00000000000 --- a/data/Bravura/EBE3-luteItalianFret3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE3.xml b/data/Bravura/EBE3.xml new file mode 100644 index 00000000000..ab0279dd575 --- /dev/null +++ b/data/Bravura/EBE3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE4-luteItalianFret4.xml b/data/Bravura/EBE4-luteItalianFret4.xml deleted file mode 100644 index 9cf44d6d579..00000000000 --- a/data/Bravura/EBE4-luteItalianFret4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE4.xml b/data/Bravura/EBE4.xml new file mode 100644 index 00000000000..e539b28de1e --- /dev/null +++ b/data/Bravura/EBE4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE5-luteItalianFret5.xml b/data/Bravura/EBE5-luteItalianFret5.xml deleted file mode 100644 index 035ade18de6..00000000000 --- a/data/Bravura/EBE5-luteItalianFret5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE5.xml b/data/Bravura/EBE5.xml new file mode 100644 index 00000000000..4f4f694ef45 --- /dev/null +++ b/data/Bravura/EBE5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE6-luteItalianFret6.xml b/data/Bravura/EBE6-luteItalianFret6.xml deleted file mode 100644 index 13c75933cb5..00000000000 --- a/data/Bravura/EBE6-luteItalianFret6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE6.xml b/data/Bravura/EBE6.xml new file mode 100644 index 00000000000..45de29fbf09 --- /dev/null +++ b/data/Bravura/EBE6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE7-luteItalianFret7.xml b/data/Bravura/EBE7-luteItalianFret7.xml deleted file mode 100644 index fe4fa7224bc..00000000000 --- a/data/Bravura/EBE7-luteItalianFret7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE7.xml b/data/Bravura/EBE7.xml new file mode 100644 index 00000000000..c568897a8e0 --- /dev/null +++ b/data/Bravura/EBE7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE8-luteItalianFret8.xml b/data/Bravura/EBE8-luteItalianFret8.xml deleted file mode 100644 index 751aca77d40..00000000000 --- a/data/Bravura/EBE8-luteItalianFret8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE8.xml b/data/Bravura/EBE8.xml new file mode 100644 index 00000000000..aac2b0f6f44 --- /dev/null +++ b/data/Bravura/EBE8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/EBE9-luteItalianFret9.xml b/data/Bravura/EBE9-luteItalianFret9.xml deleted file mode 100644 index f3b82cccb3b..00000000000 --- a/data/Bravura/EBE9-luteItalianFret9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/EBE9.xml b/data/Bravura/EBE9.xml new file mode 100644 index 00000000000..4abb2079b7a --- /dev/null +++ b/data/Bravura/EBE9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/ED40-articSoftAccentAbove.xml b/data/Bravura/ED40-articSoftAccentAbove.xml deleted file mode 100644 index 91ea60b6d8a..00000000000 --- a/data/Bravura/ED40-articSoftAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/ED40.xml b/data/Bravura/ED40.xml new file mode 100644 index 00000000000..c52ad74ab08 --- /dev/null +++ b/data/Bravura/ED40.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Bravura/ED41-articSoftAccentBelow.xml b/data/Bravura/ED41-articSoftAccentBelow.xml deleted file mode 100644 index 2a2e778271c..00000000000 --- a/data/Bravura/ED41-articSoftAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Bravura/ED41.xml b/data/Bravura/ED41.xml new file mode 100644 index 00000000000..7d2ef6c2580 --- /dev/null +++ b/data/Bravura/ED41.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville.xml b/data/Gootville.xml index 32cddd400a6..d96f83deba1 100644 --- a/data/Gootville.xml +++ b/data/Gootville.xml @@ -1,416 +1,417 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/Gootville/E003-bracketTop.xml b/data/Gootville/E003-bracketTop.xml deleted file mode 100644 index 172ed245dcb..00000000000 --- a/data/Gootville/E003-bracketTop.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E003.xml b/data/Gootville/E003.xml new file mode 100644 index 00000000000..311ee5a5f30 --- /dev/null +++ b/data/Gootville/E003.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E004-bracketBottom.xml b/data/Gootville/E004-bracketBottom.xml deleted file mode 100644 index 12b78940b95..00000000000 --- a/data/Gootville/E004-bracketBottom.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E004.xml b/data/Gootville/E004.xml new file mode 100644 index 00000000000..04f6dc2f289 --- /dev/null +++ b/data/Gootville/E004.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E043-repeatDots.xml b/data/Gootville/E043-repeatDots.xml deleted file mode 100644 index 924f2c869af..00000000000 --- a/data/Gootville/E043-repeatDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E043.xml b/data/Gootville/E043.xml new file mode 100644 index 00000000000..adccaf80c41 --- /dev/null +++ b/data/Gootville/E043.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E044-repeatDot.xml b/data/Gootville/E044-repeatDot.xml deleted file mode 100644 index 8f01a774bb2..00000000000 --- a/data/Gootville/E044-repeatDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E044.xml b/data/Gootville/E044.xml new file mode 100644 index 00000000000..fbdb151970f --- /dev/null +++ b/data/Gootville/E044.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E047-segno.xml b/data/Gootville/E047-segno.xml deleted file mode 100644 index 5acd758ba4f..00000000000 --- a/data/Gootville/E047-segno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E047.xml b/data/Gootville/E047.xml new file mode 100644 index 00000000000..0b40386adf8 --- /dev/null +++ b/data/Gootville/E047.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E048-coda.xml b/data/Gootville/E048-coda.xml deleted file mode 100644 index 1d03b80bef3..00000000000 --- a/data/Gootville/E048-coda.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E048.xml b/data/Gootville/E048.xml new file mode 100644 index 00000000000..4e0e6d23283 --- /dev/null +++ b/data/Gootville/E048.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E049-codaSquare.xml b/data/Gootville/E049-codaSquare.xml deleted file mode 100644 index 33822621980..00000000000 --- a/data/Gootville/E049-codaSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E049.xml b/data/Gootville/E049.xml new file mode 100644 index 00000000000..d9d39ef07a9 --- /dev/null +++ b/data/Gootville/E049.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E050-gClef.xml b/data/Gootville/E050-gClef.xml deleted file mode 100644 index c3f5b9512cd..00000000000 --- a/data/Gootville/E050-gClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E050.xml b/data/Gootville/E050.xml new file mode 100644 index 00000000000..3922d5545a1 --- /dev/null +++ b/data/Gootville/E050.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E051-gClef15mb.xml b/data/Gootville/E051-gClef15mb.xml deleted file mode 100644 index 24af8c55979..00000000000 --- a/data/Gootville/E051-gClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E051.xml b/data/Gootville/E051.xml new file mode 100644 index 00000000000..4b10bb5d214 --- /dev/null +++ b/data/Gootville/E051.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E052-gClef8vb.xml b/data/Gootville/E052-gClef8vb.xml deleted file mode 100644 index ef03e2dc34e..00000000000 --- a/data/Gootville/E052-gClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E052.xml b/data/Gootville/E052.xml new file mode 100644 index 00000000000..3adb14b2361 --- /dev/null +++ b/data/Gootville/E052.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E053-gClef8va.xml b/data/Gootville/E053-gClef8va.xml deleted file mode 100644 index 34b8b99ceb9..00000000000 --- a/data/Gootville/E053-gClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E053.xml b/data/Gootville/E053.xml new file mode 100644 index 00000000000..bb14955334e --- /dev/null +++ b/data/Gootville/E053.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E054-gClef15ma.xml b/data/Gootville/E054-gClef15ma.xml deleted file mode 100644 index cd9082e29c7..00000000000 --- a/data/Gootville/E054-gClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E054.xml b/data/Gootville/E054.xml new file mode 100644 index 00000000000..5460a59b2ca --- /dev/null +++ b/data/Gootville/E054.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E05C-cClef.xml b/data/Gootville/E05C-cClef.xml deleted file mode 100644 index 572428e7c26..00000000000 --- a/data/Gootville/E05C-cClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E05C.xml b/data/Gootville/E05C.xml new file mode 100644 index 00000000000..658d7fa2e7d --- /dev/null +++ b/data/Gootville/E05C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E05D-cClef8vb.xml b/data/Gootville/E05D-cClef8vb.xml deleted file mode 100644 index 18b96c64f83..00000000000 --- a/data/Gootville/E05D-cClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E05D.xml b/data/Gootville/E05D.xml new file mode 100644 index 00000000000..272d53bb793 --- /dev/null +++ b/data/Gootville/E05D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E062-fClef.xml b/data/Gootville/E062-fClef.xml deleted file mode 100644 index 83104c2242f..00000000000 --- a/data/Gootville/E062-fClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E062.xml b/data/Gootville/E062.xml new file mode 100644 index 00000000000..494ab6d0577 --- /dev/null +++ b/data/Gootville/E062.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E063-fClef15mb.xml b/data/Gootville/E063-fClef15mb.xml deleted file mode 100644 index 7e63888147d..00000000000 --- a/data/Gootville/E063-fClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E063.xml b/data/Gootville/E063.xml new file mode 100644 index 00000000000..d676b332e5b --- /dev/null +++ b/data/Gootville/E063.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E064-fClef8vb.xml b/data/Gootville/E064-fClef8vb.xml deleted file mode 100644 index 6de57c7469a..00000000000 --- a/data/Gootville/E064-fClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E064.xml b/data/Gootville/E064.xml new file mode 100644 index 00000000000..1fb1078a257 --- /dev/null +++ b/data/Gootville/E064.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E065-fClef8va.xml b/data/Gootville/E065-fClef8va.xml deleted file mode 100644 index 7733db0fe45..00000000000 --- a/data/Gootville/E065-fClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E065.xml b/data/Gootville/E065.xml new file mode 100644 index 00000000000..505034974e7 --- /dev/null +++ b/data/Gootville/E065.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E066-fClef15ma.xml b/data/Gootville/E066-fClef15ma.xml deleted file mode 100644 index 5f3d0701fca..00000000000 --- a/data/Gootville/E066-fClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E066.xml b/data/Gootville/E066.xml new file mode 100644 index 00000000000..13eb4e5c139 --- /dev/null +++ b/data/Gootville/E066.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E069-unpitchedPercussionClef1.xml b/data/Gootville/E069-unpitchedPercussionClef1.xml deleted file mode 100644 index 7555ffca9dc..00000000000 --- a/data/Gootville/E069-unpitchedPercussionClef1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E069.xml b/data/Gootville/E069.xml new file mode 100644 index 00000000000..de8d135d37d --- /dev/null +++ b/data/Gootville/E069.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E06A-unpitchedPercussionClef2.xml b/data/Gootville/E06A-unpitchedPercussionClef2.xml deleted file mode 100644 index d408b20318f..00000000000 --- a/data/Gootville/E06A-unpitchedPercussionClef2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E06A.xml b/data/Gootville/E06A.xml new file mode 100644 index 00000000000..9b21faaff1d --- /dev/null +++ b/data/Gootville/E06A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E06D.xml b/data/Gootville/E06D.xml new file mode 100644 index 00000000000..001c641adb8 --- /dev/null +++ b/data/Gootville/E06D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E080-timeSig0.xml b/data/Gootville/E080-timeSig0.xml deleted file mode 100644 index 8c302f0f33e..00000000000 --- a/data/Gootville/E080-timeSig0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E080.xml b/data/Gootville/E080.xml new file mode 100644 index 00000000000..ecc048771cc --- /dev/null +++ b/data/Gootville/E080.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E081-timeSig1.xml b/data/Gootville/E081-timeSig1.xml deleted file mode 100644 index 0c7dd2ffc8b..00000000000 --- a/data/Gootville/E081-timeSig1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E081.xml b/data/Gootville/E081.xml new file mode 100644 index 00000000000..e8ed283c7b1 --- /dev/null +++ b/data/Gootville/E081.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E082-timeSig2.xml b/data/Gootville/E082-timeSig2.xml deleted file mode 100644 index 609e6f0368b..00000000000 --- a/data/Gootville/E082-timeSig2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E082.xml b/data/Gootville/E082.xml new file mode 100644 index 00000000000..844931eb6c9 --- /dev/null +++ b/data/Gootville/E082.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E083-timeSig3.xml b/data/Gootville/E083-timeSig3.xml deleted file mode 100644 index 670a29e2c8c..00000000000 --- a/data/Gootville/E083-timeSig3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E083.xml b/data/Gootville/E083.xml new file mode 100644 index 00000000000..bfe7c3dde34 --- /dev/null +++ b/data/Gootville/E083.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E084-timeSig4.xml b/data/Gootville/E084-timeSig4.xml deleted file mode 100644 index f50884bfc8a..00000000000 --- a/data/Gootville/E084-timeSig4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E084.xml b/data/Gootville/E084.xml new file mode 100644 index 00000000000..b5f98ddc370 --- /dev/null +++ b/data/Gootville/E084.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E085-timeSig5.xml b/data/Gootville/E085-timeSig5.xml deleted file mode 100644 index 8e4e434e8c7..00000000000 --- a/data/Gootville/E085-timeSig5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E085.xml b/data/Gootville/E085.xml new file mode 100644 index 00000000000..701c14a06b3 --- /dev/null +++ b/data/Gootville/E085.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E086-timeSig6.xml b/data/Gootville/E086-timeSig6.xml deleted file mode 100644 index cdb50b3162c..00000000000 --- a/data/Gootville/E086-timeSig6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E086.xml b/data/Gootville/E086.xml new file mode 100644 index 00000000000..e1e38130d62 --- /dev/null +++ b/data/Gootville/E086.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E087-timeSig7.xml b/data/Gootville/E087-timeSig7.xml deleted file mode 100644 index 8b7ea7b1e60..00000000000 --- a/data/Gootville/E087-timeSig7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E087.xml b/data/Gootville/E087.xml new file mode 100644 index 00000000000..96cd3ffdfb6 --- /dev/null +++ b/data/Gootville/E087.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E088-timeSig8.xml b/data/Gootville/E088-timeSig8.xml deleted file mode 100644 index 5bfa451cbee..00000000000 --- a/data/Gootville/E088-timeSig8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E088.xml b/data/Gootville/E088.xml new file mode 100644 index 00000000000..05085caabef --- /dev/null +++ b/data/Gootville/E088.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E089-timeSig9.xml b/data/Gootville/E089-timeSig9.xml deleted file mode 100644 index bace0de1d4d..00000000000 --- a/data/Gootville/E089-timeSig9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E089.xml b/data/Gootville/E089.xml new file mode 100644 index 00000000000..2eb45c8ed0a --- /dev/null +++ b/data/Gootville/E089.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E08A-timeSigCommon.xml b/data/Gootville/E08A-timeSigCommon.xml deleted file mode 100644 index 8393e1c53d0..00000000000 --- a/data/Gootville/E08A-timeSigCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E08A.xml b/data/Gootville/E08A.xml new file mode 100644 index 00000000000..10a8342ad73 --- /dev/null +++ b/data/Gootville/E08A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E08B-timeSigCutCommon.xml b/data/Gootville/E08B-timeSigCutCommon.xml deleted file mode 100644 index 03d999a63c3..00000000000 --- a/data/Gootville/E08B-timeSigCutCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E08B.xml b/data/Gootville/E08B.xml new file mode 100644 index 00000000000..518f109b63e --- /dev/null +++ b/data/Gootville/E08B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E092-timeSigParensLeftSmall.xml b/data/Gootville/E092-timeSigParensLeftSmall.xml deleted file mode 100644 index a70bfad9455..00000000000 --- a/data/Gootville/E092-timeSigParensLeftSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E092.xml b/data/Gootville/E092.xml new file mode 100644 index 00000000000..5551521052b --- /dev/null +++ b/data/Gootville/E092.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E093-timeSigParensRightSmall.xml b/data/Gootville/E093-timeSigParensRightSmall.xml deleted file mode 100644 index 198c428d3bd..00000000000 --- a/data/Gootville/E093-timeSigParensRightSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E093.xml b/data/Gootville/E093.xml new file mode 100644 index 00000000000..1486c1f6ab3 --- /dev/null +++ b/data/Gootville/E093.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E094-timeSigParensLeft.xml b/data/Gootville/E094-timeSigParensLeft.xml deleted file mode 100644 index 4616037fe5b..00000000000 --- a/data/Gootville/E094-timeSigParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E094.xml b/data/Gootville/E094.xml new file mode 100644 index 00000000000..b1af2c0c149 --- /dev/null +++ b/data/Gootville/E094.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E095-timeSigParensRight.xml b/data/Gootville/E095-timeSigParensRight.xml deleted file mode 100644 index 8b29dac8529..00000000000 --- a/data/Gootville/E095-timeSigParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E095.xml b/data/Gootville/E095.xml new file mode 100644 index 00000000000..185c89feb44 --- /dev/null +++ b/data/Gootville/E095.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0A0-noteheadDoubleWhole.xml b/data/Gootville/E0A0-noteheadDoubleWhole.xml deleted file mode 100644 index b2f9ef82a88..00000000000 --- a/data/Gootville/E0A0-noteheadDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0A0.xml b/data/Gootville/E0A0.xml new file mode 100644 index 00000000000..68379dacbad --- /dev/null +++ b/data/Gootville/E0A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0A1-noteheadDoubleWholeSquare.xml b/data/Gootville/E0A1-noteheadDoubleWholeSquare.xml deleted file mode 100644 index 9766e573ca8..00000000000 --- a/data/Gootville/E0A1-noteheadDoubleWholeSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0A1.xml b/data/Gootville/E0A1.xml new file mode 100644 index 00000000000..03953dcece7 --- /dev/null +++ b/data/Gootville/E0A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0A2-noteheadWhole.xml b/data/Gootville/E0A2-noteheadWhole.xml deleted file mode 100644 index 7ace761da31..00000000000 --- a/data/Gootville/E0A2-noteheadWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0A2.xml b/data/Gootville/E0A2.xml new file mode 100644 index 00000000000..b4ef88c177a --- /dev/null +++ b/data/Gootville/E0A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0A3-noteheadHalf.xml b/data/Gootville/E0A3-noteheadHalf.xml deleted file mode 100644 index 522159b9e16..00000000000 --- a/data/Gootville/E0A3-noteheadHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0A3.xml b/data/Gootville/E0A3.xml new file mode 100644 index 00000000000..3e23d354b04 --- /dev/null +++ b/data/Gootville/E0A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0A4-noteheadBlack.xml b/data/Gootville/E0A4-noteheadBlack.xml deleted file mode 100644 index cc55ca5ad8b..00000000000 --- a/data/Gootville/E0A4-noteheadBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0A4.xml b/data/Gootville/E0A4.xml new file mode 100644 index 00000000000..345bf7db88a --- /dev/null +++ b/data/Gootville/E0A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0A9-noteheadXBlack.xml b/data/Gootville/E0A9-noteheadXBlack.xml deleted file mode 100644 index fc69f03b4f2..00000000000 --- a/data/Gootville/E0A9-noteheadXBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0A9.xml b/data/Gootville/E0A9.xml new file mode 100644 index 00000000000..589903d0b4d --- /dev/null +++ b/data/Gootville/E0A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0D9-noteheadDiamondHalf.xml b/data/Gootville/E0D9-noteheadDiamondHalf.xml deleted file mode 100644 index de4b2eabe44..00000000000 --- a/data/Gootville/E0D9-noteheadDiamondHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0D9.xml b/data/Gootville/E0D9.xml new file mode 100644 index 00000000000..e67567e8828 --- /dev/null +++ b/data/Gootville/E0D9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0DA-noteheadDiamondHalfWide.xml b/data/Gootville/E0DA-noteheadDiamondHalfWide.xml deleted file mode 100644 index d014c05f839..00000000000 --- a/data/Gootville/E0DA-noteheadDiamondHalfWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0DA.xml b/data/Gootville/E0DA.xml new file mode 100644 index 00000000000..956c5c18122 --- /dev/null +++ b/data/Gootville/E0DA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0DB-noteheadDiamondBlack.xml b/data/Gootville/E0DB-noteheadDiamondBlack.xml deleted file mode 100644 index 64b5632bcdc..00000000000 --- a/data/Gootville/E0DB-noteheadDiamondBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0DB.xml b/data/Gootville/E0DB.xml new file mode 100644 index 00000000000..87036294c87 --- /dev/null +++ b/data/Gootville/E0DB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0DC-noteheadDiamondBlackWide.xml b/data/Gootville/E0DC-noteheadDiamondBlackWide.xml deleted file mode 100644 index 491cddc5f6e..00000000000 --- a/data/Gootville/E0DC-noteheadDiamondBlackWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0DC.xml b/data/Gootville/E0DC.xml new file mode 100644 index 00000000000..2288d22afb0 --- /dev/null +++ b/data/Gootville/E0DC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0DD-noteheadDiamondWhite.xml b/data/Gootville/E0DD-noteheadDiamondWhite.xml deleted file mode 100644 index 5ee1714badb..00000000000 --- a/data/Gootville/E0DD-noteheadDiamondWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0DD.xml b/data/Gootville/E0DD.xml new file mode 100644 index 00000000000..54d3ff2444c --- /dev/null +++ b/data/Gootville/E0DD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0DE-noteheadDiamondWhiteWide.xml b/data/Gootville/E0DE-noteheadDiamondWhiteWide.xml deleted file mode 100644 index 8936cac6828..00000000000 --- a/data/Gootville/E0DE-noteheadDiamondWhiteWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0DE.xml b/data/Gootville/E0DE.xml new file mode 100644 index 00000000000..43e4e006a3f --- /dev/null +++ b/data/Gootville/E0DE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0F5-noteheadParenthesisLeft.xml b/data/Gootville/E0F5-noteheadParenthesisLeft.xml deleted file mode 100644 index d5f6beec4d6..00000000000 --- a/data/Gootville/E0F5-noteheadParenthesisLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0F5.xml b/data/Gootville/E0F5.xml new file mode 100644 index 00000000000..1c52272e169 --- /dev/null +++ b/data/Gootville/E0F5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E0F6-noteheadParenthesisRight.xml b/data/Gootville/E0F6-noteheadParenthesisRight.xml deleted file mode 100644 index 70ee196b732..00000000000 --- a/data/Gootville/E0F6-noteheadParenthesisRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E0F6.xml b/data/Gootville/E0F6.xml new file mode 100644 index 00000000000..ed78af01e1c --- /dev/null +++ b/data/Gootville/E0F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E101-noteheadSlashHorizontalEnds.xml b/data/Gootville/E101-noteheadSlashHorizontalEnds.xml deleted file mode 100644 index 95fcd0be4f1..00000000000 --- a/data/Gootville/E101-noteheadSlashHorizontalEnds.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E101.xml b/data/Gootville/E101.xml new file mode 100644 index 00000000000..5f6bd53051e --- /dev/null +++ b/data/Gootville/E101.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E102-noteheadSlashWhiteWhole.xml b/data/Gootville/E102-noteheadSlashWhiteWhole.xml deleted file mode 100644 index 682e8c0dba3..00000000000 --- a/data/Gootville/E102-noteheadSlashWhiteWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E102.xml b/data/Gootville/E102.xml new file mode 100644 index 00000000000..31e6f9cf685 --- /dev/null +++ b/data/Gootville/E102.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E103-noteheadSlashWhiteHalf.xml b/data/Gootville/E103-noteheadSlashWhiteHalf.xml deleted file mode 100644 index eb5d00e92b2..00000000000 --- a/data/Gootville/E103-noteheadSlashWhiteHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E103.xml b/data/Gootville/E103.xml new file mode 100644 index 00000000000..981e593c620 --- /dev/null +++ b/data/Gootville/E103.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E240-flag8thUp.xml b/data/Gootville/E240-flag8thUp.xml deleted file mode 100644 index e4ba9fc2348..00000000000 --- a/data/Gootville/E240-flag8thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E240.xml b/data/Gootville/E240.xml new file mode 100644 index 00000000000..41aeefc4cd3 --- /dev/null +++ b/data/Gootville/E240.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E241-flag8thDown.xml b/data/Gootville/E241-flag8thDown.xml deleted file mode 100644 index 48fb7a85db9..00000000000 --- a/data/Gootville/E241-flag8thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E241.xml b/data/Gootville/E241.xml new file mode 100644 index 00000000000..96af6f7e69e --- /dev/null +++ b/data/Gootville/E241.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E242-flag16thUp.xml b/data/Gootville/E242-flag16thUp.xml deleted file mode 100644 index 18c197ae300..00000000000 --- a/data/Gootville/E242-flag16thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E242.xml b/data/Gootville/E242.xml new file mode 100644 index 00000000000..2b1eb758aef --- /dev/null +++ b/data/Gootville/E242.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E243-flag16thDown.xml b/data/Gootville/E243-flag16thDown.xml deleted file mode 100644 index 44eb2b8c86e..00000000000 --- a/data/Gootville/E243-flag16thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E243.xml b/data/Gootville/E243.xml new file mode 100644 index 00000000000..57f645c17bd --- /dev/null +++ b/data/Gootville/E243.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E244-flag32ndUp.xml b/data/Gootville/E244-flag32ndUp.xml deleted file mode 100644 index 87c20821c3b..00000000000 --- a/data/Gootville/E244-flag32ndUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E244.xml b/data/Gootville/E244.xml new file mode 100644 index 00000000000..00fdfadc84d --- /dev/null +++ b/data/Gootville/E244.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E245-flag32ndDown.xml b/data/Gootville/E245-flag32ndDown.xml deleted file mode 100644 index 3f073e0d965..00000000000 --- a/data/Gootville/E245-flag32ndDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E245.xml b/data/Gootville/E245.xml new file mode 100644 index 00000000000..ee8880c1dcb --- /dev/null +++ b/data/Gootville/E245.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E246-flag64thUp.xml b/data/Gootville/E246-flag64thUp.xml deleted file mode 100644 index 5caa85bff72..00000000000 --- a/data/Gootville/E246-flag64thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E246.xml b/data/Gootville/E246.xml new file mode 100644 index 00000000000..62798c24087 --- /dev/null +++ b/data/Gootville/E246.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E247-flag64thDown.xml b/data/Gootville/E247-flag64thDown.xml deleted file mode 100644 index 71e7994f3be..00000000000 --- a/data/Gootville/E247-flag64thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E247.xml b/data/Gootville/E247.xml new file mode 100644 index 00000000000..957eed90270 --- /dev/null +++ b/data/Gootville/E247.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E248-flag128thUp.xml b/data/Gootville/E248-flag128thUp.xml deleted file mode 100644 index ab5844916e7..00000000000 --- a/data/Gootville/E248-flag128thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E248.xml b/data/Gootville/E248.xml new file mode 100644 index 00000000000..716a64b652d --- /dev/null +++ b/data/Gootville/E248.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E249-flag128thDown.xml b/data/Gootville/E249-flag128thDown.xml deleted file mode 100644 index 83865377573..00000000000 --- a/data/Gootville/E249-flag128thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E249.xml b/data/Gootville/E249.xml new file mode 100644 index 00000000000..7a593634b18 --- /dev/null +++ b/data/Gootville/E249.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E260-accidentalFlat.xml b/data/Gootville/E260-accidentalFlat.xml deleted file mode 100644 index 68f4eb10093..00000000000 --- a/data/Gootville/E260-accidentalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E260.xml b/data/Gootville/E260.xml new file mode 100644 index 00000000000..21e38821a38 --- /dev/null +++ b/data/Gootville/E260.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E261-accidentalNatural.xml b/data/Gootville/E261-accidentalNatural.xml deleted file mode 100644 index 9d813821f22..00000000000 --- a/data/Gootville/E261-accidentalNatural.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E261.xml b/data/Gootville/E261.xml new file mode 100644 index 00000000000..348b8ef92df --- /dev/null +++ b/data/Gootville/E261.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E262-accidentalSharp.xml b/data/Gootville/E262-accidentalSharp.xml deleted file mode 100644 index 699ccb6ffc5..00000000000 --- a/data/Gootville/E262-accidentalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E262.xml b/data/Gootville/E262.xml new file mode 100644 index 00000000000..d38f2492b73 --- /dev/null +++ b/data/Gootville/E262.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E263-accidentalDoubleSharp.xml b/data/Gootville/E263-accidentalDoubleSharp.xml deleted file mode 100644 index 5aa1fa35e44..00000000000 --- a/data/Gootville/E263-accidentalDoubleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E263.xml b/data/Gootville/E263.xml new file mode 100644 index 00000000000..9efc6c05a46 --- /dev/null +++ b/data/Gootville/E263.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E264-accidentalDoubleFlat.xml b/data/Gootville/E264-accidentalDoubleFlat.xml deleted file mode 100644 index dd9dfea1957..00000000000 --- a/data/Gootville/E264-accidentalDoubleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E264.xml b/data/Gootville/E264.xml new file mode 100644 index 00000000000..39141d956b3 --- /dev/null +++ b/data/Gootville/E264.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E26A-accidentalParensLeft.xml b/data/Gootville/E26A-accidentalParensLeft.xml deleted file mode 100644 index e4080e976e5..00000000000 --- a/data/Gootville/E26A-accidentalParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E26A.xml b/data/Gootville/E26A.xml new file mode 100644 index 00000000000..791582da0d8 --- /dev/null +++ b/data/Gootville/E26A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E26B-accidentalParensRight.xml b/data/Gootville/E26B-accidentalParensRight.xml deleted file mode 100644 index 13254143173..00000000000 --- a/data/Gootville/E26B-accidentalParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E26B.xml b/data/Gootville/E26B.xml new file mode 100644 index 00000000000..734ca0eb66c --- /dev/null +++ b/data/Gootville/E26B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E270-accidentalQuarterToneFlatArrowUp.xml b/data/Gootville/E270-accidentalQuarterToneFlatArrowUp.xml deleted file mode 100644 index d0a1de762fe..00000000000 --- a/data/Gootville/E270-accidentalQuarterToneFlatArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E270.xml b/data/Gootville/E270.xml new file mode 100644 index 00000000000..092ccb9a9ed --- /dev/null +++ b/data/Gootville/E270.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E271-accidentalThreeQuarterTonesFlatArrowDown.xml b/data/Gootville/E271-accidentalThreeQuarterTonesFlatArrowDown.xml deleted file mode 100644 index 5f55aa86418..00000000000 --- a/data/Gootville/E271-accidentalThreeQuarterTonesFlatArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E271.xml b/data/Gootville/E271.xml new file mode 100644 index 00000000000..5da33ce0ed0 --- /dev/null +++ b/data/Gootville/E271.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E272-accidentalQuarterToneSharpNaturalArrowUp.xml b/data/Gootville/E272-accidentalQuarterToneSharpNaturalArrowUp.xml deleted file mode 100644 index f29ae12db4b..00000000000 --- a/data/Gootville/E272-accidentalQuarterToneSharpNaturalArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E272.xml b/data/Gootville/E272.xml new file mode 100644 index 00000000000..d02f6831798 --- /dev/null +++ b/data/Gootville/E272.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E273-accidentalQuarterToneFlatNaturalArrowDown.xml b/data/Gootville/E273-accidentalQuarterToneFlatNaturalArrowDown.xml deleted file mode 100644 index 06c9c9efba9..00000000000 --- a/data/Gootville/E273-accidentalQuarterToneFlatNaturalArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E273.xml b/data/Gootville/E273.xml new file mode 100644 index 00000000000..7866e5d84ac --- /dev/null +++ b/data/Gootville/E273.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E274-accidentalThreeQuarterTonesSharpArrowUp.xml b/data/Gootville/E274-accidentalThreeQuarterTonesSharpArrowUp.xml deleted file mode 100644 index 33c0c544b1b..00000000000 --- a/data/Gootville/E274-accidentalThreeQuarterTonesSharpArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E274.xml b/data/Gootville/E274.xml new file mode 100644 index 00000000000..16489408cbb --- /dev/null +++ b/data/Gootville/E274.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E275-accidentalQuarterToneSharpArrowDown.xml b/data/Gootville/E275-accidentalQuarterToneSharpArrowDown.xml deleted file mode 100644 index c5a526f5f4a..00000000000 --- a/data/Gootville/E275-accidentalQuarterToneSharpArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E275.xml b/data/Gootville/E275.xml new file mode 100644 index 00000000000..5b117055f15 --- /dev/null +++ b/data/Gootville/E275.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E280-accidentalQuarterToneFlatStein.xml b/data/Gootville/E280-accidentalQuarterToneFlatStein.xml deleted file mode 100644 index dfa28971928..00000000000 --- a/data/Gootville/E280-accidentalQuarterToneFlatStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E280.xml b/data/Gootville/E280.xml new file mode 100644 index 00000000000..0a6767593b8 --- /dev/null +++ b/data/Gootville/E280.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E281-accidentalThreeQuarterTonesFlatZimmermann.xml b/data/Gootville/E281-accidentalThreeQuarterTonesFlatZimmermann.xml deleted file mode 100644 index 9e8a50d7fd4..00000000000 --- a/data/Gootville/E281-accidentalThreeQuarterTonesFlatZimmermann.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E281.xml b/data/Gootville/E281.xml new file mode 100644 index 00000000000..50785a5956c --- /dev/null +++ b/data/Gootville/E281.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E282-accidentalQuarterToneSharpStein.xml b/data/Gootville/E282-accidentalQuarterToneSharpStein.xml deleted file mode 100644 index 2d03dc8f0fd..00000000000 --- a/data/Gootville/E282-accidentalQuarterToneSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E282.xml b/data/Gootville/E282.xml new file mode 100644 index 00000000000..4c236db1eba --- /dev/null +++ b/data/Gootville/E282.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E283-accidentalThreeQuarterTonesSharpStein.xml b/data/Gootville/E283-accidentalThreeQuarterTonesSharpStein.xml deleted file mode 100644 index 2817f6302c0..00000000000 --- a/data/Gootville/E283-accidentalThreeQuarterTonesSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E283.xml b/data/Gootville/E283.xml new file mode 100644 index 00000000000..0bb5e90466a --- /dev/null +++ b/data/Gootville/E283.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E440-accidentalBuyukMucennebFlat.xml b/data/Gootville/E440-accidentalBuyukMucennebFlat.xml deleted file mode 100644 index a23ac0f6b52..00000000000 --- a/data/Gootville/E440-accidentalBuyukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E440.xml b/data/Gootville/E440.xml new file mode 100644 index 00000000000..131a0e241f6 --- /dev/null +++ b/data/Gootville/E440.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E441-accidentalKucukMucennebFlat.xml b/data/Gootville/E441-accidentalKucukMucennebFlat.xml deleted file mode 100644 index a3cd5ba934e..00000000000 --- a/data/Gootville/E441-accidentalKucukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E441.xml b/data/Gootville/E441.xml new file mode 100644 index 00000000000..097fbf67cb8 --- /dev/null +++ b/data/Gootville/E441.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E442-accidentalBakiyeFlat.xml b/data/Gootville/E442-accidentalBakiyeFlat.xml deleted file mode 100644 index b8c9c4261f4..00000000000 --- a/data/Gootville/E442-accidentalBakiyeFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E442.xml b/data/Gootville/E442.xml new file mode 100644 index 00000000000..d30f136785e --- /dev/null +++ b/data/Gootville/E442.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E443-accidentalKomaFlat.xml b/data/Gootville/E443-accidentalKomaFlat.xml deleted file mode 100644 index bdd7c6e462d..00000000000 --- a/data/Gootville/E443-accidentalKomaFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E443.xml b/data/Gootville/E443.xml new file mode 100644 index 00000000000..19054ff8c86 --- /dev/null +++ b/data/Gootville/E443.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E444-accidentalKomaSharp.xml b/data/Gootville/E444-accidentalKomaSharp.xml deleted file mode 100644 index 04240b8d4c6..00000000000 --- a/data/Gootville/E444-accidentalKomaSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E444.xml b/data/Gootville/E444.xml new file mode 100644 index 00000000000..71e0ff096e5 --- /dev/null +++ b/data/Gootville/E444.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E445-accidentalBakiyeSharp.xml b/data/Gootville/E445-accidentalBakiyeSharp.xml deleted file mode 100644 index 7309eec8c2e..00000000000 --- a/data/Gootville/E445-accidentalBakiyeSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E445.xml b/data/Gootville/E445.xml new file mode 100644 index 00000000000..1610c948738 --- /dev/null +++ b/data/Gootville/E445.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E446-accidentalKucukMucennebSharp.xml b/data/Gootville/E446-accidentalKucukMucennebSharp.xml deleted file mode 100644 index 955d07fd7c8..00000000000 --- a/data/Gootville/E446-accidentalKucukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E446.xml b/data/Gootville/E446.xml new file mode 100644 index 00000000000..8b6b0bf103b --- /dev/null +++ b/data/Gootville/E446.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E447-accidentalBuyukMucennebSharp.xml b/data/Gootville/E447-accidentalBuyukMucennebSharp.xml deleted file mode 100644 index 5b6c437d7b1..00000000000 --- a/data/Gootville/E447-accidentalBuyukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E447.xml b/data/Gootville/E447.xml new file mode 100644 index 00000000000..5bc793bd0a0 --- /dev/null +++ b/data/Gootville/E447.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A0-articAccentAbove.xml b/data/Gootville/E4A0-articAccentAbove.xml deleted file mode 100644 index 59a79c428ca..00000000000 --- a/data/Gootville/E4A0-articAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A0.xml b/data/Gootville/E4A0.xml new file mode 100644 index 00000000000..e640fd8ff40 --- /dev/null +++ b/data/Gootville/E4A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A1-articAccentBelow.xml b/data/Gootville/E4A1-articAccentBelow.xml deleted file mode 100644 index 1fcc16e6274..00000000000 --- a/data/Gootville/E4A1-articAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A1.xml b/data/Gootville/E4A1.xml new file mode 100644 index 00000000000..b567e7b9a54 --- /dev/null +++ b/data/Gootville/E4A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A2-articStaccatoAbove.xml b/data/Gootville/E4A2-articStaccatoAbove.xml deleted file mode 100644 index e0fd016b270..00000000000 --- a/data/Gootville/E4A2-articStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A2.xml b/data/Gootville/E4A2.xml new file mode 100644 index 00000000000..d05b67a9897 --- /dev/null +++ b/data/Gootville/E4A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A3-articStaccatoBelow.xml b/data/Gootville/E4A3-articStaccatoBelow.xml deleted file mode 100644 index 76225326a2c..00000000000 --- a/data/Gootville/E4A3-articStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A3.xml b/data/Gootville/E4A3.xml new file mode 100644 index 00000000000..c40875ab855 --- /dev/null +++ b/data/Gootville/E4A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A4-articTenutoAbove.xml b/data/Gootville/E4A4-articTenutoAbove.xml deleted file mode 100644 index 266d27975c6..00000000000 --- a/data/Gootville/E4A4-articTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A4.xml b/data/Gootville/E4A4.xml new file mode 100644 index 00000000000..bef5ad6ccde --- /dev/null +++ b/data/Gootville/E4A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A5-articTenutoBelow.xml b/data/Gootville/E4A5-articTenutoBelow.xml deleted file mode 100644 index 898c5dcf753..00000000000 --- a/data/Gootville/E4A5-articTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A5.xml b/data/Gootville/E4A5.xml new file mode 100644 index 00000000000..a0691486086 --- /dev/null +++ b/data/Gootville/E4A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A6-articStaccatissimoAbove.xml b/data/Gootville/E4A6-articStaccatissimoAbove.xml deleted file mode 100644 index 24a5db0ba6f..00000000000 --- a/data/Gootville/E4A6-articStaccatissimoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A6.xml b/data/Gootville/E4A6.xml new file mode 100644 index 00000000000..26f31c21437 --- /dev/null +++ b/data/Gootville/E4A6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A7-articStaccatissimoBelow.xml b/data/Gootville/E4A7-articStaccatissimoBelow.xml deleted file mode 100644 index dc7efb2fc52..00000000000 --- a/data/Gootville/E4A7-articStaccatissimoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A7.xml b/data/Gootville/E4A7.xml new file mode 100644 index 00000000000..5ef4d73d89f --- /dev/null +++ b/data/Gootville/E4A7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A8-articStaccatissimoWedgeAbove.xml b/data/Gootville/E4A8-articStaccatissimoWedgeAbove.xml deleted file mode 100644 index 3b01b1281dc..00000000000 --- a/data/Gootville/E4A8-articStaccatissimoWedgeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A8.xml b/data/Gootville/E4A8.xml new file mode 100644 index 00000000000..20e63ca763e --- /dev/null +++ b/data/Gootville/E4A8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4A9-articStaccatissimoWedgeBelow.xml b/data/Gootville/E4A9-articStaccatissimoWedgeBelow.xml deleted file mode 100644 index fc4fbdbdcfb..00000000000 --- a/data/Gootville/E4A9-articStaccatissimoWedgeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4A9.xml b/data/Gootville/E4A9.xml new file mode 100644 index 00000000000..cfb318f14fe --- /dev/null +++ b/data/Gootville/E4A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4AC-articMarcatoAbove.xml b/data/Gootville/E4AC-articMarcatoAbove.xml deleted file mode 100644 index e38120321a2..00000000000 --- a/data/Gootville/E4AC-articMarcatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4AC.xml b/data/Gootville/E4AC.xml new file mode 100644 index 00000000000..8acf3deeb28 --- /dev/null +++ b/data/Gootville/E4AC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4AD-articMarcatoBelow.xml b/data/Gootville/E4AD-articMarcatoBelow.xml deleted file mode 100644 index b422ff09459..00000000000 --- a/data/Gootville/E4AD-articMarcatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4AD.xml b/data/Gootville/E4AD.xml new file mode 100644 index 00000000000..7915a3f8749 --- /dev/null +++ b/data/Gootville/E4AD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4B2-articTenutoStaccatoAbove.xml b/data/Gootville/E4B2-articTenutoStaccatoAbove.xml deleted file mode 100644 index b976cd35c39..00000000000 --- a/data/Gootville/E4B2-articTenutoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4B2.xml b/data/Gootville/E4B2.xml new file mode 100644 index 00000000000..6dd74043ff2 --- /dev/null +++ b/data/Gootville/E4B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4B3-articTenutoStaccatoBelow.xml b/data/Gootville/E4B3-articTenutoStaccatoBelow.xml deleted file mode 100644 index bd2c7d2bc61..00000000000 --- a/data/Gootville/E4B3-articTenutoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4B3.xml b/data/Gootville/E4B3.xml new file mode 100644 index 00000000000..aa8ce03ed85 --- /dev/null +++ b/data/Gootville/E4B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4B6-articStressAbove.xml b/data/Gootville/E4B6-articStressAbove.xml deleted file mode 100644 index 1fe4d43db98..00000000000 --- a/data/Gootville/E4B6-articStressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4B6.xml b/data/Gootville/E4B6.xml new file mode 100644 index 00000000000..434833a38e4 --- /dev/null +++ b/data/Gootville/E4B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4B7-articStressBelow.xml b/data/Gootville/E4B7-articStressBelow.xml deleted file mode 100644 index 99ebf5be730..00000000000 --- a/data/Gootville/E4B7-articStressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4B7.xml b/data/Gootville/E4B7.xml new file mode 100644 index 00000000000..a03365b75d8 --- /dev/null +++ b/data/Gootville/E4B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C0-fermataAbove.xml b/data/Gootville/E4C0-fermataAbove.xml deleted file mode 100644 index cdcbc93a0ab..00000000000 --- a/data/Gootville/E4C0-fermataAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C0.xml b/data/Gootville/E4C0.xml new file mode 100644 index 00000000000..17459e92c9a --- /dev/null +++ b/data/Gootville/E4C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C1-fermataBelow.xml b/data/Gootville/E4C1-fermataBelow.xml deleted file mode 100644 index e9b281365a5..00000000000 --- a/data/Gootville/E4C1-fermataBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C1.xml b/data/Gootville/E4C1.xml new file mode 100644 index 00000000000..abe34f78544 --- /dev/null +++ b/data/Gootville/E4C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C4-fermataShortAbove.xml b/data/Gootville/E4C4-fermataShortAbove.xml deleted file mode 100644 index 99800d136bb..00000000000 --- a/data/Gootville/E4C4-fermataShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C4.xml b/data/Gootville/E4C4.xml new file mode 100644 index 00000000000..0aa91735f94 --- /dev/null +++ b/data/Gootville/E4C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C5-fermataShortBelow.xml b/data/Gootville/E4C5-fermataShortBelow.xml deleted file mode 100644 index e8341eaa494..00000000000 --- a/data/Gootville/E4C5-fermataShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C5.xml b/data/Gootville/E4C5.xml new file mode 100644 index 00000000000..956aef6cf47 --- /dev/null +++ b/data/Gootville/E4C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C6-fermataLongAbove.xml b/data/Gootville/E4C6-fermataLongAbove.xml deleted file mode 100644 index beaea6ca569..00000000000 --- a/data/Gootville/E4C6-fermataLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C6.xml b/data/Gootville/E4C6.xml new file mode 100644 index 00000000000..84638699206 --- /dev/null +++ b/data/Gootville/E4C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C7-fermataLongBelow.xml b/data/Gootville/E4C7-fermataLongBelow.xml deleted file mode 100644 index 5728013d236..00000000000 --- a/data/Gootville/E4C7-fermataLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C7.xml b/data/Gootville/E4C7.xml new file mode 100644 index 00000000000..51b61b9db3e --- /dev/null +++ b/data/Gootville/E4C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C8-fermataVeryLongAbove.xml b/data/Gootville/E4C8-fermataVeryLongAbove.xml deleted file mode 100644 index 57ecedf7f38..00000000000 --- a/data/Gootville/E4C8-fermataVeryLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C8.xml b/data/Gootville/E4C8.xml new file mode 100644 index 00000000000..d287a438221 --- /dev/null +++ b/data/Gootville/E4C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4C9-fermataVeryLongBelow.xml b/data/Gootville/E4C9-fermataVeryLongBelow.xml deleted file mode 100644 index 77d5d755036..00000000000 --- a/data/Gootville/E4C9-fermataVeryLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4C9.xml b/data/Gootville/E4C9.xml new file mode 100644 index 00000000000..60775a8bdae --- /dev/null +++ b/data/Gootville/E4C9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4CE-breathMarkComma.xml b/data/Gootville/E4CE-breathMarkComma.xml deleted file mode 100644 index 95a8b42a9f4..00000000000 --- a/data/Gootville/E4CE-breathMarkComma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4CE.xml b/data/Gootville/E4CE.xml new file mode 100644 index 00000000000..8553904ee7f --- /dev/null +++ b/data/Gootville/E4CE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E1-restLonga.xml b/data/Gootville/E4E1-restLonga.xml deleted file mode 100644 index 9069c3e0874..00000000000 --- a/data/Gootville/E4E1-restLonga.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E1.xml b/data/Gootville/E4E1.xml new file mode 100644 index 00000000000..c95cf900b13 --- /dev/null +++ b/data/Gootville/E4E1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E2-restDoubleWhole.xml b/data/Gootville/E4E2-restDoubleWhole.xml deleted file mode 100644 index deb9a04a4cd..00000000000 --- a/data/Gootville/E4E2-restDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E2.xml b/data/Gootville/E4E2.xml new file mode 100644 index 00000000000..aa4d0b4a86d --- /dev/null +++ b/data/Gootville/E4E2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E3-restWhole.xml b/data/Gootville/E4E3-restWhole.xml deleted file mode 100644 index a60360819af..00000000000 --- a/data/Gootville/E4E3-restWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E3.xml b/data/Gootville/E4E3.xml new file mode 100644 index 00000000000..b5852fe3d0c --- /dev/null +++ b/data/Gootville/E4E3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E4-restHalf.xml b/data/Gootville/E4E4-restHalf.xml deleted file mode 100644 index d6b53001b15..00000000000 --- a/data/Gootville/E4E4-restHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E4.xml b/data/Gootville/E4E4.xml new file mode 100644 index 00000000000..1b9d00645d2 --- /dev/null +++ b/data/Gootville/E4E4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E5-restQuarter.xml b/data/Gootville/E4E5-restQuarter.xml deleted file mode 100644 index 358fb0d4d09..00000000000 --- a/data/Gootville/E4E5-restQuarter.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E5.xml b/data/Gootville/E4E5.xml new file mode 100644 index 00000000000..a2c165a0201 --- /dev/null +++ b/data/Gootville/E4E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E6-rest8th.xml b/data/Gootville/E4E6-rest8th.xml deleted file mode 100644 index 7a56cd3ac63..00000000000 --- a/data/Gootville/E4E6-rest8th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E6.xml b/data/Gootville/E4E6.xml new file mode 100644 index 00000000000..cd17a97a4f8 --- /dev/null +++ b/data/Gootville/E4E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E7-rest16th.xml b/data/Gootville/E4E7-rest16th.xml deleted file mode 100644 index 6b017f7359d..00000000000 --- a/data/Gootville/E4E7-rest16th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E7.xml b/data/Gootville/E4E7.xml new file mode 100644 index 00000000000..f8c70d4173f --- /dev/null +++ b/data/Gootville/E4E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E8-rest32nd.xml b/data/Gootville/E4E8-rest32nd.xml deleted file mode 100644 index 5e827146645..00000000000 --- a/data/Gootville/E4E8-rest32nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E8.xml b/data/Gootville/E4E8.xml new file mode 100644 index 00000000000..236e4f2b2d9 --- /dev/null +++ b/data/Gootville/E4E8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4E9-rest64th.xml b/data/Gootville/E4E9-rest64th.xml deleted file mode 100644 index db163eae0e1..00000000000 --- a/data/Gootville/E4E9-rest64th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4E9.xml b/data/Gootville/E4E9.xml new file mode 100644 index 00000000000..731239cf08e --- /dev/null +++ b/data/Gootville/E4E9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4EA-rest128th.xml b/data/Gootville/E4EA-rest128th.xml deleted file mode 100644 index 129480e4f79..00000000000 --- a/data/Gootville/E4EA-rest128th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4EA.xml b/data/Gootville/E4EA.xml new file mode 100644 index 00000000000..f3a00c79394 --- /dev/null +++ b/data/Gootville/E4EA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E4F2-restQuarterOld.xml b/data/Gootville/E4F2-restQuarterOld.xml deleted file mode 100644 index 146cf831697..00000000000 --- a/data/Gootville/E4F2-restQuarterOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E4F2.xml b/data/Gootville/E4F2.xml new file mode 100644 index 00000000000..01b834dbad3 --- /dev/null +++ b/data/Gootville/E4F2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E510-ottava.xml b/data/Gootville/E510-ottava.xml deleted file mode 100644 index c08cb606717..00000000000 --- a/data/Gootville/E510-ottava.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E510.xml b/data/Gootville/E510.xml new file mode 100644 index 00000000000..c43e156cb30 --- /dev/null +++ b/data/Gootville/E510.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E514-quindicesima.xml b/data/Gootville/E514-quindicesima.xml deleted file mode 100644 index 21efde12b5c..00000000000 --- a/data/Gootville/E514-quindicesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E514.xml b/data/Gootville/E514.xml new file mode 100644 index 00000000000..6ef354c91f2 --- /dev/null +++ b/data/Gootville/E514.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E517-ventiduesima.xml b/data/Gootville/E517-ventiduesima.xml deleted file mode 100644 index 5f6f31fdb74..00000000000 --- a/data/Gootville/E517-ventiduesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E517.xml b/data/Gootville/E517.xml new file mode 100644 index 00000000000..aa652a8066f --- /dev/null +++ b/data/Gootville/E517.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E51A-octaveParensLeft.xml b/data/Gootville/E51A-octaveParensLeft.xml deleted file mode 100644 index 897e90f1ced..00000000000 --- a/data/Gootville/E51A-octaveParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E51A.xml b/data/Gootville/E51A.xml new file mode 100644 index 00000000000..d46fcf70960 --- /dev/null +++ b/data/Gootville/E51A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E51B-octaveParensRight.xml b/data/Gootville/E51B-octaveParensRight.xml deleted file mode 100644 index bbff1d5ecf7..00000000000 --- a/data/Gootville/E51B-octaveParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E51B.xml b/data/Gootville/E51B.xml new file mode 100644 index 00000000000..adc2b0a8aee --- /dev/null +++ b/data/Gootville/E51B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E520-dynamicPiano.xml b/data/Gootville/E520-dynamicPiano.xml deleted file mode 100644 index f976674cdef..00000000000 --- a/data/Gootville/E520-dynamicPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E520.xml b/data/Gootville/E520.xml new file mode 100644 index 00000000000..83a741659e4 --- /dev/null +++ b/data/Gootville/E520.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E521-dynamicMezzo.xml b/data/Gootville/E521-dynamicMezzo.xml deleted file mode 100644 index d7152d29e2b..00000000000 --- a/data/Gootville/E521-dynamicMezzo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E521.xml b/data/Gootville/E521.xml new file mode 100644 index 00000000000..c78c01609e8 --- /dev/null +++ b/data/Gootville/E521.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E522-dynamicForte.xml b/data/Gootville/E522-dynamicForte.xml deleted file mode 100644 index 6e529d21c9d..00000000000 --- a/data/Gootville/E522-dynamicForte.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E522.xml b/data/Gootville/E522.xml new file mode 100644 index 00000000000..79aa9a9b860 --- /dev/null +++ b/data/Gootville/E522.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E523-dynamicRinforzando.xml b/data/Gootville/E523-dynamicRinforzando.xml deleted file mode 100644 index e136304ac4f..00000000000 --- a/data/Gootville/E523-dynamicRinforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E523.xml b/data/Gootville/E523.xml new file mode 100644 index 00000000000..fd7c826a0e7 --- /dev/null +++ b/data/Gootville/E523.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E524-dynamicSforzando.xml b/data/Gootville/E524-dynamicSforzando.xml deleted file mode 100644 index b29ab4625c5..00000000000 --- a/data/Gootville/E524-dynamicSforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E524.xml b/data/Gootville/E524.xml new file mode 100644 index 00000000000..97459bd450c --- /dev/null +++ b/data/Gootville/E524.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E525-dynamicZ.xml b/data/Gootville/E525-dynamicZ.xml deleted file mode 100644 index faf27040b6d..00000000000 --- a/data/Gootville/E525-dynamicZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E525.xml b/data/Gootville/E525.xml new file mode 100644 index 00000000000..172267d2a95 --- /dev/null +++ b/data/Gootville/E525.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E526-dynamicNiente.xml b/data/Gootville/E526-dynamicNiente.xml deleted file mode 100644 index 28aaaf6c598..00000000000 --- a/data/Gootville/E526-dynamicNiente.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E526.xml b/data/Gootville/E526.xml new file mode 100644 index 00000000000..732e3d0f3cc --- /dev/null +++ b/data/Gootville/E526.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E527-dynamicPPPPPP.xml b/data/Gootville/E527-dynamicPPPPPP.xml deleted file mode 100644 index 99288d85380..00000000000 --- a/data/Gootville/E527-dynamicPPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E527.xml b/data/Gootville/E527.xml new file mode 100644 index 00000000000..70e61b7b609 --- /dev/null +++ b/data/Gootville/E527.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E528-dynamicPPPPP.xml b/data/Gootville/E528-dynamicPPPPP.xml deleted file mode 100644 index 3ea48f9175a..00000000000 --- a/data/Gootville/E528-dynamicPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E528.xml b/data/Gootville/E528.xml new file mode 100644 index 00000000000..486ff01ab59 --- /dev/null +++ b/data/Gootville/E528.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E529-dynamicPPPP.xml b/data/Gootville/E529-dynamicPPPP.xml deleted file mode 100644 index a5a9172eacd..00000000000 --- a/data/Gootville/E529-dynamicPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E529.xml b/data/Gootville/E529.xml new file mode 100644 index 00000000000..f7c27724cfe --- /dev/null +++ b/data/Gootville/E529.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E52A-dynamicPPP.xml b/data/Gootville/E52A-dynamicPPP.xml deleted file mode 100644 index d12e41df2ac..00000000000 --- a/data/Gootville/E52A-dynamicPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E52A.xml b/data/Gootville/E52A.xml new file mode 100644 index 00000000000..90047093b41 --- /dev/null +++ b/data/Gootville/E52A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E52B-dynamicPP.xml b/data/Gootville/E52B-dynamicPP.xml deleted file mode 100644 index 4695ce0742b..00000000000 --- a/data/Gootville/E52B-dynamicPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E52B.xml b/data/Gootville/E52B.xml new file mode 100644 index 00000000000..83cfe851825 --- /dev/null +++ b/data/Gootville/E52B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E52C-dynamicMP.xml b/data/Gootville/E52C-dynamicMP.xml deleted file mode 100644 index d62423a7399..00000000000 --- a/data/Gootville/E52C-dynamicMP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E52C.xml b/data/Gootville/E52C.xml new file mode 100644 index 00000000000..7c7e1df8a41 --- /dev/null +++ b/data/Gootville/E52C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E52D-dynamicMF.xml b/data/Gootville/E52D-dynamicMF.xml deleted file mode 100644 index 5219aa2982a..00000000000 --- a/data/Gootville/E52D-dynamicMF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E52D.xml b/data/Gootville/E52D.xml new file mode 100644 index 00000000000..212fc84895d --- /dev/null +++ b/data/Gootville/E52D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E52E-dynamicPF.xml b/data/Gootville/E52E-dynamicPF.xml deleted file mode 100644 index 66e4c103cda..00000000000 --- a/data/Gootville/E52E-dynamicPF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E52E.xml b/data/Gootville/E52E.xml new file mode 100644 index 00000000000..8c524b9e5aa --- /dev/null +++ b/data/Gootville/E52E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E52F-dynamicFF.xml b/data/Gootville/E52F-dynamicFF.xml deleted file mode 100644 index 9632008cb34..00000000000 --- a/data/Gootville/E52F-dynamicFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E52F.xml b/data/Gootville/E52F.xml new file mode 100644 index 00000000000..5ed701ab470 --- /dev/null +++ b/data/Gootville/E52F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E530-dynamicFFF.xml b/data/Gootville/E530-dynamicFFF.xml deleted file mode 100644 index dd3c702a6e4..00000000000 --- a/data/Gootville/E530-dynamicFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E530.xml b/data/Gootville/E530.xml new file mode 100644 index 00000000000..b9e6179c8b8 --- /dev/null +++ b/data/Gootville/E530.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E531-dynamicFFFF.xml b/data/Gootville/E531-dynamicFFFF.xml deleted file mode 100644 index 0de0e5a1ae3..00000000000 --- a/data/Gootville/E531-dynamicFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E531.xml b/data/Gootville/E531.xml new file mode 100644 index 00000000000..4416b6a4a31 --- /dev/null +++ b/data/Gootville/E531.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E532-dynamicFFFFF.xml b/data/Gootville/E532-dynamicFFFFF.xml deleted file mode 100644 index 3fbd977bc26..00000000000 --- a/data/Gootville/E532-dynamicFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E532.xml b/data/Gootville/E532.xml new file mode 100644 index 00000000000..e1ca7e2450c --- /dev/null +++ b/data/Gootville/E532.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E533-dynamicFFFFFF.xml b/data/Gootville/E533-dynamicFFFFFF.xml deleted file mode 100644 index a26e583740e..00000000000 --- a/data/Gootville/E533-dynamicFFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E533.xml b/data/Gootville/E533.xml new file mode 100644 index 00000000000..1567edef9f5 --- /dev/null +++ b/data/Gootville/E533.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E534-dynamicFortePiano.xml b/data/Gootville/E534-dynamicFortePiano.xml deleted file mode 100644 index 892ee6449ec..00000000000 --- a/data/Gootville/E534-dynamicFortePiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E534.xml b/data/Gootville/E534.xml new file mode 100644 index 00000000000..831d35f024f --- /dev/null +++ b/data/Gootville/E534.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E535-dynamicForzando.xml b/data/Gootville/E535-dynamicForzando.xml deleted file mode 100644 index a55d82d2bf8..00000000000 --- a/data/Gootville/E535-dynamicForzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E535.xml b/data/Gootville/E535.xml new file mode 100644 index 00000000000..17b6dc9a95c --- /dev/null +++ b/data/Gootville/E535.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E536-dynamicSforzando1.xml b/data/Gootville/E536-dynamicSforzando1.xml deleted file mode 100644 index 9234b708d29..00000000000 --- a/data/Gootville/E536-dynamicSforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E536.xml b/data/Gootville/E536.xml new file mode 100644 index 00000000000..3c23cf076e2 --- /dev/null +++ b/data/Gootville/E536.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E537-dynamicSforzandoPiano.xml b/data/Gootville/E537-dynamicSforzandoPiano.xml deleted file mode 100644 index 4aee5df5dab..00000000000 --- a/data/Gootville/E537-dynamicSforzandoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E537.xml b/data/Gootville/E537.xml new file mode 100644 index 00000000000..1f6901fce9b --- /dev/null +++ b/data/Gootville/E537.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E538-dynamicSforzandoPianissimo.xml b/data/Gootville/E538-dynamicSforzandoPianissimo.xml deleted file mode 100644 index d199968bd91..00000000000 --- a/data/Gootville/E538-dynamicSforzandoPianissimo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E538.xml b/data/Gootville/E538.xml new file mode 100644 index 00000000000..fe7d7af14ac --- /dev/null +++ b/data/Gootville/E538.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E539-dynamicSforzato.xml b/data/Gootville/E539-dynamicSforzato.xml deleted file mode 100644 index 25d660ef262..00000000000 --- a/data/Gootville/E539-dynamicSforzato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E539.xml b/data/Gootville/E539.xml new file mode 100644 index 00000000000..eefbaddfe0d --- /dev/null +++ b/data/Gootville/E539.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E53A-dynamicSforzatoPiano.xml b/data/Gootville/E53A-dynamicSforzatoPiano.xml deleted file mode 100644 index 0d7dfaadeb0..00000000000 --- a/data/Gootville/E53A-dynamicSforzatoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E53A.xml b/data/Gootville/E53A.xml new file mode 100644 index 00000000000..d481aa5eabc --- /dev/null +++ b/data/Gootville/E53A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E53B-dynamicSforzatoFF.xml b/data/Gootville/E53B-dynamicSforzatoFF.xml deleted file mode 100644 index cf2ac0ea483..00000000000 --- a/data/Gootville/E53B-dynamicSforzatoFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E53B.xml b/data/Gootville/E53B.xml new file mode 100644 index 00000000000..ff8addeb9cb --- /dev/null +++ b/data/Gootville/E53B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E53C-dynamicRinforzando1.xml b/data/Gootville/E53C-dynamicRinforzando1.xml deleted file mode 100644 index 9c5c8d24edb..00000000000 --- a/data/Gootville/E53C-dynamicRinforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E53C.xml b/data/Gootville/E53C.xml new file mode 100644 index 00000000000..98dc6fd66fd --- /dev/null +++ b/data/Gootville/E53C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E53D-dynamicRinforzando2.xml b/data/Gootville/E53D-dynamicRinforzando2.xml deleted file mode 100644 index db288f60490..00000000000 --- a/data/Gootville/E53D-dynamicRinforzando2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E53D.xml b/data/Gootville/E53D.xml new file mode 100644 index 00000000000..ded5e610873 --- /dev/null +++ b/data/Gootville/E53D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E566-ornamentTrill.xml b/data/Gootville/E566-ornamentTrill.xml deleted file mode 100644 index 4156fe5c0d9..00000000000 --- a/data/Gootville/E566-ornamentTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E566.xml b/data/Gootville/E566.xml new file mode 100644 index 00000000000..603f200704a --- /dev/null +++ b/data/Gootville/E566.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E567-ornamentTurn.xml b/data/Gootville/E567-ornamentTurn.xml deleted file mode 100644 index eb7ba7652dd..00000000000 --- a/data/Gootville/E567-ornamentTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E567.xml b/data/Gootville/E567.xml new file mode 100644 index 00000000000..78e5c88d4c2 --- /dev/null +++ b/data/Gootville/E567.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E568-ornamentTurnInverted.xml b/data/Gootville/E568-ornamentTurnInverted.xml deleted file mode 100644 index 8cdebf2b170..00000000000 --- a/data/Gootville/E568-ornamentTurnInverted.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E568.xml b/data/Gootville/E568.xml new file mode 100644 index 00000000000..d01be9c0e09 --- /dev/null +++ b/data/Gootville/E568.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E569-ornamentTurnSlash.xml b/data/Gootville/E569-ornamentTurnSlash.xml deleted file mode 100644 index f52c781c901..00000000000 --- a/data/Gootville/E569-ornamentTurnSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E569.xml b/data/Gootville/E569.xml new file mode 100644 index 00000000000..184917285a4 --- /dev/null +++ b/data/Gootville/E569.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E56C-ornamentShortTrill.xml b/data/Gootville/E56C-ornamentShortTrill.xml deleted file mode 100644 index f36d40b5303..00000000000 --- a/data/Gootville/E56C-ornamentShortTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E56C.xml b/data/Gootville/E56C.xml new file mode 100644 index 00000000000..e7ca005c45f --- /dev/null +++ b/data/Gootville/E56C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E56D-ornamentMordent.xml b/data/Gootville/E56D-ornamentMordent.xml deleted file mode 100644 index 18c937e2bd1..00000000000 --- a/data/Gootville/E56D-ornamentMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E56D.xml b/data/Gootville/E56D.xml new file mode 100644 index 00000000000..b613b750868 --- /dev/null +++ b/data/Gootville/E56D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E56E-ornamentTremblement.xml b/data/Gootville/E56E-ornamentTremblement.xml deleted file mode 100644 index bb1684c3329..00000000000 --- a/data/Gootville/E56E-ornamentTremblement.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E56E.xml b/data/Gootville/E56E.xml new file mode 100644 index 00000000000..d408a42a35d --- /dev/null +++ b/data/Gootville/E56E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E59D-ornamentZigZagLineNoRightEnd.xml b/data/Gootville/E59D-ornamentZigZagLineNoRightEnd.xml deleted file mode 100644 index 83e954676ea..00000000000 --- a/data/Gootville/E59D-ornamentZigZagLineNoRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E59D.xml b/data/Gootville/E59D.xml new file mode 100644 index 00000000000..65e5ba150b7 --- /dev/null +++ b/data/Gootville/E59D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E59E-ornamentZigZagLineWithRightEnd.xml b/data/Gootville/E59E-ornamentZigZagLineWithRightEnd.xml deleted file mode 100644 index 20ee5452c39..00000000000 --- a/data/Gootville/E59E-ornamentZigZagLineWithRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E59E.xml b/data/Gootville/E59E.xml new file mode 100644 index 00000000000..36df459c5d6 --- /dev/null +++ b/data/Gootville/E59E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E5B0-ornamentPrecompSlide.xml b/data/Gootville/E5B0-ornamentPrecompSlide.xml deleted file mode 100644 index a2e149fdbe7..00000000000 --- a/data/Gootville/E5B0-ornamentPrecompSlide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E5B0.xml b/data/Gootville/E5B0.xml new file mode 100644 index 00000000000..956ed913eaa --- /dev/null +++ b/data/Gootville/E5B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E5E5-brassMuteClosed.xml b/data/Gootville/E5E5-brassMuteClosed.xml deleted file mode 100644 index 110985795ec..00000000000 --- a/data/Gootville/E5E5-brassMuteClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E5E5.xml b/data/Gootville/E5E5.xml new file mode 100644 index 00000000000..7b21095c006 --- /dev/null +++ b/data/Gootville/E5E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E5E7-brassMuteOpen.xml b/data/Gootville/E5E7-brassMuteOpen.xml deleted file mode 100644 index 06a40662978..00000000000 --- a/data/Gootville/E5E7-brassMuteOpen.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E5E7.xml b/data/Gootville/E5E7.xml new file mode 100644 index 00000000000..f71d555a08d --- /dev/null +++ b/data/Gootville/E5E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E610-stringsDownBow.xml b/data/Gootville/E610-stringsDownBow.xml deleted file mode 100644 index 5a2b6e23ddb..00000000000 --- a/data/Gootville/E610-stringsDownBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E610.xml b/data/Gootville/E610.xml new file mode 100644 index 00000000000..2196d0319dd --- /dev/null +++ b/data/Gootville/E610.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E611-stringsDownBowTurned.xml b/data/Gootville/E611-stringsDownBowTurned.xml deleted file mode 100644 index b447a88bf6a..00000000000 --- a/data/Gootville/E611-stringsDownBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E611.xml b/data/Gootville/E611.xml new file mode 100644 index 00000000000..467a379c20d --- /dev/null +++ b/data/Gootville/E611.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E612-stringsUpBow.xml b/data/Gootville/E612-stringsUpBow.xml deleted file mode 100644 index fcec6a4291d..00000000000 --- a/data/Gootville/E612-stringsUpBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E612.xml b/data/Gootville/E612.xml new file mode 100644 index 00000000000..44ffa3a7b1b --- /dev/null +++ b/data/Gootville/E612.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E613-stringsUpBowTurned.xml b/data/Gootville/E613-stringsUpBowTurned.xml deleted file mode 100644 index f392140254e..00000000000 --- a/data/Gootville/E613-stringsUpBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E613.xml b/data/Gootville/E613.xml new file mode 100644 index 00000000000..db4dc1a7be5 --- /dev/null +++ b/data/Gootville/E613.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E630-pluckedSnapPizzicatoBelow.xml b/data/Gootville/E630-pluckedSnapPizzicatoBelow.xml deleted file mode 100644 index b8b44df73b1..00000000000 --- a/data/Gootville/E630-pluckedSnapPizzicatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E630.xml b/data/Gootville/E630.xml new file mode 100644 index 00000000000..23a56972412 --- /dev/null +++ b/data/Gootville/E630.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E631-pluckedSnapPizzicatoAbove.xml b/data/Gootville/E631-pluckedSnapPizzicatoAbove.xml deleted file mode 100644 index 6ab618bf70e..00000000000 --- a/data/Gootville/E631-pluckedSnapPizzicatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E631.xml b/data/Gootville/E631.xml new file mode 100644 index 00000000000..515dde09c17 --- /dev/null +++ b/data/Gootville/E631.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E650-keyboardPedalPed.xml b/data/Gootville/E650-keyboardPedalPed.xml deleted file mode 100644 index 95c9e92ae2c..00000000000 --- a/data/Gootville/E650-keyboardPedalPed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E650.xml b/data/Gootville/E650.xml new file mode 100644 index 00000000000..1c05bdba0fe --- /dev/null +++ b/data/Gootville/E650.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E651-keyboardPedalP.xml b/data/Gootville/E651-keyboardPedalP.xml deleted file mode 100644 index 8b0e79d3d6f..00000000000 --- a/data/Gootville/E651-keyboardPedalP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E651.xml b/data/Gootville/E651.xml new file mode 100644 index 00000000000..1ed81aae9ff --- /dev/null +++ b/data/Gootville/E651.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/E655-keyboardPedalUp.xml b/data/Gootville/E655-keyboardPedalUp.xml deleted file mode 100644 index bec9b49e739..00000000000 --- a/data/Gootville/E655-keyboardPedalUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/E655.xml b/data/Gootville/E655.xml new file mode 100644 index 00000000000..39b0948ab2d --- /dev/null +++ b/data/Gootville/E655.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/EAA4-wiggleTrill.xml b/data/Gootville/EAA4-wiggleTrill.xml deleted file mode 100644 index ca23b18113f..00000000000 --- a/data/Gootville/EAA4-wiggleTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/EAA4.xml b/data/Gootville/EAA4.xml new file mode 100644 index 00000000000..587642a89f9 --- /dev/null +++ b/data/Gootville/EAA4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/EAA9-wiggleArpeggiatoUp.xml b/data/Gootville/EAA9-wiggleArpeggiatoUp.xml deleted file mode 100644 index 4b9fca28bf2..00000000000 --- a/data/Gootville/EAA9-wiggleArpeggiatoUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/EAA9.xml b/data/Gootville/EAA9.xml new file mode 100644 index 00000000000..3065aac02a0 --- /dev/null +++ b/data/Gootville/EAA9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/EAAA-wiggleArpeggiatoDown.xml b/data/Gootville/EAAA-wiggleArpeggiatoDown.xml deleted file mode 100644 index 65dadda1d3f..00000000000 --- a/data/Gootville/EAAA-wiggleArpeggiatoDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/EAAA.xml b/data/Gootville/EAAA.xml new file mode 100644 index 00000000000..90e2e61bbc0 --- /dev/null +++ b/data/Gootville/EAAA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/EAAD-wiggleArpeggiatoUpArrow.xml b/data/Gootville/EAAD-wiggleArpeggiatoUpArrow.xml deleted file mode 100644 index 3d5469db3d9..00000000000 --- a/data/Gootville/EAAD-wiggleArpeggiatoUpArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/EAAD.xml b/data/Gootville/EAAD.xml new file mode 100644 index 00000000000..6f4e8397b32 --- /dev/null +++ b/data/Gootville/EAAD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/EAAE-wiggleArpeggiatoDownArrow.xml b/data/Gootville/EAAE-wiggleArpeggiatoDownArrow.xml deleted file mode 100644 index 9c3b4238cdf..00000000000 --- a/data/Gootville/EAAE-wiggleArpeggiatoDownArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/EAAE.xml b/data/Gootville/EAAE.xml new file mode 100644 index 00000000000..7960934c408 --- /dev/null +++ b/data/Gootville/EAAE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Gootville/EAAF-wiggleGlissando.xml b/data/Gootville/EAAF-wiggleGlissando.xml deleted file mode 100644 index 482f9a26ac4..00000000000 --- a/data/Gootville/EAAF-wiggleGlissando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Gootville/EAAF.xml b/data/Gootville/EAAF.xml new file mode 100644 index 00000000000..68b65585961 --- /dev/null +++ b/data/Gootville/EAAF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig.xml b/data/Leipzig.xml index 6833f973d3b..a6d9653ce81 100644 --- a/data/Leipzig.xml +++ b/data/Leipzig.xml @@ -1,569 +1,574 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/Leipzig/E000-brace.xml b/data/Leipzig/E000-brace.xml deleted file mode 100644 index d561b41803c..00000000000 --- a/data/Leipzig/E000-brace.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E000.xml b/data/Leipzig/E000.xml new file mode 100644 index 00000000000..ee40a4ae68d --- /dev/null +++ b/data/Leipzig/E000.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E003-bracketTop.xml b/data/Leipzig/E003-bracketTop.xml deleted file mode 100644 index d82c1d1c3b7..00000000000 --- a/data/Leipzig/E003-bracketTop.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E003.xml b/data/Leipzig/E003.xml new file mode 100644 index 00000000000..dc4dbf6884c --- /dev/null +++ b/data/Leipzig/E003.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E004-bracketBottom.xml b/data/Leipzig/E004-bracketBottom.xml deleted file mode 100644 index d1e019016af..00000000000 --- a/data/Leipzig/E004-bracketBottom.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E004.xml b/data/Leipzig/E004.xml new file mode 100644 index 00000000000..71e60f26f7a --- /dev/null +++ b/data/Leipzig/E004.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E043-repeatDots.xml b/data/Leipzig/E043-repeatDots.xml deleted file mode 100644 index 02d0492fbef..00000000000 --- a/data/Leipzig/E043-repeatDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E043.xml b/data/Leipzig/E043.xml new file mode 100644 index 00000000000..79f1d041760 --- /dev/null +++ b/data/Leipzig/E043.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E044-repeatDot.xml b/data/Leipzig/E044-repeatDot.xml deleted file mode 100644 index 0c439154146..00000000000 --- a/data/Leipzig/E044-repeatDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E044.xml b/data/Leipzig/E044.xml new file mode 100644 index 00000000000..121d29419e2 --- /dev/null +++ b/data/Leipzig/E044.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E045-dalSegno.xml b/data/Leipzig/E045-dalSegno.xml deleted file mode 100644 index 3072c82ef04..00000000000 --- a/data/Leipzig/E045-dalSegno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E045.xml b/data/Leipzig/E045.xml new file mode 100644 index 00000000000..a79e7c8a8f1 --- /dev/null +++ b/data/Leipzig/E045.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E046-daCapo.xml b/data/Leipzig/E046-daCapo.xml deleted file mode 100644 index 04fb76adc5b..00000000000 --- a/data/Leipzig/E046-daCapo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E046.xml b/data/Leipzig/E046.xml new file mode 100644 index 00000000000..ebc8855f58d --- /dev/null +++ b/data/Leipzig/E046.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E047-segno.xml b/data/Leipzig/E047-segno.xml deleted file mode 100644 index d0570b4e705..00000000000 --- a/data/Leipzig/E047-segno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E047.xml b/data/Leipzig/E047.xml new file mode 100644 index 00000000000..fc521039882 --- /dev/null +++ b/data/Leipzig/E047.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E048-coda.xml b/data/Leipzig/E048-coda.xml deleted file mode 100644 index 556b420171f..00000000000 --- a/data/Leipzig/E048-coda.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E048.xml b/data/Leipzig/E048.xml new file mode 100644 index 00000000000..c61b6768fbe --- /dev/null +++ b/data/Leipzig/E048.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E049-codaSquare.xml b/data/Leipzig/E049-codaSquare.xml deleted file mode 100644 index 943738ef7e2..00000000000 --- a/data/Leipzig/E049-codaSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E049.xml b/data/Leipzig/E049.xml new file mode 100644 index 00000000000..903eb9ff943 --- /dev/null +++ b/data/Leipzig/E049.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E04B-segnoSerpent2.xml b/data/Leipzig/E04B-segnoSerpent2.xml deleted file mode 100644 index e9327f22306..00000000000 --- a/data/Leipzig/E04B-segnoSerpent2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E04B.xml b/data/Leipzig/E04B.xml new file mode 100644 index 00000000000..75a91435d82 --- /dev/null +++ b/data/Leipzig/E04B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E050-gClef.xml b/data/Leipzig/E050-gClef.xml deleted file mode 100644 index 10d5248a61c..00000000000 --- a/data/Leipzig/E050-gClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E050.xml b/data/Leipzig/E050.xml new file mode 100644 index 00000000000..bb907603b16 --- /dev/null +++ b/data/Leipzig/E050.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E051-gClef15mb.xml b/data/Leipzig/E051-gClef15mb.xml deleted file mode 100644 index bc706ee17b9..00000000000 --- a/data/Leipzig/E051-gClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E051.xml b/data/Leipzig/E051.xml new file mode 100644 index 00000000000..0840721dc59 --- /dev/null +++ b/data/Leipzig/E051.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E052-gClef8vb.xml b/data/Leipzig/E052-gClef8vb.xml deleted file mode 100644 index d1f2a9bcd9b..00000000000 --- a/data/Leipzig/E052-gClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E052.xml b/data/Leipzig/E052.xml new file mode 100644 index 00000000000..2326ab611b1 --- /dev/null +++ b/data/Leipzig/E052.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E053-gClef8va.xml b/data/Leipzig/E053-gClef8va.xml deleted file mode 100644 index 89397ec048b..00000000000 --- a/data/Leipzig/E053-gClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E053.xml b/data/Leipzig/E053.xml new file mode 100644 index 00000000000..476ff3fb759 --- /dev/null +++ b/data/Leipzig/E053.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E054-gClef15ma.xml b/data/Leipzig/E054-gClef15ma.xml deleted file mode 100644 index 1774e8192d2..00000000000 --- a/data/Leipzig/E054-gClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E054.xml b/data/Leipzig/E054.xml new file mode 100644 index 00000000000..a0c7623782e --- /dev/null +++ b/data/Leipzig/E054.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E055-gClef8vbOld.xml b/data/Leipzig/E055-gClef8vbOld.xml deleted file mode 100644 index 36acad0a37b..00000000000 --- a/data/Leipzig/E055-gClef8vbOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E055.xml b/data/Leipzig/E055.xml new file mode 100644 index 00000000000..79329dca733 --- /dev/null +++ b/data/Leipzig/E055.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E056-gClef8vbCClef.xml b/data/Leipzig/E056-gClef8vbCClef.xml deleted file mode 100644 index 58a9eefe075..00000000000 --- a/data/Leipzig/E056-gClef8vbCClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E056.xml b/data/Leipzig/E056.xml new file mode 100644 index 00000000000..153bb8ca5e9 --- /dev/null +++ b/data/Leipzig/E056.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E05C-cClef.xml b/data/Leipzig/E05C-cClef.xml deleted file mode 100644 index 908bc1c6e44..00000000000 --- a/data/Leipzig/E05C-cClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E05C.xml b/data/Leipzig/E05C.xml new file mode 100644 index 00000000000..986961f4fd9 --- /dev/null +++ b/data/Leipzig/E05C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E05D-cClef8vb.xml b/data/Leipzig/E05D-cClef8vb.xml deleted file mode 100644 index 1ee4dc8b946..00000000000 --- a/data/Leipzig/E05D-cClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E05D.xml b/data/Leipzig/E05D.xml new file mode 100644 index 00000000000..b52dc253acc --- /dev/null +++ b/data/Leipzig/E05D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E062-fClef.xml b/data/Leipzig/E062-fClef.xml deleted file mode 100644 index 9ccc956cb30..00000000000 --- a/data/Leipzig/E062-fClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E062.xml b/data/Leipzig/E062.xml new file mode 100644 index 00000000000..e1c6fa6e59c --- /dev/null +++ b/data/Leipzig/E062.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E063-fClef15mb.xml b/data/Leipzig/E063-fClef15mb.xml deleted file mode 100644 index 6b17453a41c..00000000000 --- a/data/Leipzig/E063-fClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E063.xml b/data/Leipzig/E063.xml new file mode 100644 index 00000000000..cfcd744ef03 --- /dev/null +++ b/data/Leipzig/E063.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E064-fClef8vb.xml b/data/Leipzig/E064-fClef8vb.xml deleted file mode 100644 index fd12e856955..00000000000 --- a/data/Leipzig/E064-fClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E064.xml b/data/Leipzig/E064.xml new file mode 100644 index 00000000000..7919efed85f --- /dev/null +++ b/data/Leipzig/E064.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E065-fClef8va.xml b/data/Leipzig/E065-fClef8va.xml deleted file mode 100644 index e36533a3555..00000000000 --- a/data/Leipzig/E065-fClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E065.xml b/data/Leipzig/E065.xml new file mode 100644 index 00000000000..c2279647ac0 --- /dev/null +++ b/data/Leipzig/E065.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E066-fClef15ma.xml b/data/Leipzig/E066-fClef15ma.xml deleted file mode 100644 index 606970a24d6..00000000000 --- a/data/Leipzig/E066-fClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E066.xml b/data/Leipzig/E066.xml new file mode 100644 index 00000000000..fcbc1a6820b --- /dev/null +++ b/data/Leipzig/E066.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E069-unpitchedPercussionClef1.xml b/data/Leipzig/E069-unpitchedPercussionClef1.xml deleted file mode 100644 index b391060e5eb..00000000000 --- a/data/Leipzig/E069-unpitchedPercussionClef1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E069.xml b/data/Leipzig/E069.xml new file mode 100644 index 00000000000..28ee32250ef --- /dev/null +++ b/data/Leipzig/E069.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E06A-unpitchedPercussionClef2.xml b/data/Leipzig/E06A-unpitchedPercussionClef2.xml deleted file mode 100644 index 9d373fbb1a0..00000000000 --- a/data/Leipzig/E06A-unpitchedPercussionClef2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E06A.xml b/data/Leipzig/E06A.xml new file mode 100644 index 00000000000..0ead9c5cf05 --- /dev/null +++ b/data/Leipzig/E06A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E06D.xml b/data/Leipzig/E06D.xml new file mode 100644 index 00000000000..39d9e680d6f --- /dev/null +++ b/data/Leipzig/E06D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E06E.xml b/data/Leipzig/E06E.xml new file mode 100644 index 00000000000..4e61f9560de --- /dev/null +++ b/data/Leipzig/E06E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E073-gClefReversed.xml b/data/Leipzig/E073-gClefReversed.xml deleted file mode 100644 index 92790ce14f3..00000000000 --- a/data/Leipzig/E073-gClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E073.xml b/data/Leipzig/E073.xml new file mode 100644 index 00000000000..dfd821b83e4 --- /dev/null +++ b/data/Leipzig/E073.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E074-gClefTurned.xml b/data/Leipzig/E074-gClefTurned.xml deleted file mode 100644 index 47fa348c661..00000000000 --- a/data/Leipzig/E074-gClefTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E074.xml b/data/Leipzig/E074.xml new file mode 100644 index 00000000000..c839fc17c58 --- /dev/null +++ b/data/Leipzig/E074.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E075-cClefReversed.xml b/data/Leipzig/E075-cClefReversed.xml deleted file mode 100644 index 619b3a6a151..00000000000 --- a/data/Leipzig/E075-cClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E075.xml b/data/Leipzig/E075.xml new file mode 100644 index 00000000000..6b6de9e38cb --- /dev/null +++ b/data/Leipzig/E075.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E076-fClefReversed.xml b/data/Leipzig/E076-fClefReversed.xml deleted file mode 100644 index dd735e8cc9a..00000000000 --- a/data/Leipzig/E076-fClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E076.xml b/data/Leipzig/E076.xml new file mode 100644 index 00000000000..febfd9bfb21 --- /dev/null +++ b/data/Leipzig/E076.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E077-fClefTurned.xml b/data/Leipzig/E077-fClefTurned.xml deleted file mode 100644 index 15b04ea14a9..00000000000 --- a/data/Leipzig/E077-fClefTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E077.xml b/data/Leipzig/E077.xml new file mode 100644 index 00000000000..39e2d82724f --- /dev/null +++ b/data/Leipzig/E077.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E080-timeSig0.xml b/data/Leipzig/E080-timeSig0.xml deleted file mode 100644 index df277e4fee9..00000000000 --- a/data/Leipzig/E080-timeSig0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E080.xml b/data/Leipzig/E080.xml new file mode 100644 index 00000000000..774c04eaa40 --- /dev/null +++ b/data/Leipzig/E080.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E081-timeSig1.xml b/data/Leipzig/E081-timeSig1.xml deleted file mode 100644 index c3a29ecfaea..00000000000 --- a/data/Leipzig/E081-timeSig1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E081.xml b/data/Leipzig/E081.xml new file mode 100644 index 00000000000..e8ef10b512a --- /dev/null +++ b/data/Leipzig/E081.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E082-timeSig2.xml b/data/Leipzig/E082-timeSig2.xml deleted file mode 100644 index eb2c911a00e..00000000000 --- a/data/Leipzig/E082-timeSig2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E082.xml b/data/Leipzig/E082.xml new file mode 100644 index 00000000000..c5831005195 --- /dev/null +++ b/data/Leipzig/E082.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E083-timeSig3.xml b/data/Leipzig/E083-timeSig3.xml deleted file mode 100644 index b882754c809..00000000000 --- a/data/Leipzig/E083-timeSig3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E083.xml b/data/Leipzig/E083.xml new file mode 100644 index 00000000000..851a0b47c86 --- /dev/null +++ b/data/Leipzig/E083.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E084-timeSig4.xml b/data/Leipzig/E084-timeSig4.xml deleted file mode 100644 index 11b63c182a8..00000000000 --- a/data/Leipzig/E084-timeSig4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E084.xml b/data/Leipzig/E084.xml new file mode 100644 index 00000000000..87926416c61 --- /dev/null +++ b/data/Leipzig/E084.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E085-timeSig5.xml b/data/Leipzig/E085-timeSig5.xml deleted file mode 100644 index 70182d50740..00000000000 --- a/data/Leipzig/E085-timeSig5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E085.xml b/data/Leipzig/E085.xml new file mode 100644 index 00000000000..6d54d5adf44 --- /dev/null +++ b/data/Leipzig/E085.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E086-timeSig6.xml b/data/Leipzig/E086-timeSig6.xml deleted file mode 100644 index e5c77c5c360..00000000000 --- a/data/Leipzig/E086-timeSig6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E086.xml b/data/Leipzig/E086.xml new file mode 100644 index 00000000000..b42ea710a86 --- /dev/null +++ b/data/Leipzig/E086.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E087-timeSig7.xml b/data/Leipzig/E087-timeSig7.xml deleted file mode 100644 index 182a2898b7f..00000000000 --- a/data/Leipzig/E087-timeSig7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E087.xml b/data/Leipzig/E087.xml new file mode 100644 index 00000000000..d82df2b1842 --- /dev/null +++ b/data/Leipzig/E087.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E088-timeSig8.xml b/data/Leipzig/E088-timeSig8.xml deleted file mode 100644 index 1a0cf0e343e..00000000000 --- a/data/Leipzig/E088-timeSig8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E088.xml b/data/Leipzig/E088.xml new file mode 100644 index 00000000000..1d39c75d726 --- /dev/null +++ b/data/Leipzig/E088.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E089-timeSig9.xml b/data/Leipzig/E089-timeSig9.xml deleted file mode 100644 index daccf9ff50f..00000000000 --- a/data/Leipzig/E089-timeSig9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E089.xml b/data/Leipzig/E089.xml new file mode 100644 index 00000000000..28c912f02f6 --- /dev/null +++ b/data/Leipzig/E089.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E08A-timeSigCommon.xml b/data/Leipzig/E08A-timeSigCommon.xml deleted file mode 100644 index 341d84baa73..00000000000 --- a/data/Leipzig/E08A-timeSigCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E08A.xml b/data/Leipzig/E08A.xml new file mode 100644 index 00000000000..e95bfbb8581 --- /dev/null +++ b/data/Leipzig/E08A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E08B-timeSigCutCommon.xml b/data/Leipzig/E08B-timeSigCutCommon.xml deleted file mode 100644 index c542cf8903d..00000000000 --- a/data/Leipzig/E08B-timeSigCutCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E08B.xml b/data/Leipzig/E08B.xml new file mode 100644 index 00000000000..c80af29e36d --- /dev/null +++ b/data/Leipzig/E08B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E08C-timeSigPlus.xml b/data/Leipzig/E08C-timeSigPlus.xml deleted file mode 100644 index fc5ee4e7bf7..00000000000 --- a/data/Leipzig/E08C-timeSigPlus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E08C.xml b/data/Leipzig/E08C.xml new file mode 100644 index 00000000000..c2d064af7fd --- /dev/null +++ b/data/Leipzig/E08C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E08D-timeSigPlusSmall.xml b/data/Leipzig/E08D-timeSigPlusSmall.xml deleted file mode 100644 index bdc63925d15..00000000000 --- a/data/Leipzig/E08D-timeSigPlusSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E08D.xml b/data/Leipzig/E08D.xml new file mode 100644 index 00000000000..2dca98389ea --- /dev/null +++ b/data/Leipzig/E08D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E08E-timeSigFractionalSlash.xml b/data/Leipzig/E08E-timeSigFractionalSlash.xml deleted file mode 100644 index cf4e5c2447d..00000000000 --- a/data/Leipzig/E08E-timeSigFractionalSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E08E.xml b/data/Leipzig/E08E.xml new file mode 100644 index 00000000000..d009f9f1d37 --- /dev/null +++ b/data/Leipzig/E08E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E08F-timeSigEquals.xml b/data/Leipzig/E08F-timeSigEquals.xml deleted file mode 100644 index ced9691dd9b..00000000000 --- a/data/Leipzig/E08F-timeSigEquals.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E08F.xml b/data/Leipzig/E08F.xml new file mode 100644 index 00000000000..95a1b7cad89 --- /dev/null +++ b/data/Leipzig/E08F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E090-timeSigMinus.xml b/data/Leipzig/E090-timeSigMinus.xml deleted file mode 100644 index d0efad75833..00000000000 --- a/data/Leipzig/E090-timeSigMinus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E090.xml b/data/Leipzig/E090.xml new file mode 100644 index 00000000000..980d6781f2d --- /dev/null +++ b/data/Leipzig/E090.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E091-timeSigMultiply.xml b/data/Leipzig/E091-timeSigMultiply.xml deleted file mode 100644 index 4d1067e75b5..00000000000 --- a/data/Leipzig/E091-timeSigMultiply.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E091.xml b/data/Leipzig/E091.xml new file mode 100644 index 00000000000..b4dd0f04217 --- /dev/null +++ b/data/Leipzig/E091.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E092-timeSigParensLeftSmall.xml b/data/Leipzig/E092-timeSigParensLeftSmall.xml deleted file mode 100644 index 916cde11d42..00000000000 --- a/data/Leipzig/E092-timeSigParensLeftSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E092.xml b/data/Leipzig/E092.xml new file mode 100644 index 00000000000..850beb5c617 --- /dev/null +++ b/data/Leipzig/E092.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E093-timeSigParensRightSmall.xml b/data/Leipzig/E093-timeSigParensRightSmall.xml deleted file mode 100644 index 1635c8efd12..00000000000 --- a/data/Leipzig/E093-timeSigParensRightSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E093.xml b/data/Leipzig/E093.xml new file mode 100644 index 00000000000..e96fb38e7d3 --- /dev/null +++ b/data/Leipzig/E093.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E094-timeSigParensLeft.xml b/data/Leipzig/E094-timeSigParensLeft.xml deleted file mode 100644 index 7d33b31e2ae..00000000000 --- a/data/Leipzig/E094-timeSigParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E094.xml b/data/Leipzig/E094.xml new file mode 100644 index 00000000000..c4f34ebfee5 --- /dev/null +++ b/data/Leipzig/E094.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E095-timeSigParensRight.xml b/data/Leipzig/E095-timeSigParensRight.xml deleted file mode 100644 index 77062ef6137..00000000000 --- a/data/Leipzig/E095-timeSigParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E095.xml b/data/Leipzig/E095.xml new file mode 100644 index 00000000000..181540122be --- /dev/null +++ b/data/Leipzig/E095.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0A0-noteheadDoubleWhole.xml b/data/Leipzig/E0A0-noteheadDoubleWhole.xml deleted file mode 100644 index 4bbba567745..00000000000 --- a/data/Leipzig/E0A0-noteheadDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0A0.xml b/data/Leipzig/E0A0.xml new file mode 100644 index 00000000000..46709993076 --- /dev/null +++ b/data/Leipzig/E0A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0A1-noteheadDoubleWholeSquare.xml b/data/Leipzig/E0A1-noteheadDoubleWholeSquare.xml deleted file mode 100644 index 598c3329296..00000000000 --- a/data/Leipzig/E0A1-noteheadDoubleWholeSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0A1.xml b/data/Leipzig/E0A1.xml new file mode 100644 index 00000000000..ed1202288a2 --- /dev/null +++ b/data/Leipzig/E0A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0A2-noteheadWhole.xml b/data/Leipzig/E0A2-noteheadWhole.xml deleted file mode 100644 index 67327161079..00000000000 --- a/data/Leipzig/E0A2-noteheadWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0A2.xml b/data/Leipzig/E0A2.xml new file mode 100644 index 00000000000..ee3a553f18f --- /dev/null +++ b/data/Leipzig/E0A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0A3-noteheadHalf.xml b/data/Leipzig/E0A3-noteheadHalf.xml deleted file mode 100644 index 1ae9fd4f5ca..00000000000 --- a/data/Leipzig/E0A3-noteheadHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0A3.xml b/data/Leipzig/E0A3.xml new file mode 100644 index 00000000000..b35092c3d85 --- /dev/null +++ b/data/Leipzig/E0A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0A4-noteheadBlack.xml b/data/Leipzig/E0A4-noteheadBlack.xml deleted file mode 100644 index e0640dff15e..00000000000 --- a/data/Leipzig/E0A4-noteheadBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0A4.xml b/data/Leipzig/E0A4.xml new file mode 100644 index 00000000000..766e14b63ad --- /dev/null +++ b/data/Leipzig/E0A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0A5-noteheadNull.xml b/data/Leipzig/E0A5-noteheadNull.xml deleted file mode 100644 index 1445fb5f59a..00000000000 --- a/data/Leipzig/E0A5-noteheadNull.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0A5.xml b/data/Leipzig/E0A5.xml new file mode 100644 index 00000000000..d4eec1c1f60 --- /dev/null +++ b/data/Leipzig/E0A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0A9-noteheadXBlack.xml b/data/Leipzig/E0A9-noteheadXBlack.xml deleted file mode 100644 index 552d775249b..00000000000 --- a/data/Leipzig/E0A9-noteheadXBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0A9.xml b/data/Leipzig/E0A9.xml new file mode 100644 index 00000000000..6ec70417a2f --- /dev/null +++ b/data/Leipzig/E0A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0AF-noteheadPlusBlack.xml b/data/Leipzig/E0AF-noteheadPlusBlack.xml deleted file mode 100644 index 87eb34f9606..00000000000 --- a/data/Leipzig/E0AF-noteheadPlusBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0AF.xml b/data/Leipzig/E0AF.xml new file mode 100644 index 00000000000..4451f39844a --- /dev/null +++ b/data/Leipzig/E0AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0B5-noteheadWholeWithX.xml b/data/Leipzig/E0B5-noteheadWholeWithX.xml deleted file mode 100644 index c0b12a05ece..00000000000 --- a/data/Leipzig/E0B5-noteheadWholeWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0B5.xml b/data/Leipzig/E0B5.xml new file mode 100644 index 00000000000..67cb3abdd4f --- /dev/null +++ b/data/Leipzig/E0B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0B6-noteheadHalfWithX.xml b/data/Leipzig/E0B6-noteheadHalfWithX.xml deleted file mode 100644 index 8554af1a77b..00000000000 --- a/data/Leipzig/E0B6-noteheadHalfWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0B6.xml b/data/Leipzig/E0B6.xml new file mode 100644 index 00000000000..dc399f97c5d --- /dev/null +++ b/data/Leipzig/E0B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0B7-noteheadVoidWithX.xml b/data/Leipzig/E0B7-noteheadVoidWithX.xml deleted file mode 100644 index c9df6ecb264..00000000000 --- a/data/Leipzig/E0B7-noteheadVoidWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0B7.xml b/data/Leipzig/E0B7.xml new file mode 100644 index 00000000000..734dd9fa23e --- /dev/null +++ b/data/Leipzig/E0B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0D9-noteheadDiamondHalf.xml b/data/Leipzig/E0D9-noteheadDiamondHalf.xml deleted file mode 100644 index f82d553032d..00000000000 --- a/data/Leipzig/E0D9-noteheadDiamondHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0D9.xml b/data/Leipzig/E0D9.xml new file mode 100644 index 00000000000..bf567413bb2 --- /dev/null +++ b/data/Leipzig/E0D9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0DA-noteheadDiamondHalfWide.xml b/data/Leipzig/E0DA-noteheadDiamondHalfWide.xml deleted file mode 100644 index 49648bb8f98..00000000000 --- a/data/Leipzig/E0DA-noteheadDiamondHalfWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0DA.xml b/data/Leipzig/E0DA.xml new file mode 100644 index 00000000000..7ee9f876bbe --- /dev/null +++ b/data/Leipzig/E0DA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0DB-noteheadDiamondBlack.xml b/data/Leipzig/E0DB-noteheadDiamondBlack.xml deleted file mode 100644 index ab38acb56bf..00000000000 --- a/data/Leipzig/E0DB-noteheadDiamondBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0DB.xml b/data/Leipzig/E0DB.xml new file mode 100644 index 00000000000..320385ccbe8 --- /dev/null +++ b/data/Leipzig/E0DB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0DC-noteheadDiamondBlackWide.xml b/data/Leipzig/E0DC-noteheadDiamondBlackWide.xml deleted file mode 100644 index e4edc29556f..00000000000 --- a/data/Leipzig/E0DC-noteheadDiamondBlackWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0DC.xml b/data/Leipzig/E0DC.xml new file mode 100644 index 00000000000..28cc353cca3 --- /dev/null +++ b/data/Leipzig/E0DC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0DD-noteheadDiamondWhite.xml b/data/Leipzig/E0DD-noteheadDiamondWhite.xml deleted file mode 100644 index 05bd41d8656..00000000000 --- a/data/Leipzig/E0DD-noteheadDiamondWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0DD.xml b/data/Leipzig/E0DD.xml new file mode 100644 index 00000000000..f6ac59f5dc8 --- /dev/null +++ b/data/Leipzig/E0DD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0DE-noteheadDiamondWhiteWide.xml b/data/Leipzig/E0DE-noteheadDiamondWhiteWide.xml deleted file mode 100644 index a95113ba128..00000000000 --- a/data/Leipzig/E0DE-noteheadDiamondWhiteWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0DE.xml b/data/Leipzig/E0DE.xml new file mode 100644 index 00000000000..7d33356f96e --- /dev/null +++ b/data/Leipzig/E0DE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0F5-noteheadParenthesisLeft.xml b/data/Leipzig/E0F5-noteheadParenthesisLeft.xml deleted file mode 100644 index 21aaba48ec8..00000000000 --- a/data/Leipzig/E0F5-noteheadParenthesisLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0F5.xml b/data/Leipzig/E0F5.xml new file mode 100644 index 00000000000..247186a31f9 --- /dev/null +++ b/data/Leipzig/E0F5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0F6-noteheadParenthesisRight.xml b/data/Leipzig/E0F6-noteheadParenthesisRight.xml deleted file mode 100644 index 9ef0a95e91b..00000000000 --- a/data/Leipzig/E0F6-noteheadParenthesisRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0F6.xml b/data/Leipzig/E0F6.xml new file mode 100644 index 00000000000..b95b58e8cc5 --- /dev/null +++ b/data/Leipzig/E0F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E0FA-noteheadWholeFilled.xml b/data/Leipzig/E0FA-noteheadWholeFilled.xml deleted file mode 100644 index abace349678..00000000000 --- a/data/Leipzig/E0FA-noteheadWholeFilled.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E0FA.xml b/data/Leipzig/E0FA.xml new file mode 100644 index 00000000000..c0b9e3e365a --- /dev/null +++ b/data/Leipzig/E0FA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E101-noteheadSlashHorizontalEnds.xml b/data/Leipzig/E101-noteheadSlashHorizontalEnds.xml deleted file mode 100644 index 416bebac135..00000000000 --- a/data/Leipzig/E101-noteheadSlashHorizontalEnds.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E101.xml b/data/Leipzig/E101.xml new file mode 100644 index 00000000000..9f12de4e33c --- /dev/null +++ b/data/Leipzig/E101.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E102-noteheadSlashWhiteWhole.xml b/data/Leipzig/E102-noteheadSlashWhiteWhole.xml deleted file mode 100644 index afd1468a820..00000000000 --- a/data/Leipzig/E102-noteheadSlashWhiteWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E102.xml b/data/Leipzig/E102.xml new file mode 100644 index 00000000000..da640868416 --- /dev/null +++ b/data/Leipzig/E102.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E103-noteheadSlashWhiteHalf.xml b/data/Leipzig/E103-noteheadSlashWhiteHalf.xml deleted file mode 100644 index 15952659f2d..00000000000 --- a/data/Leipzig/E103-noteheadSlashWhiteHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E103.xml b/data/Leipzig/E103.xml new file mode 100644 index 00000000000..af6c48241b6 --- /dev/null +++ b/data/Leipzig/E103.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E220-tremolo1.xml b/data/Leipzig/E220-tremolo1.xml deleted file mode 100644 index 7c32632a4ab..00000000000 --- a/data/Leipzig/E220-tremolo1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E220.xml b/data/Leipzig/E220.xml new file mode 100644 index 00000000000..7491a28653c --- /dev/null +++ b/data/Leipzig/E220.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E221-tremolo2.xml b/data/Leipzig/E221-tremolo2.xml deleted file mode 100644 index 96f48297e85..00000000000 --- a/data/Leipzig/E221-tremolo2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E221.xml b/data/Leipzig/E221.xml new file mode 100644 index 00000000000..7ecf2e5c567 --- /dev/null +++ b/data/Leipzig/E221.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E222-tremolo3.xml b/data/Leipzig/E222-tremolo3.xml deleted file mode 100644 index 2f510609ae1..00000000000 --- a/data/Leipzig/E222-tremolo3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E222.xml b/data/Leipzig/E222.xml new file mode 100644 index 00000000000..14740c04764 --- /dev/null +++ b/data/Leipzig/E222.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E223-tremolo4.xml b/data/Leipzig/E223-tremolo4.xml deleted file mode 100644 index fb97ddfcdc2..00000000000 --- a/data/Leipzig/E223-tremolo4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E223.xml b/data/Leipzig/E223.xml new file mode 100644 index 00000000000..bce091c85ab --- /dev/null +++ b/data/Leipzig/E223.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E224-tremolo5.xml b/data/Leipzig/E224-tremolo5.xml deleted file mode 100644 index 2b1e17307c5..00000000000 --- a/data/Leipzig/E224-tremolo5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E224.xml b/data/Leipzig/E224.xml new file mode 100644 index 00000000000..25a059530bd --- /dev/null +++ b/data/Leipzig/E224.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E22A-buzzRoll.xml b/data/Leipzig/E22A-buzzRoll.xml deleted file mode 100644 index 6694908410e..00000000000 --- a/data/Leipzig/E22A-buzzRoll.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E22A.xml b/data/Leipzig/E22A.xml new file mode 100644 index 00000000000..d4f04974f73 --- /dev/null +++ b/data/Leipzig/E22A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E240-flag8thUp.xml b/data/Leipzig/E240-flag8thUp.xml deleted file mode 100644 index 62a189d8a41..00000000000 --- a/data/Leipzig/E240-flag8thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E240.xml b/data/Leipzig/E240.xml new file mode 100644 index 00000000000..90308936b73 --- /dev/null +++ b/data/Leipzig/E240.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E241-flag8thDown.xml b/data/Leipzig/E241-flag8thDown.xml deleted file mode 100644 index 7c321810462..00000000000 --- a/data/Leipzig/E241-flag8thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E241.xml b/data/Leipzig/E241.xml new file mode 100644 index 00000000000..3f6225da141 --- /dev/null +++ b/data/Leipzig/E241.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E242-flag16thUp.xml b/data/Leipzig/E242-flag16thUp.xml deleted file mode 100644 index 784a6e8242c..00000000000 --- a/data/Leipzig/E242-flag16thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E242.xml b/data/Leipzig/E242.xml new file mode 100644 index 00000000000..bb424434995 --- /dev/null +++ b/data/Leipzig/E242.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E243-flag16thDown.xml b/data/Leipzig/E243-flag16thDown.xml deleted file mode 100644 index 1d89e4476af..00000000000 --- a/data/Leipzig/E243-flag16thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E243.xml b/data/Leipzig/E243.xml new file mode 100644 index 00000000000..ff96e16fe50 --- /dev/null +++ b/data/Leipzig/E243.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E244-flag32ndUp.xml b/data/Leipzig/E244-flag32ndUp.xml deleted file mode 100644 index baa459327ca..00000000000 --- a/data/Leipzig/E244-flag32ndUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E244.xml b/data/Leipzig/E244.xml new file mode 100644 index 00000000000..7c39d4e86df --- /dev/null +++ b/data/Leipzig/E244.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E245-flag32ndDown.xml b/data/Leipzig/E245-flag32ndDown.xml deleted file mode 100644 index b6148da8869..00000000000 --- a/data/Leipzig/E245-flag32ndDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E245.xml b/data/Leipzig/E245.xml new file mode 100644 index 00000000000..ec32faece35 --- /dev/null +++ b/data/Leipzig/E245.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E246-flag64thUp.xml b/data/Leipzig/E246-flag64thUp.xml deleted file mode 100644 index 4ca2862dd80..00000000000 --- a/data/Leipzig/E246-flag64thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E246.xml b/data/Leipzig/E246.xml new file mode 100644 index 00000000000..183374954ac --- /dev/null +++ b/data/Leipzig/E246.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E247-flag64thDown.xml b/data/Leipzig/E247-flag64thDown.xml deleted file mode 100644 index a51e297f7a3..00000000000 --- a/data/Leipzig/E247-flag64thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E247.xml b/data/Leipzig/E247.xml new file mode 100644 index 00000000000..8cc61777dc1 --- /dev/null +++ b/data/Leipzig/E247.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E248-flag128thUp.xml b/data/Leipzig/E248-flag128thUp.xml deleted file mode 100644 index 82429c855d9..00000000000 --- a/data/Leipzig/E248-flag128thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E248.xml b/data/Leipzig/E248.xml new file mode 100644 index 00000000000..e3c1b295eb9 --- /dev/null +++ b/data/Leipzig/E248.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E249-flag128thDown.xml b/data/Leipzig/E249-flag128thDown.xml deleted file mode 100644 index 5e24e108c8d..00000000000 --- a/data/Leipzig/E249-flag128thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E249.xml b/data/Leipzig/E249.xml new file mode 100644 index 00000000000..7b44cc50f2a --- /dev/null +++ b/data/Leipzig/E249.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E24A-flag256thUp.xml b/data/Leipzig/E24A-flag256thUp.xml deleted file mode 100644 index 2c38724fd27..00000000000 --- a/data/Leipzig/E24A-flag256thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E24A.xml b/data/Leipzig/E24A.xml new file mode 100644 index 00000000000..0a218ade402 --- /dev/null +++ b/data/Leipzig/E24A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E24B-flag256thDown.xml b/data/Leipzig/E24B-flag256thDown.xml deleted file mode 100644 index 333314435cd..00000000000 --- a/data/Leipzig/E24B-flag256thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E24B.xml b/data/Leipzig/E24B.xml new file mode 100644 index 00000000000..a0f86824d2b --- /dev/null +++ b/data/Leipzig/E24B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E24C-flag512thUp.xml b/data/Leipzig/E24C-flag512thUp.xml deleted file mode 100644 index 60e9c6d3cac..00000000000 --- a/data/Leipzig/E24C-flag512thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E24C.xml b/data/Leipzig/E24C.xml new file mode 100644 index 00000000000..606ce879946 --- /dev/null +++ b/data/Leipzig/E24C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E24D-flag512thDown.xml b/data/Leipzig/E24D-flag512thDown.xml deleted file mode 100644 index 724eec4be58..00000000000 --- a/data/Leipzig/E24D-flag512thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E24D.xml b/data/Leipzig/E24D.xml new file mode 100644 index 00000000000..313822e5ddd --- /dev/null +++ b/data/Leipzig/E24D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E24E-flag1024thUp.xml b/data/Leipzig/E24E-flag1024thUp.xml deleted file mode 100644 index def923330e2..00000000000 --- a/data/Leipzig/E24E-flag1024thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E24E.xml b/data/Leipzig/E24E.xml new file mode 100644 index 00000000000..ce531d8919a --- /dev/null +++ b/data/Leipzig/E24E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E24F-flag1024thDown.xml b/data/Leipzig/E24F-flag1024thDown.xml deleted file mode 100644 index 0e32ee81ced..00000000000 --- a/data/Leipzig/E24F-flag1024thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E24F.xml b/data/Leipzig/E24F.xml new file mode 100644 index 00000000000..f6aa8bf200a --- /dev/null +++ b/data/Leipzig/E24F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E260-accidentalFlat.xml b/data/Leipzig/E260-accidentalFlat.xml deleted file mode 100644 index 06e57abe91e..00000000000 --- a/data/Leipzig/E260-accidentalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E260.xml b/data/Leipzig/E260.xml new file mode 100644 index 00000000000..8f52352ffbd --- /dev/null +++ b/data/Leipzig/E260.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E261-accidentalNatural.xml b/data/Leipzig/E261-accidentalNatural.xml deleted file mode 100644 index af41f558fe2..00000000000 --- a/data/Leipzig/E261-accidentalNatural.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E261.xml b/data/Leipzig/E261.xml new file mode 100644 index 00000000000..0bc446d747e --- /dev/null +++ b/data/Leipzig/E261.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E262-accidentalSharp.xml b/data/Leipzig/E262-accidentalSharp.xml deleted file mode 100644 index 728cc2c2d86..00000000000 --- a/data/Leipzig/E262-accidentalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E262.xml b/data/Leipzig/E262.xml new file mode 100644 index 00000000000..9812736d4cb --- /dev/null +++ b/data/Leipzig/E262.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E263-accidentalDoubleSharp.xml b/data/Leipzig/E263-accidentalDoubleSharp.xml deleted file mode 100644 index 72a661cf645..00000000000 --- a/data/Leipzig/E263-accidentalDoubleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E263.xml b/data/Leipzig/E263.xml new file mode 100644 index 00000000000..e74cac5669a --- /dev/null +++ b/data/Leipzig/E263.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E264-accidentalDoubleFlat.xml b/data/Leipzig/E264-accidentalDoubleFlat.xml deleted file mode 100644 index 9c370820ae4..00000000000 --- a/data/Leipzig/E264-accidentalDoubleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E264.xml b/data/Leipzig/E264.xml new file mode 100644 index 00000000000..5d433974d33 --- /dev/null +++ b/data/Leipzig/E264.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E265-accidentalTripleSharp.xml b/data/Leipzig/E265-accidentalTripleSharp.xml deleted file mode 100644 index 8d58c86843e..00000000000 --- a/data/Leipzig/E265-accidentalTripleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E265.xml b/data/Leipzig/E265.xml new file mode 100644 index 00000000000..f93b387fe0a --- /dev/null +++ b/data/Leipzig/E265.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E266-accidentalTripleFlat.xml b/data/Leipzig/E266-accidentalTripleFlat.xml deleted file mode 100644 index e02597d70a5..00000000000 --- a/data/Leipzig/E266-accidentalTripleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E266.xml b/data/Leipzig/E266.xml new file mode 100644 index 00000000000..c2db7087464 --- /dev/null +++ b/data/Leipzig/E266.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E267-accidentalNaturalFlat.xml b/data/Leipzig/E267-accidentalNaturalFlat.xml deleted file mode 100644 index f0d6ac46539..00000000000 --- a/data/Leipzig/E267-accidentalNaturalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E267.xml b/data/Leipzig/E267.xml new file mode 100644 index 00000000000..9fdab8681d7 --- /dev/null +++ b/data/Leipzig/E267.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E268-accidentalNaturalSharp.xml b/data/Leipzig/E268-accidentalNaturalSharp.xml deleted file mode 100644 index 4496a2de357..00000000000 --- a/data/Leipzig/E268-accidentalNaturalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E268.xml b/data/Leipzig/E268.xml new file mode 100644 index 00000000000..7ba63f68c6f --- /dev/null +++ b/data/Leipzig/E268.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E269-accidentalSharpSharp.xml b/data/Leipzig/E269-accidentalSharpSharp.xml deleted file mode 100644 index 76b899b5604..00000000000 --- a/data/Leipzig/E269-accidentalSharpSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E269.xml b/data/Leipzig/E269.xml new file mode 100644 index 00000000000..63b696850c4 --- /dev/null +++ b/data/Leipzig/E269.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E26A-accidentalParensLeft.xml b/data/Leipzig/E26A-accidentalParensLeft.xml deleted file mode 100644 index 55cbfd1fa21..00000000000 --- a/data/Leipzig/E26A-accidentalParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E26A.xml b/data/Leipzig/E26A.xml new file mode 100644 index 00000000000..d587185ff28 --- /dev/null +++ b/data/Leipzig/E26A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E26B-accidentalParensRight.xml b/data/Leipzig/E26B-accidentalParensRight.xml deleted file mode 100644 index 87857f71071..00000000000 --- a/data/Leipzig/E26B-accidentalParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E26B.xml b/data/Leipzig/E26B.xml new file mode 100644 index 00000000000..443706c84ee --- /dev/null +++ b/data/Leipzig/E26B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E26C-accidentalBracketLeft.xml b/data/Leipzig/E26C-accidentalBracketLeft.xml deleted file mode 100644 index 7eafefccbe4..00000000000 --- a/data/Leipzig/E26C-accidentalBracketLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E26C.xml b/data/Leipzig/E26C.xml new file mode 100644 index 00000000000..de7ab956f22 --- /dev/null +++ b/data/Leipzig/E26C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E26D-accidentalBracketRight.xml b/data/Leipzig/E26D-accidentalBracketRight.xml deleted file mode 100644 index 515c7ea63f0..00000000000 --- a/data/Leipzig/E26D-accidentalBracketRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E26D.xml b/data/Leipzig/E26D.xml new file mode 100644 index 00000000000..c8355fa5db2 --- /dev/null +++ b/data/Leipzig/E26D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E270-accidentalQuarterToneFlatArrowUp.xml b/data/Leipzig/E270-accidentalQuarterToneFlatArrowUp.xml deleted file mode 100644 index 0721998dcd6..00000000000 --- a/data/Leipzig/E270-accidentalQuarterToneFlatArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E270.xml b/data/Leipzig/E270.xml new file mode 100644 index 00000000000..4e34d40d09b --- /dev/null +++ b/data/Leipzig/E270.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E271-accidentalThreeQuarterTonesFlatArrowDown.xml b/data/Leipzig/E271-accidentalThreeQuarterTonesFlatArrowDown.xml deleted file mode 100644 index 82b9b845d3c..00000000000 --- a/data/Leipzig/E271-accidentalThreeQuarterTonesFlatArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E271.xml b/data/Leipzig/E271.xml new file mode 100644 index 00000000000..a9241c71035 --- /dev/null +++ b/data/Leipzig/E271.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E272-accidentalQuarterToneSharpNaturalArrowUp.xml b/data/Leipzig/E272-accidentalQuarterToneSharpNaturalArrowUp.xml deleted file mode 100644 index e38c368daa2..00000000000 --- a/data/Leipzig/E272-accidentalQuarterToneSharpNaturalArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E272.xml b/data/Leipzig/E272.xml new file mode 100644 index 00000000000..54815648904 --- /dev/null +++ b/data/Leipzig/E272.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E273-accidentalQuarterToneFlatNaturalArrowDown.xml b/data/Leipzig/E273-accidentalQuarterToneFlatNaturalArrowDown.xml deleted file mode 100644 index b121182e803..00000000000 --- a/data/Leipzig/E273-accidentalQuarterToneFlatNaturalArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E273.xml b/data/Leipzig/E273.xml new file mode 100644 index 00000000000..035cf744333 --- /dev/null +++ b/data/Leipzig/E273.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E274-accidentalThreeQuarterTonesSharpArrowUp.xml b/data/Leipzig/E274-accidentalThreeQuarterTonesSharpArrowUp.xml deleted file mode 100644 index daa6728bb1b..00000000000 --- a/data/Leipzig/E274-accidentalThreeQuarterTonesSharpArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E274.xml b/data/Leipzig/E274.xml new file mode 100644 index 00000000000..ac361f468c5 --- /dev/null +++ b/data/Leipzig/E274.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E275-accidentalQuarterToneSharpArrowDown.xml b/data/Leipzig/E275-accidentalQuarterToneSharpArrowDown.xml deleted file mode 100644 index 9dee676ec24..00000000000 --- a/data/Leipzig/E275-accidentalQuarterToneSharpArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E275.xml b/data/Leipzig/E275.xml new file mode 100644 index 00000000000..f6633db24c0 --- /dev/null +++ b/data/Leipzig/E275.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E280-accidentalQuarterToneFlatStein.xml b/data/Leipzig/E280-accidentalQuarterToneFlatStein.xml deleted file mode 100644 index 72ff658da2c..00000000000 --- a/data/Leipzig/E280-accidentalQuarterToneFlatStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E280.xml b/data/Leipzig/E280.xml new file mode 100644 index 00000000000..4c30b04f3c4 --- /dev/null +++ b/data/Leipzig/E280.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E281-accidentalThreeQuarterTonesFlatZimmermann.xml b/data/Leipzig/E281-accidentalThreeQuarterTonesFlatZimmermann.xml deleted file mode 100644 index b5cff7e8acf..00000000000 --- a/data/Leipzig/E281-accidentalThreeQuarterTonesFlatZimmermann.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E281.xml b/data/Leipzig/E281.xml new file mode 100644 index 00000000000..b5f51c424e2 --- /dev/null +++ b/data/Leipzig/E281.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E282-accidentalQuarterToneSharpStein.xml b/data/Leipzig/E282-accidentalQuarterToneSharpStein.xml deleted file mode 100644 index 490b356faa7..00000000000 --- a/data/Leipzig/E282-accidentalQuarterToneSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E282.xml b/data/Leipzig/E282.xml new file mode 100644 index 00000000000..56c857a8440 --- /dev/null +++ b/data/Leipzig/E282.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E283-accidentalThreeQuarterTonesSharpStein.xml b/data/Leipzig/E283-accidentalThreeQuarterTonesSharpStein.xml deleted file mode 100644 index faf03525e7f..00000000000 --- a/data/Leipzig/E283-accidentalThreeQuarterTonesSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E283.xml b/data/Leipzig/E283.xml new file mode 100644 index 00000000000..373b8fb811a --- /dev/null +++ b/data/Leipzig/E283.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E440-accidentalBuyukMucennebFlat.xml b/data/Leipzig/E440-accidentalBuyukMucennebFlat.xml deleted file mode 100644 index ae7e6b4ef10..00000000000 --- a/data/Leipzig/E440-accidentalBuyukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E440.xml b/data/Leipzig/E440.xml new file mode 100644 index 00000000000..47b9017ab86 --- /dev/null +++ b/data/Leipzig/E440.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E441-accidentalKucukMucennebFlat.xml b/data/Leipzig/E441-accidentalKucukMucennebFlat.xml deleted file mode 100644 index 0cbd046cccf..00000000000 --- a/data/Leipzig/E441-accidentalKucukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E441.xml b/data/Leipzig/E441.xml new file mode 100644 index 00000000000..7a82968d2fb --- /dev/null +++ b/data/Leipzig/E441.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E442-accidentalBakiyeFlat.xml b/data/Leipzig/E442-accidentalBakiyeFlat.xml deleted file mode 100644 index ee44327f682..00000000000 --- a/data/Leipzig/E442-accidentalBakiyeFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E442.xml b/data/Leipzig/E442.xml new file mode 100644 index 00000000000..2431c33165f --- /dev/null +++ b/data/Leipzig/E442.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E443-accidentalKomaFlat.xml b/data/Leipzig/E443-accidentalKomaFlat.xml deleted file mode 100644 index 69c745a95ae..00000000000 --- a/data/Leipzig/E443-accidentalKomaFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E443.xml b/data/Leipzig/E443.xml new file mode 100644 index 00000000000..f7470244b70 --- /dev/null +++ b/data/Leipzig/E443.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E444-accidentalKomaSharp.xml b/data/Leipzig/E444-accidentalKomaSharp.xml deleted file mode 100644 index a5e54bbcd34..00000000000 --- a/data/Leipzig/E444-accidentalKomaSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E444.xml b/data/Leipzig/E444.xml new file mode 100644 index 00000000000..93a95ea433a --- /dev/null +++ b/data/Leipzig/E444.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E445-accidentalBakiyeSharp.xml b/data/Leipzig/E445-accidentalBakiyeSharp.xml deleted file mode 100644 index 89a0a3f5f79..00000000000 --- a/data/Leipzig/E445-accidentalBakiyeSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E445.xml b/data/Leipzig/E445.xml new file mode 100644 index 00000000000..475a0b72981 --- /dev/null +++ b/data/Leipzig/E445.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E446-accidentalKucukMucennebSharp.xml b/data/Leipzig/E446-accidentalKucukMucennebSharp.xml deleted file mode 100644 index a5287d38d16..00000000000 --- a/data/Leipzig/E446-accidentalKucukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E446.xml b/data/Leipzig/E446.xml new file mode 100644 index 00000000000..a8900b11682 --- /dev/null +++ b/data/Leipzig/E446.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E447-accidentalBuyukMucennebSharp.xml b/data/Leipzig/E447-accidentalBuyukMucennebSharp.xml deleted file mode 100644 index db210d74847..00000000000 --- a/data/Leipzig/E447-accidentalBuyukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E447.xml b/data/Leipzig/E447.xml new file mode 100644 index 00000000000..805ed2f009e --- /dev/null +++ b/data/Leipzig/E447.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A0-articAccentAbove.xml b/data/Leipzig/E4A0-articAccentAbove.xml deleted file mode 100644 index afcdba6200b..00000000000 --- a/data/Leipzig/E4A0-articAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A0.xml b/data/Leipzig/E4A0.xml new file mode 100644 index 00000000000..2c643e6e319 --- /dev/null +++ b/data/Leipzig/E4A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A1-articAccentBelow.xml b/data/Leipzig/E4A1-articAccentBelow.xml deleted file mode 100644 index 5425d8a5ff7..00000000000 --- a/data/Leipzig/E4A1-articAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A1.xml b/data/Leipzig/E4A1.xml new file mode 100644 index 00000000000..412d830abb0 --- /dev/null +++ b/data/Leipzig/E4A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A2-articStaccatoAbove.xml b/data/Leipzig/E4A2-articStaccatoAbove.xml deleted file mode 100644 index 8b92c76c55d..00000000000 --- a/data/Leipzig/E4A2-articStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A2.xml b/data/Leipzig/E4A2.xml new file mode 100644 index 00000000000..7b7f04986fc --- /dev/null +++ b/data/Leipzig/E4A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A3-articStaccatoBelow.xml b/data/Leipzig/E4A3-articStaccatoBelow.xml deleted file mode 100644 index 88d61533a3d..00000000000 --- a/data/Leipzig/E4A3-articStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A3.xml b/data/Leipzig/E4A3.xml new file mode 100644 index 00000000000..db930247893 --- /dev/null +++ b/data/Leipzig/E4A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A4-articTenutoAbove.xml b/data/Leipzig/E4A4-articTenutoAbove.xml deleted file mode 100644 index e070604ee5b..00000000000 --- a/data/Leipzig/E4A4-articTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A4.xml b/data/Leipzig/E4A4.xml new file mode 100644 index 00000000000..c21ec03c2d2 --- /dev/null +++ b/data/Leipzig/E4A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A5-articTenutoBelow.xml b/data/Leipzig/E4A5-articTenutoBelow.xml deleted file mode 100644 index edbf982d1a4..00000000000 --- a/data/Leipzig/E4A5-articTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A5.xml b/data/Leipzig/E4A5.xml new file mode 100644 index 00000000000..e223e7b7049 --- /dev/null +++ b/data/Leipzig/E4A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A6-articStaccatissimoAbove.xml b/data/Leipzig/E4A6-articStaccatissimoAbove.xml deleted file mode 100644 index f710bfde479..00000000000 --- a/data/Leipzig/E4A6-articStaccatissimoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A6.xml b/data/Leipzig/E4A6.xml new file mode 100644 index 00000000000..b81e6d59bc6 --- /dev/null +++ b/data/Leipzig/E4A6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A7-articStaccatissimoBelow.xml b/data/Leipzig/E4A7-articStaccatissimoBelow.xml deleted file mode 100644 index fe80a62cf48..00000000000 --- a/data/Leipzig/E4A7-articStaccatissimoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A7.xml b/data/Leipzig/E4A7.xml new file mode 100644 index 00000000000..e3329d6e5cf --- /dev/null +++ b/data/Leipzig/E4A7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A8-articStaccatissimoWedgeAbove.xml b/data/Leipzig/E4A8-articStaccatissimoWedgeAbove.xml deleted file mode 100644 index b5db6aa2696..00000000000 --- a/data/Leipzig/E4A8-articStaccatissimoWedgeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A8.xml b/data/Leipzig/E4A8.xml new file mode 100644 index 00000000000..f1ee882ca34 --- /dev/null +++ b/data/Leipzig/E4A8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4A9-articStaccatissimoWedgeBelow.xml b/data/Leipzig/E4A9-articStaccatissimoWedgeBelow.xml deleted file mode 100644 index 5c22cd11ac5..00000000000 --- a/data/Leipzig/E4A9-articStaccatissimoWedgeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4A9.xml b/data/Leipzig/E4A9.xml new file mode 100644 index 00000000000..a2150dba050 --- /dev/null +++ b/data/Leipzig/E4A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4AA-articStaccatissimoStrokeAbove.xml b/data/Leipzig/E4AA-articStaccatissimoStrokeAbove.xml deleted file mode 100644 index ecc36b670cd..00000000000 --- a/data/Leipzig/E4AA-articStaccatissimoStrokeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4AA.xml b/data/Leipzig/E4AA.xml new file mode 100644 index 00000000000..5666d6277dd --- /dev/null +++ b/data/Leipzig/E4AA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4AB-articStaccatissimoStrokeBelow.xml b/data/Leipzig/E4AB-articStaccatissimoStrokeBelow.xml deleted file mode 100644 index bf320c1ed4c..00000000000 --- a/data/Leipzig/E4AB-articStaccatissimoStrokeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4AB.xml b/data/Leipzig/E4AB.xml new file mode 100644 index 00000000000..c6e575caf08 --- /dev/null +++ b/data/Leipzig/E4AB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4AC-articMarcatoAbove.xml b/data/Leipzig/E4AC-articMarcatoAbove.xml deleted file mode 100644 index 5ac0a419f8c..00000000000 --- a/data/Leipzig/E4AC-articMarcatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4AC.xml b/data/Leipzig/E4AC.xml new file mode 100644 index 00000000000..fd1782f4843 --- /dev/null +++ b/data/Leipzig/E4AC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4AD-articMarcatoBelow.xml b/data/Leipzig/E4AD-articMarcatoBelow.xml deleted file mode 100644 index 316c8423d1c..00000000000 --- a/data/Leipzig/E4AD-articMarcatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4AD.xml b/data/Leipzig/E4AD.xml new file mode 100644 index 00000000000..692609527bf --- /dev/null +++ b/data/Leipzig/E4AD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4AE-articMarcatoStaccatoAbove.xml b/data/Leipzig/E4AE-articMarcatoStaccatoAbove.xml deleted file mode 100644 index f692e0697f8..00000000000 --- a/data/Leipzig/E4AE-articMarcatoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4AE.xml b/data/Leipzig/E4AE.xml new file mode 100644 index 00000000000..f73e2f1c53c --- /dev/null +++ b/data/Leipzig/E4AE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4AF-articMarcatoStaccatoBelow.xml b/data/Leipzig/E4AF-articMarcatoStaccatoBelow.xml deleted file mode 100644 index 6d18b91ff05..00000000000 --- a/data/Leipzig/E4AF-articMarcatoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4AF.xml b/data/Leipzig/E4AF.xml new file mode 100644 index 00000000000..2b594423aca --- /dev/null +++ b/data/Leipzig/E4AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B0-articAccentStaccatoAbove.xml b/data/Leipzig/E4B0-articAccentStaccatoAbove.xml deleted file mode 100644 index c95361530e3..00000000000 --- a/data/Leipzig/E4B0-articAccentStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B0.xml b/data/Leipzig/E4B0.xml new file mode 100644 index 00000000000..53ce9d6d480 --- /dev/null +++ b/data/Leipzig/E4B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B1-articAccentStaccatoBelow.xml b/data/Leipzig/E4B1-articAccentStaccatoBelow.xml deleted file mode 100644 index 5f4a3e5ed57..00000000000 --- a/data/Leipzig/E4B1-articAccentStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B1.xml b/data/Leipzig/E4B1.xml new file mode 100644 index 00000000000..ad1a4a840ee --- /dev/null +++ b/data/Leipzig/E4B1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B2-articTenutoStaccatoAbove.xml b/data/Leipzig/E4B2-articTenutoStaccatoAbove.xml deleted file mode 100644 index 8a8a2e8906c..00000000000 --- a/data/Leipzig/E4B2-articTenutoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B2.xml b/data/Leipzig/E4B2.xml new file mode 100644 index 00000000000..49b9a0dfc88 --- /dev/null +++ b/data/Leipzig/E4B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B3-articTenutoStaccatoBelow.xml b/data/Leipzig/E4B3-articTenutoStaccatoBelow.xml deleted file mode 100644 index a0cf617363f..00000000000 --- a/data/Leipzig/E4B3-articTenutoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B3.xml b/data/Leipzig/E4B3.xml new file mode 100644 index 00000000000..3ebb924a391 --- /dev/null +++ b/data/Leipzig/E4B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B4-articTenutoAccentAbove.xml b/data/Leipzig/E4B4-articTenutoAccentAbove.xml deleted file mode 100644 index 10fed7b8ffd..00000000000 --- a/data/Leipzig/E4B4-articTenutoAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B4.xml b/data/Leipzig/E4B4.xml new file mode 100644 index 00000000000..e77f801d82a --- /dev/null +++ b/data/Leipzig/E4B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B5-articTenutoAccentBelow.xml b/data/Leipzig/E4B5-articTenutoAccentBelow.xml deleted file mode 100644 index 63a6371fd51..00000000000 --- a/data/Leipzig/E4B5-articTenutoAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B5.xml b/data/Leipzig/E4B5.xml new file mode 100644 index 00000000000..5a887b70d83 --- /dev/null +++ b/data/Leipzig/E4B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B6-articStressAbove.xml b/data/Leipzig/E4B6-articStressAbove.xml deleted file mode 100644 index 2225583a232..00000000000 --- a/data/Leipzig/E4B6-articStressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B6.xml b/data/Leipzig/E4B6.xml new file mode 100644 index 00000000000..53bcadeb16f --- /dev/null +++ b/data/Leipzig/E4B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B7-articStressBelow.xml b/data/Leipzig/E4B7-articStressBelow.xml deleted file mode 100644 index 01354c10935..00000000000 --- a/data/Leipzig/E4B7-articStressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B7.xml b/data/Leipzig/E4B7.xml new file mode 100644 index 00000000000..8c19a5c022f --- /dev/null +++ b/data/Leipzig/E4B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B8-articUnstressAbove.xml b/data/Leipzig/E4B8-articUnstressAbove.xml deleted file mode 100644 index 1fda7702a64..00000000000 --- a/data/Leipzig/E4B8-articUnstressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B8.xml b/data/Leipzig/E4B8.xml new file mode 100644 index 00000000000..05e328b8da1 --- /dev/null +++ b/data/Leipzig/E4B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4B9-articUnstressBelow.xml b/data/Leipzig/E4B9-articUnstressBelow.xml deleted file mode 100644 index a946ce2d603..00000000000 --- a/data/Leipzig/E4B9-articUnstressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4B9.xml b/data/Leipzig/E4B9.xml new file mode 100644 index 00000000000..bf2c82f7e3a --- /dev/null +++ b/data/Leipzig/E4B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4BA-articLaissezVibrerAbove.xml b/data/Leipzig/E4BA-articLaissezVibrerAbove.xml deleted file mode 100644 index b522089a123..00000000000 --- a/data/Leipzig/E4BA-articLaissezVibrerAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4BA.xml b/data/Leipzig/E4BA.xml new file mode 100644 index 00000000000..9d4aaeb340e --- /dev/null +++ b/data/Leipzig/E4BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4BB-articLaissezVibrerBelow.xml b/data/Leipzig/E4BB-articLaissezVibrerBelow.xml deleted file mode 100644 index 8c1de3cfe79..00000000000 --- a/data/Leipzig/E4BB-articLaissezVibrerBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4BB.xml b/data/Leipzig/E4BB.xml new file mode 100644 index 00000000000..4cd7fd2a0e2 --- /dev/null +++ b/data/Leipzig/E4BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4BC-articMarcatoTenutoAbove.xml b/data/Leipzig/E4BC-articMarcatoTenutoAbove.xml deleted file mode 100644 index 5086fcb8c97..00000000000 --- a/data/Leipzig/E4BC-articMarcatoTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4BC.xml b/data/Leipzig/E4BC.xml new file mode 100644 index 00000000000..8fba4a617f9 --- /dev/null +++ b/data/Leipzig/E4BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4BD-articMarcatoTenutoBelow.xml b/data/Leipzig/E4BD-articMarcatoTenutoBelow.xml deleted file mode 100644 index 365c9f53f08..00000000000 --- a/data/Leipzig/E4BD-articMarcatoTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4BD.xml b/data/Leipzig/E4BD.xml new file mode 100644 index 00000000000..c01a75a681e --- /dev/null +++ b/data/Leipzig/E4BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C0-fermataAbove.xml b/data/Leipzig/E4C0-fermataAbove.xml deleted file mode 100644 index 720b8e210aa..00000000000 --- a/data/Leipzig/E4C0-fermataAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C0.xml b/data/Leipzig/E4C0.xml new file mode 100644 index 00000000000..e01d017c229 --- /dev/null +++ b/data/Leipzig/E4C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C1-fermataBelow.xml b/data/Leipzig/E4C1-fermataBelow.xml deleted file mode 100644 index 93f793975ba..00000000000 --- a/data/Leipzig/E4C1-fermataBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C1.xml b/data/Leipzig/E4C1.xml new file mode 100644 index 00000000000..2a3b1e92ae2 --- /dev/null +++ b/data/Leipzig/E4C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C2-fermataVeryShortAbove.xml b/data/Leipzig/E4C2-fermataVeryShortAbove.xml deleted file mode 100644 index 410b5e02518..00000000000 --- a/data/Leipzig/E4C2-fermataVeryShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C2.xml b/data/Leipzig/E4C2.xml new file mode 100644 index 00000000000..ed782a3b7b2 --- /dev/null +++ b/data/Leipzig/E4C2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C3-fermataVeryShortBelow.xml b/data/Leipzig/E4C3-fermataVeryShortBelow.xml deleted file mode 100644 index 4f2b00db8bc..00000000000 --- a/data/Leipzig/E4C3-fermataVeryShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C3.xml b/data/Leipzig/E4C3.xml new file mode 100644 index 00000000000..df42a8beda3 --- /dev/null +++ b/data/Leipzig/E4C3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C4-fermataShortAbove.xml b/data/Leipzig/E4C4-fermataShortAbove.xml deleted file mode 100644 index 8dc9e1ce58e..00000000000 --- a/data/Leipzig/E4C4-fermataShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C4.xml b/data/Leipzig/E4C4.xml new file mode 100644 index 00000000000..dea5d1d81cd --- /dev/null +++ b/data/Leipzig/E4C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C5-fermataShortBelow.xml b/data/Leipzig/E4C5-fermataShortBelow.xml deleted file mode 100644 index f86ae7774dc..00000000000 --- a/data/Leipzig/E4C5-fermataShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C5.xml b/data/Leipzig/E4C5.xml new file mode 100644 index 00000000000..49ad74a3142 --- /dev/null +++ b/data/Leipzig/E4C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C6-fermataLongAbove.xml b/data/Leipzig/E4C6-fermataLongAbove.xml deleted file mode 100644 index b4f45320d5b..00000000000 --- a/data/Leipzig/E4C6-fermataLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C6.xml b/data/Leipzig/E4C6.xml new file mode 100644 index 00000000000..6fa8c15b87c --- /dev/null +++ b/data/Leipzig/E4C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C7-fermataLongBelow.xml b/data/Leipzig/E4C7-fermataLongBelow.xml deleted file mode 100644 index f8fea2c160b..00000000000 --- a/data/Leipzig/E4C7-fermataLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C7.xml b/data/Leipzig/E4C7.xml new file mode 100644 index 00000000000..85ac1c3af0a --- /dev/null +++ b/data/Leipzig/E4C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C8-fermataVeryLongAbove.xml b/data/Leipzig/E4C8-fermataVeryLongAbove.xml deleted file mode 100644 index 4b782485132..00000000000 --- a/data/Leipzig/E4C8-fermataVeryLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C8.xml b/data/Leipzig/E4C8.xml new file mode 100644 index 00000000000..51fb8953785 --- /dev/null +++ b/data/Leipzig/E4C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4C9-fermataVeryLongBelow.xml b/data/Leipzig/E4C9-fermataVeryLongBelow.xml deleted file mode 100644 index ef2fd6ff5da..00000000000 --- a/data/Leipzig/E4C9-fermataVeryLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4C9.xml b/data/Leipzig/E4C9.xml new file mode 100644 index 00000000000..a9338aac251 --- /dev/null +++ b/data/Leipzig/E4C9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4CE-breathMarkComma.xml b/data/Leipzig/E4CE-breathMarkComma.xml deleted file mode 100644 index d9884a7e448..00000000000 --- a/data/Leipzig/E4CE-breathMarkComma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4CE.xml b/data/Leipzig/E4CE.xml new file mode 100644 index 00000000000..b87beec6aba --- /dev/null +++ b/data/Leipzig/E4CE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E0-restMaxima.xml b/data/Leipzig/E4E0-restMaxima.xml deleted file mode 100644 index 98b70b125fe..00000000000 --- a/data/Leipzig/E4E0-restMaxima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E0.xml b/data/Leipzig/E4E0.xml new file mode 100644 index 00000000000..90edf6c8f91 --- /dev/null +++ b/data/Leipzig/E4E0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E1-restLonga.xml b/data/Leipzig/E4E1-restLonga.xml deleted file mode 100644 index fd440f3b392..00000000000 --- a/data/Leipzig/E4E1-restLonga.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E1.xml b/data/Leipzig/E4E1.xml new file mode 100644 index 00000000000..2d352616311 --- /dev/null +++ b/data/Leipzig/E4E1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E2-restDoubleWhole.xml b/data/Leipzig/E4E2-restDoubleWhole.xml deleted file mode 100644 index 676c0e526ef..00000000000 --- a/data/Leipzig/E4E2-restDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E2.xml b/data/Leipzig/E4E2.xml new file mode 100644 index 00000000000..9459538de1c --- /dev/null +++ b/data/Leipzig/E4E2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E3-restWhole.xml b/data/Leipzig/E4E3-restWhole.xml deleted file mode 100644 index d9749825ed1..00000000000 --- a/data/Leipzig/E4E3-restWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E3.xml b/data/Leipzig/E4E3.xml new file mode 100644 index 00000000000..983504741df --- /dev/null +++ b/data/Leipzig/E4E3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E4-restHalf.xml b/data/Leipzig/E4E4-restHalf.xml deleted file mode 100644 index 3968014d39e..00000000000 --- a/data/Leipzig/E4E4-restHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E4.xml b/data/Leipzig/E4E4.xml new file mode 100644 index 00000000000..8f539fb963b --- /dev/null +++ b/data/Leipzig/E4E4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E5-restQuarter.xml b/data/Leipzig/E4E5-restQuarter.xml deleted file mode 100644 index de94cab870f..00000000000 --- a/data/Leipzig/E4E5-restQuarter.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E5.xml b/data/Leipzig/E4E5.xml new file mode 100644 index 00000000000..8a4ab2d1738 --- /dev/null +++ b/data/Leipzig/E4E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E6-rest8th.xml b/data/Leipzig/E4E6-rest8th.xml deleted file mode 100644 index 83cc1834cb5..00000000000 --- a/data/Leipzig/E4E6-rest8th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E6.xml b/data/Leipzig/E4E6.xml new file mode 100644 index 00000000000..ae2914283e2 --- /dev/null +++ b/data/Leipzig/E4E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E7-rest16th.xml b/data/Leipzig/E4E7-rest16th.xml deleted file mode 100644 index bee33381be1..00000000000 --- a/data/Leipzig/E4E7-rest16th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E7.xml b/data/Leipzig/E4E7.xml new file mode 100644 index 00000000000..b5402534b2d --- /dev/null +++ b/data/Leipzig/E4E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E8-rest32nd.xml b/data/Leipzig/E4E8-rest32nd.xml deleted file mode 100644 index 2ef3182f0a6..00000000000 --- a/data/Leipzig/E4E8-rest32nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E8.xml b/data/Leipzig/E4E8.xml new file mode 100644 index 00000000000..2149ba88754 --- /dev/null +++ b/data/Leipzig/E4E8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4E9-rest64th.xml b/data/Leipzig/E4E9-rest64th.xml deleted file mode 100644 index 1e0d45115f9..00000000000 --- a/data/Leipzig/E4E9-rest64th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4E9.xml b/data/Leipzig/E4E9.xml new file mode 100644 index 00000000000..881e7f4e8f9 --- /dev/null +++ b/data/Leipzig/E4E9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4EA-rest128th.xml b/data/Leipzig/E4EA-rest128th.xml deleted file mode 100644 index 71ff81619f9..00000000000 --- a/data/Leipzig/E4EA-rest128th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4EA.xml b/data/Leipzig/E4EA.xml new file mode 100644 index 00000000000..8f810ceb0d0 --- /dev/null +++ b/data/Leipzig/E4EA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4EB-rest256th.xml b/data/Leipzig/E4EB-rest256th.xml deleted file mode 100644 index a3cdce24cad..00000000000 --- a/data/Leipzig/E4EB-rest256th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4EB.xml b/data/Leipzig/E4EB.xml new file mode 100644 index 00000000000..f9ef1ffc7f2 --- /dev/null +++ b/data/Leipzig/E4EB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4EC-rest512th.xml b/data/Leipzig/E4EC-rest512th.xml deleted file mode 100644 index bd832f7c49b..00000000000 --- a/data/Leipzig/E4EC-rest512th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4EC.xml b/data/Leipzig/E4EC.xml new file mode 100644 index 00000000000..d32fe899157 --- /dev/null +++ b/data/Leipzig/E4EC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4ED-rest1024th.xml b/data/Leipzig/E4ED-rest1024th.xml deleted file mode 100644 index c6dde38a6f4..00000000000 --- a/data/Leipzig/E4ED-rest1024th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4ED.xml b/data/Leipzig/E4ED.xml new file mode 100644 index 00000000000..c3bd245be22 --- /dev/null +++ b/data/Leipzig/E4ED.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4F2-restQuarterOld.xml b/data/Leipzig/E4F2-restQuarterOld.xml deleted file mode 100644 index 710da4850e5..00000000000 --- a/data/Leipzig/E4F2-restQuarterOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4F2.xml b/data/Leipzig/E4F2.xml new file mode 100644 index 00000000000..aa978df7616 --- /dev/null +++ b/data/Leipzig/E4F2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E4F6-restQuarterZ.xml b/data/Leipzig/E4F6-restQuarterZ.xml deleted file mode 100644 index a30b330d267..00000000000 --- a/data/Leipzig/E4F6-restQuarterZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E4F6.xml b/data/Leipzig/E4F6.xml new file mode 100644 index 00000000000..a6d69cc636c --- /dev/null +++ b/data/Leipzig/E4F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E500-repeat1Bar.xml b/data/Leipzig/E500-repeat1Bar.xml deleted file mode 100644 index 9927ff9ac26..00000000000 --- a/data/Leipzig/E500-repeat1Bar.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E500.xml b/data/Leipzig/E500.xml new file mode 100644 index 00000000000..41ed8782814 --- /dev/null +++ b/data/Leipzig/E500.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E501-repeat2Bars.xml b/data/Leipzig/E501-repeat2Bars.xml deleted file mode 100644 index bd606f8362a..00000000000 --- a/data/Leipzig/E501-repeat2Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E501.xml b/data/Leipzig/E501.xml new file mode 100644 index 00000000000..d73f01cae94 --- /dev/null +++ b/data/Leipzig/E501.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E502-repeat4Bars.xml b/data/Leipzig/E502-repeat4Bars.xml deleted file mode 100644 index 3abae54ead3..00000000000 --- a/data/Leipzig/E502-repeat4Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E502.xml b/data/Leipzig/E502.xml new file mode 100644 index 00000000000..6c3707684b0 --- /dev/null +++ b/data/Leipzig/E502.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E503-repeatBarUpperDot.xml b/data/Leipzig/E503-repeatBarUpperDot.xml deleted file mode 100644 index 65081725679..00000000000 --- a/data/Leipzig/E503-repeatBarUpperDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E503.xml b/data/Leipzig/E503.xml new file mode 100644 index 00000000000..ec92476a080 --- /dev/null +++ b/data/Leipzig/E503.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E504-repeatBarSlash.xml b/data/Leipzig/E504-repeatBarSlash.xml deleted file mode 100644 index 93937e3589a..00000000000 --- a/data/Leipzig/E504-repeatBarSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E504.xml b/data/Leipzig/E504.xml new file mode 100644 index 00000000000..6d77f56c5cd --- /dev/null +++ b/data/Leipzig/E504.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E505-repeatBarLowerDot.xml b/data/Leipzig/E505-repeatBarLowerDot.xml deleted file mode 100644 index da3f0a977c0..00000000000 --- a/data/Leipzig/E505-repeatBarLowerDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E505.xml b/data/Leipzig/E505.xml new file mode 100644 index 00000000000..82077c61fc3 --- /dev/null +++ b/data/Leipzig/E505.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E510-ottava.xml b/data/Leipzig/E510-ottava.xml deleted file mode 100644 index 846530fecb6..00000000000 --- a/data/Leipzig/E510-ottava.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E510.xml b/data/Leipzig/E510.xml new file mode 100644 index 00000000000..4b0541f7d05 --- /dev/null +++ b/data/Leipzig/E510.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E511-ottavaAlta.xml b/data/Leipzig/E511-ottavaAlta.xml deleted file mode 100644 index f575e6fb906..00000000000 --- a/data/Leipzig/E511-ottavaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E511.xml b/data/Leipzig/E511.xml new file mode 100644 index 00000000000..28829cd95c4 --- /dev/null +++ b/data/Leipzig/E511.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E512-ottavaBassa.xml b/data/Leipzig/E512-ottavaBassa.xml deleted file mode 100644 index 1a1e4b8e2e6..00000000000 --- a/data/Leipzig/E512-ottavaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E512.xml b/data/Leipzig/E512.xml new file mode 100644 index 00000000000..5148f25089a --- /dev/null +++ b/data/Leipzig/E512.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E513-ottavaBassaBa.xml b/data/Leipzig/E513-ottavaBassaBa.xml deleted file mode 100644 index 414803ed0bf..00000000000 --- a/data/Leipzig/E513-ottavaBassaBa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E513.xml b/data/Leipzig/E513.xml new file mode 100644 index 00000000000..8047d777ef3 --- /dev/null +++ b/data/Leipzig/E513.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E514-quindicesima.xml b/data/Leipzig/E514-quindicesima.xml deleted file mode 100644 index 7d955f97bc1..00000000000 --- a/data/Leipzig/E514-quindicesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E514.xml b/data/Leipzig/E514.xml new file mode 100644 index 00000000000..e1ea7f3bb0b --- /dev/null +++ b/data/Leipzig/E514.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E515-quindicesimaAlta.xml b/data/Leipzig/E515-quindicesimaAlta.xml deleted file mode 100644 index 40d33278b44..00000000000 --- a/data/Leipzig/E515-quindicesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E515.xml b/data/Leipzig/E515.xml new file mode 100644 index 00000000000..2e093747da3 --- /dev/null +++ b/data/Leipzig/E515.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E516-quindicesimaBassa.xml b/data/Leipzig/E516-quindicesimaBassa.xml deleted file mode 100644 index bdfd714063e..00000000000 --- a/data/Leipzig/E516-quindicesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E516.xml b/data/Leipzig/E516.xml new file mode 100644 index 00000000000..91f4bd9d5eb --- /dev/null +++ b/data/Leipzig/E516.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E517-ventiduesima.xml b/data/Leipzig/E517-ventiduesima.xml deleted file mode 100644 index bd8d734c9b1..00000000000 --- a/data/Leipzig/E517-ventiduesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E517.xml b/data/Leipzig/E517.xml new file mode 100644 index 00000000000..bd3819f299f --- /dev/null +++ b/data/Leipzig/E517.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E518-ventiduesimaAlta.xml b/data/Leipzig/E518-ventiduesimaAlta.xml deleted file mode 100644 index c21feabba35..00000000000 --- a/data/Leipzig/E518-ventiduesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E518.xml b/data/Leipzig/E518.xml new file mode 100644 index 00000000000..f7a08516f27 --- /dev/null +++ b/data/Leipzig/E518.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E519-ventiduesimaBassa.xml b/data/Leipzig/E519-ventiduesimaBassa.xml deleted file mode 100644 index 735594bb080..00000000000 --- a/data/Leipzig/E519-ventiduesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E519.xml b/data/Leipzig/E519.xml new file mode 100644 index 00000000000..3782a885e32 --- /dev/null +++ b/data/Leipzig/E519.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E51A-octaveParensLeft.xml b/data/Leipzig/E51A-octaveParensLeft.xml deleted file mode 100644 index 06b596de7b8..00000000000 --- a/data/Leipzig/E51A-octaveParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E51A.xml b/data/Leipzig/E51A.xml new file mode 100644 index 00000000000..3f77661be12 --- /dev/null +++ b/data/Leipzig/E51A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E51B-octaveParensRight.xml b/data/Leipzig/E51B-octaveParensRight.xml deleted file mode 100644 index b71c020c747..00000000000 --- a/data/Leipzig/E51B-octaveParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E51B.xml b/data/Leipzig/E51B.xml new file mode 100644 index 00000000000..9bd6efaad07 --- /dev/null +++ b/data/Leipzig/E51B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E51C-ottavaBassaVb.xml b/data/Leipzig/E51C-ottavaBassaVb.xml deleted file mode 100644 index b0aea0d5e42..00000000000 --- a/data/Leipzig/E51C-ottavaBassaVb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E51C.xml b/data/Leipzig/E51C.xml new file mode 100644 index 00000000000..88df166fc4b --- /dev/null +++ b/data/Leipzig/E51C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E51D-quindicesimaBassaMb.xml b/data/Leipzig/E51D-quindicesimaBassaMb.xml deleted file mode 100644 index 37abc267db8..00000000000 --- a/data/Leipzig/E51D-quindicesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E51D.xml b/data/Leipzig/E51D.xml new file mode 100644 index 00000000000..7f9af3643d2 --- /dev/null +++ b/data/Leipzig/E51D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E51E-ventiduesimaBassaMb.xml b/data/Leipzig/E51E-ventiduesimaBassaMb.xml deleted file mode 100644 index 0bcebe4e77b..00000000000 --- a/data/Leipzig/E51E-ventiduesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E51E.xml b/data/Leipzig/E51E.xml new file mode 100644 index 00000000000..39ec919559b --- /dev/null +++ b/data/Leipzig/E51E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E520-dynamicPiano.xml b/data/Leipzig/E520-dynamicPiano.xml deleted file mode 100644 index 170fb7fd183..00000000000 --- a/data/Leipzig/E520-dynamicPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E520.xml b/data/Leipzig/E520.xml new file mode 100644 index 00000000000..2e112af05aa --- /dev/null +++ b/data/Leipzig/E520.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E521-dynamicMezzo.xml b/data/Leipzig/E521-dynamicMezzo.xml deleted file mode 100644 index 5b700da4f76..00000000000 --- a/data/Leipzig/E521-dynamicMezzo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E521.xml b/data/Leipzig/E521.xml new file mode 100644 index 00000000000..04d9ce80d1d --- /dev/null +++ b/data/Leipzig/E521.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E522-dynamicForte.xml b/data/Leipzig/E522-dynamicForte.xml deleted file mode 100644 index 620da5029d7..00000000000 --- a/data/Leipzig/E522-dynamicForte.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E522.xml b/data/Leipzig/E522.xml new file mode 100644 index 00000000000..b007485b28f --- /dev/null +++ b/data/Leipzig/E522.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E523-dynamicRinforzando.xml b/data/Leipzig/E523-dynamicRinforzando.xml deleted file mode 100644 index 3442ac8214f..00000000000 --- a/data/Leipzig/E523-dynamicRinforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E523.xml b/data/Leipzig/E523.xml new file mode 100644 index 00000000000..2ac61ae2cb9 --- /dev/null +++ b/data/Leipzig/E523.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E524-dynamicSforzando.xml b/data/Leipzig/E524-dynamicSforzando.xml deleted file mode 100644 index 5d8d23f5736..00000000000 --- a/data/Leipzig/E524-dynamicSforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E524.xml b/data/Leipzig/E524.xml new file mode 100644 index 00000000000..af37987cb15 --- /dev/null +++ b/data/Leipzig/E524.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E525-dynamicZ.xml b/data/Leipzig/E525-dynamicZ.xml deleted file mode 100644 index fa03c8bdf05..00000000000 --- a/data/Leipzig/E525-dynamicZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E525.xml b/data/Leipzig/E525.xml new file mode 100644 index 00000000000..7f5493b72ac --- /dev/null +++ b/data/Leipzig/E525.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E526-dynamicNiente.xml b/data/Leipzig/E526-dynamicNiente.xml deleted file mode 100644 index bc42be0ef81..00000000000 --- a/data/Leipzig/E526-dynamicNiente.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E526.xml b/data/Leipzig/E526.xml new file mode 100644 index 00000000000..9c99d494654 --- /dev/null +++ b/data/Leipzig/E526.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E527-dynamicPPPPPP.xml b/data/Leipzig/E527-dynamicPPPPPP.xml deleted file mode 100644 index 6ff1a520766..00000000000 --- a/data/Leipzig/E527-dynamicPPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E527.xml b/data/Leipzig/E527.xml new file mode 100644 index 00000000000..81837f1806a --- /dev/null +++ b/data/Leipzig/E527.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E528-dynamicPPPPP.xml b/data/Leipzig/E528-dynamicPPPPP.xml deleted file mode 100644 index 32ccd476ec2..00000000000 --- a/data/Leipzig/E528-dynamicPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E528.xml b/data/Leipzig/E528.xml new file mode 100644 index 00000000000..4566b10c040 --- /dev/null +++ b/data/Leipzig/E528.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E529-dynamicPPPP.xml b/data/Leipzig/E529-dynamicPPPP.xml deleted file mode 100644 index 92e21829719..00000000000 --- a/data/Leipzig/E529-dynamicPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E529.xml b/data/Leipzig/E529.xml new file mode 100644 index 00000000000..769d7b332e0 --- /dev/null +++ b/data/Leipzig/E529.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E52A-dynamicPPP.xml b/data/Leipzig/E52A-dynamicPPP.xml deleted file mode 100644 index e23d2828d31..00000000000 --- a/data/Leipzig/E52A-dynamicPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E52A.xml b/data/Leipzig/E52A.xml new file mode 100644 index 00000000000..512ad3fb4a3 --- /dev/null +++ b/data/Leipzig/E52A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E52B-dynamicPP.xml b/data/Leipzig/E52B-dynamicPP.xml deleted file mode 100644 index d5bde8f1eab..00000000000 --- a/data/Leipzig/E52B-dynamicPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E52B.xml b/data/Leipzig/E52B.xml new file mode 100644 index 00000000000..0e57b046dcb --- /dev/null +++ b/data/Leipzig/E52B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E52C-dynamicMP.xml b/data/Leipzig/E52C-dynamicMP.xml deleted file mode 100644 index 447ad216d0d..00000000000 --- a/data/Leipzig/E52C-dynamicMP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E52C.xml b/data/Leipzig/E52C.xml new file mode 100644 index 00000000000..9880bfad5ed --- /dev/null +++ b/data/Leipzig/E52C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E52D-dynamicMF.xml b/data/Leipzig/E52D-dynamicMF.xml deleted file mode 100644 index d71f9010298..00000000000 --- a/data/Leipzig/E52D-dynamicMF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E52D.xml b/data/Leipzig/E52D.xml new file mode 100644 index 00000000000..0381d6b5031 --- /dev/null +++ b/data/Leipzig/E52D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E52E-dynamicPF.xml b/data/Leipzig/E52E-dynamicPF.xml deleted file mode 100644 index 0ac6cdc403b..00000000000 --- a/data/Leipzig/E52E-dynamicPF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E52E.xml b/data/Leipzig/E52E.xml new file mode 100644 index 00000000000..ca14b1496e1 --- /dev/null +++ b/data/Leipzig/E52E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E52F-dynamicFF.xml b/data/Leipzig/E52F-dynamicFF.xml deleted file mode 100644 index 790202da673..00000000000 --- a/data/Leipzig/E52F-dynamicFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E52F.xml b/data/Leipzig/E52F.xml new file mode 100644 index 00000000000..de4b0c6a33c --- /dev/null +++ b/data/Leipzig/E52F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E530-dynamicFFF.xml b/data/Leipzig/E530-dynamicFFF.xml deleted file mode 100644 index b79f4593013..00000000000 --- a/data/Leipzig/E530-dynamicFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E530.xml b/data/Leipzig/E530.xml new file mode 100644 index 00000000000..912010640fc --- /dev/null +++ b/data/Leipzig/E530.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E531-dynamicFFFF.xml b/data/Leipzig/E531-dynamicFFFF.xml deleted file mode 100644 index e87dd2ed584..00000000000 --- a/data/Leipzig/E531-dynamicFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E531.xml b/data/Leipzig/E531.xml new file mode 100644 index 00000000000..4f365e1b0b7 --- /dev/null +++ b/data/Leipzig/E531.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E532-dynamicFFFFF.xml b/data/Leipzig/E532-dynamicFFFFF.xml deleted file mode 100644 index 1630b3ae700..00000000000 --- a/data/Leipzig/E532-dynamicFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E532.xml b/data/Leipzig/E532.xml new file mode 100644 index 00000000000..625d20631c7 --- /dev/null +++ b/data/Leipzig/E532.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E533-dynamicFFFFFF.xml b/data/Leipzig/E533-dynamicFFFFFF.xml deleted file mode 100644 index d308fe7bdf8..00000000000 --- a/data/Leipzig/E533-dynamicFFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E533.xml b/data/Leipzig/E533.xml new file mode 100644 index 00000000000..b86a7619961 --- /dev/null +++ b/data/Leipzig/E533.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E534-dynamicFortePiano.xml b/data/Leipzig/E534-dynamicFortePiano.xml deleted file mode 100644 index a80c797c036..00000000000 --- a/data/Leipzig/E534-dynamicFortePiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E534.xml b/data/Leipzig/E534.xml new file mode 100644 index 00000000000..a1cc84253c7 --- /dev/null +++ b/data/Leipzig/E534.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E535-dynamicForzando.xml b/data/Leipzig/E535-dynamicForzando.xml deleted file mode 100644 index 48b9e2b43ec..00000000000 --- a/data/Leipzig/E535-dynamicForzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E535.xml b/data/Leipzig/E535.xml new file mode 100644 index 00000000000..31c43dd700b --- /dev/null +++ b/data/Leipzig/E535.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E536-dynamicSforzando1.xml b/data/Leipzig/E536-dynamicSforzando1.xml deleted file mode 100644 index 7ffa7279a4a..00000000000 --- a/data/Leipzig/E536-dynamicSforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E536.xml b/data/Leipzig/E536.xml new file mode 100644 index 00000000000..146e30af55b --- /dev/null +++ b/data/Leipzig/E536.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E537-dynamicSforzandoPiano.xml b/data/Leipzig/E537-dynamicSforzandoPiano.xml deleted file mode 100644 index e6de2b9692e..00000000000 --- a/data/Leipzig/E537-dynamicSforzandoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E537.xml b/data/Leipzig/E537.xml new file mode 100644 index 00000000000..69472358d61 --- /dev/null +++ b/data/Leipzig/E537.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E538-dynamicSforzandoPianissimo.xml b/data/Leipzig/E538-dynamicSforzandoPianissimo.xml deleted file mode 100644 index 2e626cf6548..00000000000 --- a/data/Leipzig/E538-dynamicSforzandoPianissimo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E538.xml b/data/Leipzig/E538.xml new file mode 100644 index 00000000000..47077996d3f --- /dev/null +++ b/data/Leipzig/E538.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E539-dynamicSforzato.xml b/data/Leipzig/E539-dynamicSforzato.xml deleted file mode 100644 index 8be6dbbaa7d..00000000000 --- a/data/Leipzig/E539-dynamicSforzato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E539.xml b/data/Leipzig/E539.xml new file mode 100644 index 00000000000..ffc7e82b10b --- /dev/null +++ b/data/Leipzig/E539.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E53A-dynamicSforzatoPiano.xml b/data/Leipzig/E53A-dynamicSforzatoPiano.xml deleted file mode 100644 index 57eb85118d0..00000000000 --- a/data/Leipzig/E53A-dynamicSforzatoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E53A.xml b/data/Leipzig/E53A.xml new file mode 100644 index 00000000000..123f2e2fdaa --- /dev/null +++ b/data/Leipzig/E53A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E53B-dynamicSforzatoFF.xml b/data/Leipzig/E53B-dynamicSforzatoFF.xml deleted file mode 100644 index 9140f459219..00000000000 --- a/data/Leipzig/E53B-dynamicSforzatoFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E53B.xml b/data/Leipzig/E53B.xml new file mode 100644 index 00000000000..047206be8c9 --- /dev/null +++ b/data/Leipzig/E53B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E53C-dynamicRinforzando1.xml b/data/Leipzig/E53C-dynamicRinforzando1.xml deleted file mode 100644 index 17f2ae5f1db..00000000000 --- a/data/Leipzig/E53C-dynamicRinforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E53C.xml b/data/Leipzig/E53C.xml new file mode 100644 index 00000000000..d719c64d458 --- /dev/null +++ b/data/Leipzig/E53C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E53D-dynamicRinforzando2.xml b/data/Leipzig/E53D-dynamicRinforzando2.xml deleted file mode 100644 index 9e4da21abe3..00000000000 --- a/data/Leipzig/E53D-dynamicRinforzando2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E53D.xml b/data/Leipzig/E53D.xml new file mode 100644 index 00000000000..14e3bf4af7b --- /dev/null +++ b/data/Leipzig/E53D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E566-ornamentTrill.xml b/data/Leipzig/E566-ornamentTrill.xml deleted file mode 100644 index 37ed1cbaa60..00000000000 --- a/data/Leipzig/E566-ornamentTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E566.xml b/data/Leipzig/E566.xml new file mode 100644 index 00000000000..907f2b440c5 --- /dev/null +++ b/data/Leipzig/E566.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E567-ornamentTurn.xml b/data/Leipzig/E567-ornamentTurn.xml deleted file mode 100644 index a35e81d788a..00000000000 --- a/data/Leipzig/E567-ornamentTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E567.xml b/data/Leipzig/E567.xml new file mode 100644 index 00000000000..67a47b7de63 --- /dev/null +++ b/data/Leipzig/E567.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E568-ornamentTurnInverted.xml b/data/Leipzig/E568-ornamentTurnInverted.xml deleted file mode 100644 index 6b02d1b62ce..00000000000 --- a/data/Leipzig/E568-ornamentTurnInverted.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E568.xml b/data/Leipzig/E568.xml new file mode 100644 index 00000000000..7c071f11300 --- /dev/null +++ b/data/Leipzig/E568.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E569-ornamentTurnSlash.xml b/data/Leipzig/E569-ornamentTurnSlash.xml deleted file mode 100644 index b99dc40e1ea..00000000000 --- a/data/Leipzig/E569-ornamentTurnSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E569.xml b/data/Leipzig/E569.xml new file mode 100644 index 00000000000..1c396713737 --- /dev/null +++ b/data/Leipzig/E569.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E56A-ornamentTurnUp.xml b/data/Leipzig/E56A-ornamentTurnUp.xml deleted file mode 100644 index bcf05ddb10f..00000000000 --- a/data/Leipzig/E56A-ornamentTurnUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E56A.xml b/data/Leipzig/E56A.xml new file mode 100644 index 00000000000..00d92312fea --- /dev/null +++ b/data/Leipzig/E56A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E56B-ornamentTurnUpS.xml b/data/Leipzig/E56B-ornamentTurnUpS.xml deleted file mode 100644 index 4943a8a0b55..00000000000 --- a/data/Leipzig/E56B-ornamentTurnUpS.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E56B.xml b/data/Leipzig/E56B.xml new file mode 100644 index 00000000000..4f5042f6e3c --- /dev/null +++ b/data/Leipzig/E56B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E56C-ornamentShortTrill.xml b/data/Leipzig/E56C-ornamentShortTrill.xml deleted file mode 100644 index 2f1176fee1b..00000000000 --- a/data/Leipzig/E56C-ornamentShortTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E56C.xml b/data/Leipzig/E56C.xml new file mode 100644 index 00000000000..427ca0baf8a --- /dev/null +++ b/data/Leipzig/E56C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E56D-ornamentMordent.xml b/data/Leipzig/E56D-ornamentMordent.xml deleted file mode 100644 index 8d4a5fc58ad..00000000000 --- a/data/Leipzig/E56D-ornamentMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E56D.xml b/data/Leipzig/E56D.xml new file mode 100644 index 00000000000..44bc170f037 --- /dev/null +++ b/data/Leipzig/E56D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E56E-ornamentTremblement.xml b/data/Leipzig/E56E-ornamentTremblement.xml deleted file mode 100644 index 8b4070d51db..00000000000 --- a/data/Leipzig/E56E-ornamentTremblement.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E56E.xml b/data/Leipzig/E56E.xml new file mode 100644 index 00000000000..6dacafb476b --- /dev/null +++ b/data/Leipzig/E56E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E56F-ornamentHaydn.xml b/data/Leipzig/E56F-ornamentHaydn.xml deleted file mode 100644 index ab45bc1f8a6..00000000000 --- a/data/Leipzig/E56F-ornamentHaydn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E56F.xml b/data/Leipzig/E56F.xml new file mode 100644 index 00000000000..3a78e721324 --- /dev/null +++ b/data/Leipzig/E56F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E583-ornamentVerticalLine.xml b/data/Leipzig/E583-ornamentVerticalLine.xml deleted file mode 100644 index eaabecf03f2..00000000000 --- a/data/Leipzig/E583-ornamentVerticalLine.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E583.xml b/data/Leipzig/E583.xml new file mode 100644 index 00000000000..55fd2fd3c9d --- /dev/null +++ b/data/Leipzig/E583.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E587-ornamentSchleifer.xml b/data/Leipzig/E587-ornamentSchleifer.xml deleted file mode 100644 index fb209b4b6b1..00000000000 --- a/data/Leipzig/E587-ornamentSchleifer.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E587.xml b/data/Leipzig/E587.xml new file mode 100644 index 00000000000..c7c3a81589d --- /dev/null +++ b/data/Leipzig/E587.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E59D-ornamentZigZagLineNoRightEnd.xml b/data/Leipzig/E59D-ornamentZigZagLineNoRightEnd.xml deleted file mode 100644 index e64269c3b2f..00000000000 --- a/data/Leipzig/E59D-ornamentZigZagLineNoRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E59D.xml b/data/Leipzig/E59D.xml new file mode 100644 index 00000000000..a95b7444d1b --- /dev/null +++ b/data/Leipzig/E59D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E59E-ornamentZigZagLineWithRightEnd.xml b/data/Leipzig/E59E-ornamentZigZagLineWithRightEnd.xml deleted file mode 100644 index f68ea5ce1ac..00000000000 --- a/data/Leipzig/E59E-ornamentZigZagLineWithRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E59E.xml b/data/Leipzig/E59E.xml new file mode 100644 index 00000000000..6d3534f3af2 --- /dev/null +++ b/data/Leipzig/E59E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B0-ornamentPrecompSlide.xml b/data/Leipzig/E5B0-ornamentPrecompSlide.xml deleted file mode 100644 index fc45adb1d2a..00000000000 --- a/data/Leipzig/E5B0-ornamentPrecompSlide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B0.xml b/data/Leipzig/E5B0.xml new file mode 100644 index 00000000000..9adf8632158 --- /dev/null +++ b/data/Leipzig/E5B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B1-ornamentPrecompDescendingSlide.xml b/data/Leipzig/E5B1-ornamentPrecompDescendingSlide.xml deleted file mode 100644 index e345832025c..00000000000 --- a/data/Leipzig/E5B1-ornamentPrecompDescendingSlide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B1.xml b/data/Leipzig/E5B1.xml new file mode 100644 index 00000000000..7942474898a --- /dev/null +++ b/data/Leipzig/E5B1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B2-ornamentPrecompAppoggTrill.xml b/data/Leipzig/E5B2-ornamentPrecompAppoggTrill.xml deleted file mode 100644 index 13727ead5fe..00000000000 --- a/data/Leipzig/E5B2-ornamentPrecompAppoggTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B2.xml b/data/Leipzig/E5B2.xml new file mode 100644 index 00000000000..2ce71bbf0a9 --- /dev/null +++ b/data/Leipzig/E5B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B3-ornamentPrecompAppoggTrillSuffix.xml b/data/Leipzig/E5B3-ornamentPrecompAppoggTrillSuffix.xml deleted file mode 100644 index 2679aafa0f6..00000000000 --- a/data/Leipzig/E5B3-ornamentPrecompAppoggTrillSuffix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B3.xml b/data/Leipzig/E5B3.xml new file mode 100644 index 00000000000..9f293e2888b --- /dev/null +++ b/data/Leipzig/E5B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B4-ornamentPrecompTurnTrillDAnglebert.xml b/data/Leipzig/E5B4-ornamentPrecompTurnTrillDAnglebert.xml deleted file mode 100644 index fbe33766e1b..00000000000 --- a/data/Leipzig/E5B4-ornamentPrecompTurnTrillDAnglebert.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B4.xml b/data/Leipzig/E5B4.xml new file mode 100644 index 00000000000..5524b8d2791 --- /dev/null +++ b/data/Leipzig/E5B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B5-ornamentPrecompSlideTrillDAnglebert.xml b/data/Leipzig/E5B5-ornamentPrecompSlideTrillDAnglebert.xml deleted file mode 100644 index 938f0243ac0..00000000000 --- a/data/Leipzig/E5B5-ornamentPrecompSlideTrillDAnglebert.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B5.xml b/data/Leipzig/E5B5.xml new file mode 100644 index 00000000000..5c5cbf17798 --- /dev/null +++ b/data/Leipzig/E5B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B6-ornamentPrecompSlideTrillMarpurg.xml b/data/Leipzig/E5B6-ornamentPrecompSlideTrillMarpurg.xml deleted file mode 100644 index 65fe1f11ece..00000000000 --- a/data/Leipzig/E5B6-ornamentPrecompSlideTrillMarpurg.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B6.xml b/data/Leipzig/E5B6.xml new file mode 100644 index 00000000000..22c98767ab1 --- /dev/null +++ b/data/Leipzig/E5B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B7-ornamentPrecompTurnTrillBach.xml b/data/Leipzig/E5B7-ornamentPrecompTurnTrillBach.xml deleted file mode 100644 index c296166b25d..00000000000 --- a/data/Leipzig/E5B7-ornamentPrecompTurnTrillBach.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B7.xml b/data/Leipzig/E5B7.xml new file mode 100644 index 00000000000..a8baa037577 --- /dev/null +++ b/data/Leipzig/E5B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B8-ornamentPrecompSlideTrillBach.xml b/data/Leipzig/E5B8-ornamentPrecompSlideTrillBach.xml deleted file mode 100644 index 075612b711a..00000000000 --- a/data/Leipzig/E5B8-ornamentPrecompSlideTrillBach.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B8.xml b/data/Leipzig/E5B8.xml new file mode 100644 index 00000000000..69277799d74 --- /dev/null +++ b/data/Leipzig/E5B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5B9-ornamentPrecompSlideTrillMuffat.xml b/data/Leipzig/E5B9-ornamentPrecompSlideTrillMuffat.xml deleted file mode 100644 index 9633e0185a6..00000000000 --- a/data/Leipzig/E5B9-ornamentPrecompSlideTrillMuffat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5B9.xml b/data/Leipzig/E5B9.xml new file mode 100644 index 00000000000..d7362933508 --- /dev/null +++ b/data/Leipzig/E5B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml b/data/Leipzig/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml deleted file mode 100644 index b96d4a78f41..00000000000 --- a/data/Leipzig/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5BA.xml b/data/Leipzig/E5BA.xml new file mode 100644 index 00000000000..799ee1c35d1 --- /dev/null +++ b/data/Leipzig/E5BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5BB-ornamentPrecompTrillSuffixDandrieu.xml b/data/Leipzig/E5BB-ornamentPrecompTrillSuffixDandrieu.xml deleted file mode 100644 index d031eb42bce..00000000000 --- a/data/Leipzig/E5BB-ornamentPrecompTrillSuffixDandrieu.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5BB.xml b/data/Leipzig/E5BB.xml new file mode 100644 index 00000000000..87e52589a51 --- /dev/null +++ b/data/Leipzig/E5BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5BC-ornamentPrecompPortDeVoixMordent.xml b/data/Leipzig/E5BC-ornamentPrecompPortDeVoixMordent.xml deleted file mode 100644 index 478e0c6f80d..00000000000 --- a/data/Leipzig/E5BC-ornamentPrecompPortDeVoixMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5BC.xml b/data/Leipzig/E5BC.xml new file mode 100644 index 00000000000..e6dc7b62c1f --- /dev/null +++ b/data/Leipzig/E5BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5BD-ornamentPrecompTrillWithMordent.xml b/data/Leipzig/E5BD-ornamentPrecompTrillWithMordent.xml deleted file mode 100644 index 8d12c034d84..00000000000 --- a/data/Leipzig/E5BD-ornamentPrecompTrillWithMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5BD.xml b/data/Leipzig/E5BD.xml new file mode 100644 index 00000000000..44cd63cbd37 --- /dev/null +++ b/data/Leipzig/E5BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5BE-ornamentPrecompCadence.xml b/data/Leipzig/E5BE-ornamentPrecompCadence.xml deleted file mode 100644 index b1f1308ad3c..00000000000 --- a/data/Leipzig/E5BE-ornamentPrecompCadence.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5BE.xml b/data/Leipzig/E5BE.xml new file mode 100644 index 00000000000..b3d098cbea7 --- /dev/null +++ b/data/Leipzig/E5BE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5BF-ornamentPrecompCadenceWithTurn.xml b/data/Leipzig/E5BF-ornamentPrecompCadenceWithTurn.xml deleted file mode 100644 index 6efcf1a4861..00000000000 --- a/data/Leipzig/E5BF-ornamentPrecompCadenceWithTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5BF.xml b/data/Leipzig/E5BF.xml new file mode 100644 index 00000000000..d9ed36d26ff --- /dev/null +++ b/data/Leipzig/E5BF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml b/data/Leipzig/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml deleted file mode 100644 index be891810af2..00000000000 --- a/data/Leipzig/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C0.xml b/data/Leipzig/E5C0.xml new file mode 100644 index 00000000000..bde9cc7128c --- /dev/null +++ b/data/Leipzig/E5C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C1-ornamentPrecompCadenceUpperPrefix.xml b/data/Leipzig/E5C1-ornamentPrecompCadenceUpperPrefix.xml deleted file mode 100644 index 87cd06a8c07..00000000000 --- a/data/Leipzig/E5C1-ornamentPrecompCadenceUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C1.xml b/data/Leipzig/E5C1.xml new file mode 100644 index 00000000000..2fd40a2d740 --- /dev/null +++ b/data/Leipzig/E5C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml b/data/Leipzig/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml deleted file mode 100644 index f1828043385..00000000000 --- a/data/Leipzig/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C2.xml b/data/Leipzig/E5C2.xml new file mode 100644 index 00000000000..d302024cc67 --- /dev/null +++ b/data/Leipzig/E5C2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml b/data/Leipzig/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml deleted file mode 100644 index e0eeb43657b..00000000000 --- a/data/Leipzig/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C3.xml b/data/Leipzig/E5C3.xml new file mode 100644 index 00000000000..3b2717fd9da --- /dev/null +++ b/data/Leipzig/E5C3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml b/data/Leipzig/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml deleted file mode 100644 index 5b4c68317e1..00000000000 --- a/data/Leipzig/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C4.xml b/data/Leipzig/E5C4.xml new file mode 100644 index 00000000000..d6af2e853f3 --- /dev/null +++ b/data/Leipzig/E5C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C5-ornamentPrecompMordentRelease.xml b/data/Leipzig/E5C5-ornamentPrecompMordentRelease.xml deleted file mode 100644 index fe0bd76fe7a..00000000000 --- a/data/Leipzig/E5C5-ornamentPrecompMordentRelease.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C5.xml b/data/Leipzig/E5C5.xml new file mode 100644 index 00000000000..2a225c2abef --- /dev/null +++ b/data/Leipzig/E5C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C6-ornamentPrecompMordentUpperPrefix.xml b/data/Leipzig/E5C6-ornamentPrecompMordentUpperPrefix.xml deleted file mode 100644 index bf5009f17f2..00000000000 --- a/data/Leipzig/E5C6-ornamentPrecompMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C6.xml b/data/Leipzig/E5C6.xml new file mode 100644 index 00000000000..e8e528f44a6 --- /dev/null +++ b/data/Leipzig/E5C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml b/data/Leipzig/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml deleted file mode 100644 index 08f16c4f618..00000000000 --- a/data/Leipzig/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C7.xml b/data/Leipzig/E5C7.xml new file mode 100644 index 00000000000..d96d5d1a4ff --- /dev/null +++ b/data/Leipzig/E5C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5C8-ornamentPrecompTrillLowerSuffix.xml b/data/Leipzig/E5C8-ornamentPrecompTrillLowerSuffix.xml deleted file mode 100644 index 92dd0a738c2..00000000000 --- a/data/Leipzig/E5C8-ornamentPrecompTrillLowerSuffix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5C8.xml b/data/Leipzig/E5C8.xml new file mode 100644 index 00000000000..a8e2c59802b --- /dev/null +++ b/data/Leipzig/E5C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5E5-brassMuteClosed.xml b/data/Leipzig/E5E5-brassMuteClosed.xml deleted file mode 100644 index 33f7599e87b..00000000000 --- a/data/Leipzig/E5E5-brassMuteClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5E5.xml b/data/Leipzig/E5E5.xml new file mode 100644 index 00000000000..29abaef5fc3 --- /dev/null +++ b/data/Leipzig/E5E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5E6-brassMuteHalfClosed.xml b/data/Leipzig/E5E6-brassMuteHalfClosed.xml deleted file mode 100644 index 1e0294918f2..00000000000 --- a/data/Leipzig/E5E6-brassMuteHalfClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5E6.xml b/data/Leipzig/E5E6.xml new file mode 100644 index 00000000000..baf29f0d395 --- /dev/null +++ b/data/Leipzig/E5E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E5E7-brassMuteOpen.xml b/data/Leipzig/E5E7-brassMuteOpen.xml deleted file mode 100644 index 306dd0f0241..00000000000 --- a/data/Leipzig/E5E7-brassMuteOpen.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E5E7.xml b/data/Leipzig/E5E7.xml new file mode 100644 index 00000000000..d1516652d80 --- /dev/null +++ b/data/Leipzig/E5E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E610-stringsDownBow.xml b/data/Leipzig/E610-stringsDownBow.xml deleted file mode 100644 index ea9ed89a9b8..00000000000 --- a/data/Leipzig/E610-stringsDownBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E610.xml b/data/Leipzig/E610.xml new file mode 100644 index 00000000000..3c28e5edacd --- /dev/null +++ b/data/Leipzig/E610.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E611-stringsDownBowTurned.xml b/data/Leipzig/E611-stringsDownBowTurned.xml deleted file mode 100644 index 0fce7c493ab..00000000000 --- a/data/Leipzig/E611-stringsDownBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E611.xml b/data/Leipzig/E611.xml new file mode 100644 index 00000000000..b245e7f0a21 --- /dev/null +++ b/data/Leipzig/E611.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E612-stringsUpBow.xml b/data/Leipzig/E612-stringsUpBow.xml deleted file mode 100644 index cc7ecc4067d..00000000000 --- a/data/Leipzig/E612-stringsUpBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E612.xml b/data/Leipzig/E612.xml new file mode 100644 index 00000000000..c44bc8a3546 --- /dev/null +++ b/data/Leipzig/E612.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E613-stringsUpBowTurned.xml b/data/Leipzig/E613-stringsUpBowTurned.xml deleted file mode 100644 index 1bd6751f8ca..00000000000 --- a/data/Leipzig/E613-stringsUpBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E613.xml b/data/Leipzig/E613.xml new file mode 100644 index 00000000000..98df92f0bb9 --- /dev/null +++ b/data/Leipzig/E613.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E614-stringsHarmonic.xml b/data/Leipzig/E614-stringsHarmonic.xml deleted file mode 100644 index f8dc3a258ed..00000000000 --- a/data/Leipzig/E614-stringsHarmonic.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E614.xml b/data/Leipzig/E614.xml new file mode 100644 index 00000000000..a62da41b9d9 --- /dev/null +++ b/data/Leipzig/E614.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E630-pluckedSnapPizzicatoBelow.xml b/data/Leipzig/E630-pluckedSnapPizzicatoBelow.xml deleted file mode 100644 index 80eb9d72db3..00000000000 --- a/data/Leipzig/E630-pluckedSnapPizzicatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E630.xml b/data/Leipzig/E630.xml new file mode 100644 index 00000000000..e5e14babb39 --- /dev/null +++ b/data/Leipzig/E630.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E631-pluckedSnapPizzicatoAbove.xml b/data/Leipzig/E631-pluckedSnapPizzicatoAbove.xml deleted file mode 100644 index d709748615e..00000000000 --- a/data/Leipzig/E631-pluckedSnapPizzicatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E631.xml b/data/Leipzig/E631.xml new file mode 100644 index 00000000000..bf4103a3749 --- /dev/null +++ b/data/Leipzig/E631.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E632-pluckedBuzzPizzicato.xml b/data/Leipzig/E632-pluckedBuzzPizzicato.xml deleted file mode 100644 index e64ff19e941..00000000000 --- a/data/Leipzig/E632-pluckedBuzzPizzicato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E632.xml b/data/Leipzig/E632.xml new file mode 100644 index 00000000000..05752ade7db --- /dev/null +++ b/data/Leipzig/E632.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E633-pluckedLeftHandPizzicato.xml b/data/Leipzig/E633-pluckedLeftHandPizzicato.xml deleted file mode 100644 index 504a3e68f19..00000000000 --- a/data/Leipzig/E633-pluckedLeftHandPizzicato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E633.xml b/data/Leipzig/E633.xml new file mode 100644 index 00000000000..c81234ec125 --- /dev/null +++ b/data/Leipzig/E633.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E638-pluckedDamp.xml b/data/Leipzig/E638-pluckedDamp.xml deleted file mode 100644 index 01499f882d9..00000000000 --- a/data/Leipzig/E638-pluckedDamp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E638.xml b/data/Leipzig/E638.xml new file mode 100644 index 00000000000..29d5737c3b5 --- /dev/null +++ b/data/Leipzig/E638.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E645-vocalSprechgesang.xml b/data/Leipzig/E645-vocalSprechgesang.xml deleted file mode 100644 index 5de369ecaa5..00000000000 --- a/data/Leipzig/E645-vocalSprechgesang.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E645.xml b/data/Leipzig/E645.xml new file mode 100644 index 00000000000..4e7fc6524b7 --- /dev/null +++ b/data/Leipzig/E645.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E650-keyboardPedalPed.xml b/data/Leipzig/E650-keyboardPedalPed.xml deleted file mode 100644 index f62ba204c86..00000000000 --- a/data/Leipzig/E650-keyboardPedalPed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E650.xml b/data/Leipzig/E650.xml new file mode 100644 index 00000000000..84403bf5f94 --- /dev/null +++ b/data/Leipzig/E650.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E651-keyboardPedalP.xml b/data/Leipzig/E651-keyboardPedalP.xml deleted file mode 100644 index 1db5bec531f..00000000000 --- a/data/Leipzig/E651-keyboardPedalP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E651.xml b/data/Leipzig/E651.xml new file mode 100644 index 00000000000..7cab0b5af84 --- /dev/null +++ b/data/Leipzig/E651.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E655-keyboardPedalUp.xml b/data/Leipzig/E655-keyboardPedalUp.xml deleted file mode 100644 index 7d145d6daa3..00000000000 --- a/data/Leipzig/E655-keyboardPedalUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E655.xml b/data/Leipzig/E655.xml new file mode 100644 index 00000000000..611de7b0546 --- /dev/null +++ b/data/Leipzig/E655.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E659-keyboardPedalSost.xml b/data/Leipzig/E659-keyboardPedalSost.xml deleted file mode 100644 index 2aed7fbbe53..00000000000 --- a/data/Leipzig/E659-keyboardPedalSost.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E659.xml b/data/Leipzig/E659.xml new file mode 100644 index 00000000000..0b28ce8e25c --- /dev/null +++ b/data/Leipzig/E659.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E65A-keyboardPedalS.xml b/data/Leipzig/E65A-keyboardPedalS.xml deleted file mode 100644 index 780e2191b16..00000000000 --- a/data/Leipzig/E65A-keyboardPedalS.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E65A.xml b/data/Leipzig/E65A.xml new file mode 100644 index 00000000000..f6554107ff6 --- /dev/null +++ b/data/Leipzig/E65A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E880-tuplet0.xml b/data/Leipzig/E880-tuplet0.xml deleted file mode 100644 index eb710651a0e..00000000000 --- a/data/Leipzig/E880-tuplet0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E880.xml b/data/Leipzig/E880.xml new file mode 100644 index 00000000000..80a304e7c21 --- /dev/null +++ b/data/Leipzig/E880.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E881-tuplet1.xml b/data/Leipzig/E881-tuplet1.xml deleted file mode 100644 index 272b4307448..00000000000 --- a/data/Leipzig/E881-tuplet1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E881.xml b/data/Leipzig/E881.xml new file mode 100644 index 00000000000..4b21da34b5d --- /dev/null +++ b/data/Leipzig/E881.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E882-tuplet2.xml b/data/Leipzig/E882-tuplet2.xml deleted file mode 100644 index 1f79b8b5840..00000000000 --- a/data/Leipzig/E882-tuplet2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E882.xml b/data/Leipzig/E882.xml new file mode 100644 index 00000000000..72e887bf91f --- /dev/null +++ b/data/Leipzig/E882.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E883-tuplet3.xml b/data/Leipzig/E883-tuplet3.xml deleted file mode 100644 index 77649644b34..00000000000 --- a/data/Leipzig/E883-tuplet3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E883.xml b/data/Leipzig/E883.xml new file mode 100644 index 00000000000..50cf62fde50 --- /dev/null +++ b/data/Leipzig/E883.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E884-tuplet4.xml b/data/Leipzig/E884-tuplet4.xml deleted file mode 100644 index 291d25906ef..00000000000 --- a/data/Leipzig/E884-tuplet4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E884.xml b/data/Leipzig/E884.xml new file mode 100644 index 00000000000..5885ff2843b --- /dev/null +++ b/data/Leipzig/E884.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E885-tuplet5.xml b/data/Leipzig/E885-tuplet5.xml deleted file mode 100644 index c72c1db74b5..00000000000 --- a/data/Leipzig/E885-tuplet5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E885.xml b/data/Leipzig/E885.xml new file mode 100644 index 00000000000..e3ee8498859 --- /dev/null +++ b/data/Leipzig/E885.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E886-tuplet6.xml b/data/Leipzig/E886-tuplet6.xml deleted file mode 100644 index 6d182f7c56c..00000000000 --- a/data/Leipzig/E886-tuplet6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E886.xml b/data/Leipzig/E886.xml new file mode 100644 index 00000000000..d6463ac33e7 --- /dev/null +++ b/data/Leipzig/E886.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E887-tuplet7.xml b/data/Leipzig/E887-tuplet7.xml deleted file mode 100644 index 1e8d153b8a1..00000000000 --- a/data/Leipzig/E887-tuplet7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E887.xml b/data/Leipzig/E887.xml new file mode 100644 index 00000000000..5fa252070d3 --- /dev/null +++ b/data/Leipzig/E887.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E888-tuplet8.xml b/data/Leipzig/E888-tuplet8.xml deleted file mode 100644 index a49a3242188..00000000000 --- a/data/Leipzig/E888-tuplet8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E888.xml b/data/Leipzig/E888.xml new file mode 100644 index 00000000000..7ea316ee2b6 --- /dev/null +++ b/data/Leipzig/E888.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E889-tuplet9.xml b/data/Leipzig/E889-tuplet9.xml deleted file mode 100644 index b77e92a7f6d..00000000000 --- a/data/Leipzig/E889-tuplet9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E889.xml b/data/Leipzig/E889.xml new file mode 100644 index 00000000000..e7c80c89114 --- /dev/null +++ b/data/Leipzig/E889.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E88A-tupletColon.xml b/data/Leipzig/E88A-tupletColon.xml deleted file mode 100644 index 3481055de89..00000000000 --- a/data/Leipzig/E88A-tupletColon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E88A.xml b/data/Leipzig/E88A.xml new file mode 100644 index 00000000000..4a16a6ef462 --- /dev/null +++ b/data/Leipzig/E88A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E901-mensuralGclefPetrucci.xml b/data/Leipzig/E901-mensuralGclefPetrucci.xml deleted file mode 100644 index 56aea5923b4..00000000000 --- a/data/Leipzig/E901-mensuralGclefPetrucci.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E901.xml b/data/Leipzig/E901.xml new file mode 100644 index 00000000000..e0bfb1499be --- /dev/null +++ b/data/Leipzig/E901.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E902-chantFclef.xml b/data/Leipzig/E902-chantFclef.xml deleted file mode 100644 index 9a295bd77fd..00000000000 --- a/data/Leipzig/E902-chantFclef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E902.xml b/data/Leipzig/E902.xml new file mode 100644 index 00000000000..815229be60e --- /dev/null +++ b/data/Leipzig/E902.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E904-mensuralFclefPetrucci.xml b/data/Leipzig/E904-mensuralFclefPetrucci.xml deleted file mode 100644 index 9e724514e3e..00000000000 --- a/data/Leipzig/E904-mensuralFclefPetrucci.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E904.xml b/data/Leipzig/E904.xml new file mode 100644 index 00000000000..35f8a2cf18e --- /dev/null +++ b/data/Leipzig/E904.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E906-chantCclef.xml b/data/Leipzig/E906-chantCclef.xml deleted file mode 100644 index 836fc423de3..00000000000 --- a/data/Leipzig/E906-chantCclef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E906.xml b/data/Leipzig/E906.xml new file mode 100644 index 00000000000..c951658bd94 --- /dev/null +++ b/data/Leipzig/E906.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E907.xml b/data/Leipzig/E907.xml new file mode 100644 index 00000000000..397dec58f1a --- /dev/null +++ b/data/Leipzig/E907.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E908.xml b/data/Leipzig/E908.xml new file mode 100644 index 00000000000..f20df3799bd --- /dev/null +++ b/data/Leipzig/E908.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E909-mensuralCclefPetrucciPosMiddle.xml b/data/Leipzig/E909-mensuralCclefPetrucciPosMiddle.xml deleted file mode 100644 index 9824fffaf4a..00000000000 --- a/data/Leipzig/E909-mensuralCclefPetrucciPosMiddle.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E909.xml b/data/Leipzig/E909.xml new file mode 100644 index 00000000000..373ce47a94d --- /dev/null +++ b/data/Leipzig/E909.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E90A.xml b/data/Leipzig/E90A.xml new file mode 100644 index 00000000000..5156616fdb5 --- /dev/null +++ b/data/Leipzig/E90A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E90B.xml b/data/Leipzig/E90B.xml new file mode 100644 index 00000000000..e30952a0b01 --- /dev/null +++ b/data/Leipzig/E90B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E910-mensuralProlation1.xml b/data/Leipzig/E910-mensuralProlation1.xml deleted file mode 100644 index 4fba3749924..00000000000 --- a/data/Leipzig/E910-mensuralProlation1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E910.xml b/data/Leipzig/E910.xml new file mode 100644 index 00000000000..e487461dab4 --- /dev/null +++ b/data/Leipzig/E910.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E911-mensuralProlation2.xml b/data/Leipzig/E911-mensuralProlation2.xml deleted file mode 100644 index 082710efb45..00000000000 --- a/data/Leipzig/E911-mensuralProlation2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E911.xml b/data/Leipzig/E911.xml new file mode 100644 index 00000000000..89f2d4c91fd --- /dev/null +++ b/data/Leipzig/E911.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E912-mensuralProlation3.xml b/data/Leipzig/E912-mensuralProlation3.xml deleted file mode 100644 index 8adab937c8a..00000000000 --- a/data/Leipzig/E912-mensuralProlation3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E912.xml b/data/Leipzig/E912.xml new file mode 100644 index 00000000000..dbdd2bd5d1f --- /dev/null +++ b/data/Leipzig/E912.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E913-mensuralProlation4.xml b/data/Leipzig/E913-mensuralProlation4.xml deleted file mode 100644 index eec723d8a6e..00000000000 --- a/data/Leipzig/E913-mensuralProlation4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E913.xml b/data/Leipzig/E913.xml new file mode 100644 index 00000000000..0762770e86f --- /dev/null +++ b/data/Leipzig/E913.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E914-mensuralProlation5.xml b/data/Leipzig/E914-mensuralProlation5.xml deleted file mode 100644 index ea63567909f..00000000000 --- a/data/Leipzig/E914-mensuralProlation5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E914.xml b/data/Leipzig/E914.xml new file mode 100644 index 00000000000..88632803b14 --- /dev/null +++ b/data/Leipzig/E914.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E915-mensuralProlation6.xml b/data/Leipzig/E915-mensuralProlation6.xml deleted file mode 100644 index a156a376170..00000000000 --- a/data/Leipzig/E915-mensuralProlation6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E915.xml b/data/Leipzig/E915.xml new file mode 100644 index 00000000000..b23cd310075 --- /dev/null +++ b/data/Leipzig/E915.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E916-mensuralProlation7.xml b/data/Leipzig/E916-mensuralProlation7.xml deleted file mode 100644 index d7adaf3e62c..00000000000 --- a/data/Leipzig/E916-mensuralProlation7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E916.xml b/data/Leipzig/E916.xml new file mode 100644 index 00000000000..7207a76ba6f --- /dev/null +++ b/data/Leipzig/E916.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E917-mensuralProlation8.xml b/data/Leipzig/E917-mensuralProlation8.xml deleted file mode 100644 index 29f1e8de704..00000000000 --- a/data/Leipzig/E917-mensuralProlation8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E917.xml b/data/Leipzig/E917.xml new file mode 100644 index 00000000000..d153ffdeb24 --- /dev/null +++ b/data/Leipzig/E917.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E918-mensuralProlation9.xml b/data/Leipzig/E918-mensuralProlation9.xml deleted file mode 100644 index eb43a50d1e5..00000000000 --- a/data/Leipzig/E918-mensuralProlation9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E918.xml b/data/Leipzig/E918.xml new file mode 100644 index 00000000000..62f813dc12c --- /dev/null +++ b/data/Leipzig/E918.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E919-mensuralProlation10.xml b/data/Leipzig/E919-mensuralProlation10.xml deleted file mode 100644 index 2ae7d417a2f..00000000000 --- a/data/Leipzig/E919-mensuralProlation10.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E919.xml b/data/Leipzig/E919.xml new file mode 100644 index 00000000000..553672f8793 --- /dev/null +++ b/data/Leipzig/E919.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E91A-mensuralProlation11.xml b/data/Leipzig/E91A-mensuralProlation11.xml deleted file mode 100644 index f9c992afa7b..00000000000 --- a/data/Leipzig/E91A-mensuralProlation11.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E91A.xml b/data/Leipzig/E91A.xml new file mode 100644 index 00000000000..80d9bdd1a46 --- /dev/null +++ b/data/Leipzig/E91A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E91B-mensuralProportionTempusPerfectum.xml b/data/Leipzig/E91B-mensuralProportionTempusPerfectum.xml deleted file mode 100644 index 55fd7470f62..00000000000 --- a/data/Leipzig/E91B-mensuralProportionTempusPerfectum.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E91B.xml b/data/Leipzig/E91B.xml new file mode 100644 index 00000000000..f81158cbf92 --- /dev/null +++ b/data/Leipzig/E91B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E91C-mensuralProportionProportioDupla1.xml b/data/Leipzig/E91C-mensuralProportionProportioDupla1.xml deleted file mode 100644 index 12d33d8a6e4..00000000000 --- a/data/Leipzig/E91C-mensuralProportionProportioDupla1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E91C.xml b/data/Leipzig/E91C.xml new file mode 100644 index 00000000000..e66bdd0a9f2 --- /dev/null +++ b/data/Leipzig/E91C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E91D-mensuralProportionProportioDupla2.xml b/data/Leipzig/E91D-mensuralProportionProportioDupla2.xml deleted file mode 100644 index a9184445d88..00000000000 --- a/data/Leipzig/E91D-mensuralProportionProportioDupla2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E91D.xml b/data/Leipzig/E91D.xml new file mode 100644 index 00000000000..231bbd96bff --- /dev/null +++ b/data/Leipzig/E91D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E91E-mensuralProportionProportioTripla.xml b/data/Leipzig/E91E-mensuralProportionProportioTripla.xml deleted file mode 100644 index 7b0ca3a70c2..00000000000 --- a/data/Leipzig/E91E-mensuralProportionProportioTripla.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E91E.xml b/data/Leipzig/E91E.xml new file mode 100644 index 00000000000..8f6df2785e3 --- /dev/null +++ b/data/Leipzig/E91E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E91F-mensuralProportionProportioQuadrupla.xml b/data/Leipzig/E91F-mensuralProportionProportioQuadrupla.xml deleted file mode 100644 index d8cae709906..00000000000 --- a/data/Leipzig/E91F-mensuralProportionProportioQuadrupla.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E91F.xml b/data/Leipzig/E91F.xml new file mode 100644 index 00000000000..5a390be6151 --- /dev/null +++ b/data/Leipzig/E91F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E920-mensuralProlationCombiningDot.xml b/data/Leipzig/E920-mensuralProlationCombiningDot.xml deleted file mode 100644 index a1c6a04c142..00000000000 --- a/data/Leipzig/E920-mensuralProlationCombiningDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E920.xml b/data/Leipzig/E920.xml new file mode 100644 index 00000000000..98101a350c1 --- /dev/null +++ b/data/Leipzig/E920.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E921-mensuralProlationCombiningTwoDots.xml b/data/Leipzig/E921-mensuralProlationCombiningTwoDots.xml deleted file mode 100644 index 9cecb651c58..00000000000 --- a/data/Leipzig/E921-mensuralProlationCombiningTwoDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E921.xml b/data/Leipzig/E921.xml new file mode 100644 index 00000000000..cc54baa70af --- /dev/null +++ b/data/Leipzig/E921.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E922-mensuralProlationCombiningThreeDots.xml b/data/Leipzig/E922-mensuralProlationCombiningThreeDots.xml deleted file mode 100644 index cc1ebad6fd3..00000000000 --- a/data/Leipzig/E922-mensuralProlationCombiningThreeDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E922.xml b/data/Leipzig/E922.xml new file mode 100644 index 00000000000..6b8e7e7b828 --- /dev/null +++ b/data/Leipzig/E922.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E923-mensuralProlationCombiningThreeDotsTri.xml b/data/Leipzig/E923-mensuralProlationCombiningThreeDotsTri.xml deleted file mode 100644 index edf21952671..00000000000 --- a/data/Leipzig/E923-mensuralProlationCombiningThreeDotsTri.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E923.xml b/data/Leipzig/E923.xml new file mode 100644 index 00000000000..3d160858ad0 --- /dev/null +++ b/data/Leipzig/E923.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E924-mensuralProlationCombiningDotVoid.xml b/data/Leipzig/E924-mensuralProlationCombiningDotVoid.xml deleted file mode 100644 index 5fe33bbcc85..00000000000 --- a/data/Leipzig/E924-mensuralProlationCombiningDotVoid.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E924.xml b/data/Leipzig/E924.xml new file mode 100644 index 00000000000..77f8d2865b0 --- /dev/null +++ b/data/Leipzig/E924.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E925-mensuralProlationCombiningStroke.xml b/data/Leipzig/E925-mensuralProlationCombiningStroke.xml deleted file mode 100644 index 866262beadd..00000000000 --- a/data/Leipzig/E925-mensuralProlationCombiningStroke.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E925.xml b/data/Leipzig/E925.xml new file mode 100644 index 00000000000..b0314b3b3d8 --- /dev/null +++ b/data/Leipzig/E925.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E938-mensuralNoteheadSemibrevisBlack.xml b/data/Leipzig/E938-mensuralNoteheadSemibrevisBlack.xml deleted file mode 100644 index 128496f3d59..00000000000 --- a/data/Leipzig/E938-mensuralNoteheadSemibrevisBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E938.xml b/data/Leipzig/E938.xml new file mode 100644 index 00000000000..31a69a81465 --- /dev/null +++ b/data/Leipzig/E938.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E939-mensuralNoteheadSemibrevisVoid.xml b/data/Leipzig/E939-mensuralNoteheadSemibrevisVoid.xml deleted file mode 100644 index 8e5f0ddd7a3..00000000000 --- a/data/Leipzig/E939-mensuralNoteheadSemibrevisVoid.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E939.xml b/data/Leipzig/E939.xml new file mode 100644 index 00000000000..6278217d8c5 --- /dev/null +++ b/data/Leipzig/E939.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E93C-mensuralNoteheadMinimaWhite.xml b/data/Leipzig/E93C-mensuralNoteheadMinimaWhite.xml deleted file mode 100644 index d13da51a8bd..00000000000 --- a/data/Leipzig/E93C-mensuralNoteheadMinimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E93C.xml b/data/Leipzig/E93C.xml new file mode 100644 index 00000000000..6ef5785af61 --- /dev/null +++ b/data/Leipzig/E93C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E93D-mensuralNoteheadSemiminimaWhite.xml b/data/Leipzig/E93D-mensuralNoteheadSemiminimaWhite.xml deleted file mode 100644 index 3eda617e957..00000000000 --- a/data/Leipzig/E93D-mensuralNoteheadSemiminimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E93D.xml b/data/Leipzig/E93D.xml new file mode 100644 index 00000000000..09e015d1ea8 --- /dev/null +++ b/data/Leipzig/E93D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E93E-mensuralCombStemUp.xml b/data/Leipzig/E93E-mensuralCombStemUp.xml deleted file mode 100644 index 8e508ef71f9..00000000000 --- a/data/Leipzig/E93E-mensuralCombStemUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E93E.xml b/data/Leipzig/E93E.xml new file mode 100644 index 00000000000..2b5001d6ec2 --- /dev/null +++ b/data/Leipzig/E93E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E93F-mensuralCombStemDown.xml b/data/Leipzig/E93F-mensuralCombStemDown.xml deleted file mode 100644 index e7c84a4d4be..00000000000 --- a/data/Leipzig/E93F-mensuralCombStemDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E93F.xml b/data/Leipzig/E93F.xml new file mode 100644 index 00000000000..f490619595d --- /dev/null +++ b/data/Leipzig/E93F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E949-mensuralCombStemUpFlagSemiminima.xml b/data/Leipzig/E949-mensuralCombStemUpFlagSemiminima.xml deleted file mode 100644 index 50edc5d38c9..00000000000 --- a/data/Leipzig/E949-mensuralCombStemUpFlagSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E949.xml b/data/Leipzig/E949.xml new file mode 100644 index 00000000000..37463dcdae5 --- /dev/null +++ b/data/Leipzig/E949.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E94A-mensuralCombStemDownFlagSemiminima.xml b/data/Leipzig/E94A-mensuralCombStemDownFlagSemiminima.xml deleted file mode 100644 index 346e874e719..00000000000 --- a/data/Leipzig/E94A-mensuralCombStemDownFlagSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E94A.xml b/data/Leipzig/E94A.xml new file mode 100644 index 00000000000..ca0c5b339ec --- /dev/null +++ b/data/Leipzig/E94A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E94B-mensuralCombStemUpFlagFusa.xml b/data/Leipzig/E94B-mensuralCombStemUpFlagFusa.xml deleted file mode 100644 index 2659010d023..00000000000 --- a/data/Leipzig/E94B-mensuralCombStemUpFlagFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E94B.xml b/data/Leipzig/E94B.xml new file mode 100644 index 00000000000..6aa3681ec1f --- /dev/null +++ b/data/Leipzig/E94B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E94C-mensuralCombStemDownFlagFusa.xml b/data/Leipzig/E94C-mensuralCombStemDownFlagFusa.xml deleted file mode 100644 index bded688b359..00000000000 --- a/data/Leipzig/E94C-mensuralCombStemDownFlagFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E94C.xml b/data/Leipzig/E94C.xml new file mode 100644 index 00000000000..ca0d33b793c --- /dev/null +++ b/data/Leipzig/E94C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9E0-medRenFlatSoftB.xml b/data/Leipzig/E9E0-medRenFlatSoftB.xml deleted file mode 100644 index b65e859863e..00000000000 --- a/data/Leipzig/E9E0-medRenFlatSoftB.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9E0.xml b/data/Leipzig/E9E0.xml new file mode 100644 index 00000000000..527eada372e --- /dev/null +++ b/data/Leipzig/E9E0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9E1-medRenFlatHardB.xml b/data/Leipzig/E9E1-medRenFlatHardB.xml deleted file mode 100644 index eac080c8ada..00000000000 --- a/data/Leipzig/E9E1-medRenFlatHardB.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9E1.xml b/data/Leipzig/E9E1.xml new file mode 100644 index 00000000000..212b0445a9e --- /dev/null +++ b/data/Leipzig/E9E1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9E2-medRenNatural.xml b/data/Leipzig/E9E2-medRenNatural.xml deleted file mode 100644 index 3840c1153ed..00000000000 --- a/data/Leipzig/E9E2-medRenNatural.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9E2.xml b/data/Leipzig/E9E2.xml new file mode 100644 index 00000000000..dcd8b9f082e --- /dev/null +++ b/data/Leipzig/E9E2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9E3-medRenSharpCroix.xml b/data/Leipzig/E9E3-medRenSharpCroix.xml deleted file mode 100644 index c08530a7d8e..00000000000 --- a/data/Leipzig/E9E3-medRenSharpCroix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9E3.xml b/data/Leipzig/E9E3.xml new file mode 100644 index 00000000000..9e39248eba4 --- /dev/null +++ b/data/Leipzig/E9E3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F0-mensuralRestMaxima.xml b/data/Leipzig/E9F0-mensuralRestMaxima.xml deleted file mode 100644 index a1f44ee149e..00000000000 --- a/data/Leipzig/E9F0-mensuralRestMaxima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F0.xml b/data/Leipzig/E9F0.xml new file mode 100644 index 00000000000..e094eef8d97 --- /dev/null +++ b/data/Leipzig/E9F0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F1-mensuralRestLongaPerfecta.xml b/data/Leipzig/E9F1-mensuralRestLongaPerfecta.xml deleted file mode 100644 index 29066ce5113..00000000000 --- a/data/Leipzig/E9F1-mensuralRestLongaPerfecta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F1.xml b/data/Leipzig/E9F1.xml new file mode 100644 index 00000000000..32a5439751e --- /dev/null +++ b/data/Leipzig/E9F1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F2-mensuralRestLongaImperfecta.xml b/data/Leipzig/E9F2-mensuralRestLongaImperfecta.xml deleted file mode 100644 index e389b4b7594..00000000000 --- a/data/Leipzig/E9F2-mensuralRestLongaImperfecta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F2.xml b/data/Leipzig/E9F2.xml new file mode 100644 index 00000000000..c7300e27501 --- /dev/null +++ b/data/Leipzig/E9F2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F3-mensuralRestBrevis.xml b/data/Leipzig/E9F3-mensuralRestBrevis.xml deleted file mode 100644 index 5230f5c96a6..00000000000 --- a/data/Leipzig/E9F3-mensuralRestBrevis.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F3.xml b/data/Leipzig/E9F3.xml new file mode 100644 index 00000000000..d6e01e57a34 --- /dev/null +++ b/data/Leipzig/E9F3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F4-mensuralRestSemibrevis.xml b/data/Leipzig/E9F4-mensuralRestSemibrevis.xml deleted file mode 100644 index d61f6504d21..00000000000 --- a/data/Leipzig/E9F4-mensuralRestSemibrevis.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F4.xml b/data/Leipzig/E9F4.xml new file mode 100644 index 00000000000..bb517789db4 --- /dev/null +++ b/data/Leipzig/E9F4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F5-mensuralRestMinima.xml b/data/Leipzig/E9F5-mensuralRestMinima.xml deleted file mode 100644 index a4045c0f907..00000000000 --- a/data/Leipzig/E9F5-mensuralRestMinima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F5.xml b/data/Leipzig/E9F5.xml new file mode 100644 index 00000000000..9298016c768 --- /dev/null +++ b/data/Leipzig/E9F5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F6-mensuralRestSemiminima.xml b/data/Leipzig/E9F6-mensuralRestSemiminima.xml deleted file mode 100644 index 277d4259deb..00000000000 --- a/data/Leipzig/E9F6-mensuralRestSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F6.xml b/data/Leipzig/E9F6.xml new file mode 100644 index 00000000000..367c02b7ed7 --- /dev/null +++ b/data/Leipzig/E9F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F7-mensuralRestFusa.xml b/data/Leipzig/E9F7-mensuralRestFusa.xml deleted file mode 100644 index cecdcefa7a1..00000000000 --- a/data/Leipzig/E9F7-mensuralRestFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F7.xml b/data/Leipzig/E9F7.xml new file mode 100644 index 00000000000..8adab3301b8 --- /dev/null +++ b/data/Leipzig/E9F7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/E9F8-mensuralRestSemifusa.xml b/data/Leipzig/E9F8-mensuralRestSemifusa.xml deleted file mode 100644 index 93b389f00f5..00000000000 --- a/data/Leipzig/E9F8-mensuralRestSemifusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/E9F8.xml b/data/Leipzig/E9F8.xml new file mode 100644 index 00000000000..310a999727e --- /dev/null +++ b/data/Leipzig/E9F8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EA02-mensuralCustosUp.xml b/data/Leipzig/EA02-mensuralCustosUp.xml deleted file mode 100644 index 4eb80e8e9fb..00000000000 --- a/data/Leipzig/EA02-mensuralCustosUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EA02.xml b/data/Leipzig/EA02.xml new file mode 100644 index 00000000000..b87d21b6494 --- /dev/null +++ b/data/Leipzig/EA02.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EA06-chantCustosStemUpPosMiddle.xml b/data/Leipzig/EA06-chantCustosStemUpPosMiddle.xml deleted file mode 100644 index af3b2563f6a..00000000000 --- a/data/Leipzig/EA06-chantCustosStemUpPosMiddle.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EA06.xml b/data/Leipzig/EA06.xml new file mode 100644 index 00000000000..ca3b354a372 --- /dev/null +++ b/data/Leipzig/EA06.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EAA4-wiggleTrill.xml b/data/Leipzig/EAA4-wiggleTrill.xml deleted file mode 100644 index 1b0f5758928..00000000000 --- a/data/Leipzig/EAA4-wiggleTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EAA4.xml b/data/Leipzig/EAA4.xml new file mode 100644 index 00000000000..34e8a5af208 --- /dev/null +++ b/data/Leipzig/EAA4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EAA9-wiggleArpeggiatoUp.xml b/data/Leipzig/EAA9-wiggleArpeggiatoUp.xml deleted file mode 100644 index cc9d56ea24c..00000000000 --- a/data/Leipzig/EAA9-wiggleArpeggiatoUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EAA9.xml b/data/Leipzig/EAA9.xml new file mode 100644 index 00000000000..ee5e137b2fd --- /dev/null +++ b/data/Leipzig/EAA9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EAAA-wiggleArpeggiatoDown.xml b/data/Leipzig/EAAA-wiggleArpeggiatoDown.xml deleted file mode 100644 index 37605f7ace8..00000000000 --- a/data/Leipzig/EAAA-wiggleArpeggiatoDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EAAA.xml b/data/Leipzig/EAAA.xml new file mode 100644 index 00000000000..e2fbc324f28 --- /dev/null +++ b/data/Leipzig/EAAA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EAAD-wiggleArpeggiatoUpArrow.xml b/data/Leipzig/EAAD-wiggleArpeggiatoUpArrow.xml deleted file mode 100644 index 32f939a00e1..00000000000 --- a/data/Leipzig/EAAD-wiggleArpeggiatoUpArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EAAD.xml b/data/Leipzig/EAAD.xml new file mode 100644 index 00000000000..7fb1ebeedd3 --- /dev/null +++ b/data/Leipzig/EAAD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EAAE-wiggleArpeggiatoDownArrow.xml b/data/Leipzig/EAAE-wiggleArpeggiatoDownArrow.xml deleted file mode 100644 index 597edd885d4..00000000000 --- a/data/Leipzig/EAAE-wiggleArpeggiatoDownArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EAAE.xml b/data/Leipzig/EAAE.xml new file mode 100644 index 00000000000..da7a371cdac --- /dev/null +++ b/data/Leipzig/EAAE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EAAF-wiggleGlissando.xml b/data/Leipzig/EAAF-wiggleGlissando.xml deleted file mode 100644 index d24f5e40a7d..00000000000 --- a/data/Leipzig/EAAF-wiggleGlissando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EAAF.xml b/data/Leipzig/EAAF.xml new file mode 100644 index 00000000000..e7ceac70f3e --- /dev/null +++ b/data/Leipzig/EAAF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBA7-luteDurationWhole.xml b/data/Leipzig/EBA7-luteDurationWhole.xml deleted file mode 100644 index df659f911b5..00000000000 --- a/data/Leipzig/EBA7-luteDurationWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBA7.xml b/data/Leipzig/EBA7.xml new file mode 100644 index 00000000000..adc90d10478 --- /dev/null +++ b/data/Leipzig/EBA7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBA8-luteDurationHalf.xml b/data/Leipzig/EBA8-luteDurationHalf.xml deleted file mode 100644 index e0c58831861..00000000000 --- a/data/Leipzig/EBA8-luteDurationHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBA8.xml b/data/Leipzig/EBA8.xml new file mode 100644 index 00000000000..4aefb2cf9a5 --- /dev/null +++ b/data/Leipzig/EBA8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBA9-luteDurationQuarter.xml b/data/Leipzig/EBA9-luteDurationQuarter.xml deleted file mode 100644 index 67e2edd4c84..00000000000 --- a/data/Leipzig/EBA9-luteDurationQuarter.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBA9.xml b/data/Leipzig/EBA9.xml new file mode 100644 index 00000000000..2972dcd3470 --- /dev/null +++ b/data/Leipzig/EBA9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBAA-luteDuration8th.xml b/data/Leipzig/EBAA-luteDuration8th.xml deleted file mode 100644 index ac517af6788..00000000000 --- a/data/Leipzig/EBAA-luteDuration8th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBAA.xml b/data/Leipzig/EBAA.xml new file mode 100644 index 00000000000..71dc4e24390 --- /dev/null +++ b/data/Leipzig/EBAA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBAB-luteDuration16th.xml b/data/Leipzig/EBAB-luteDuration16th.xml deleted file mode 100644 index 10baf86884f..00000000000 --- a/data/Leipzig/EBAB-luteDuration16th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBAB.xml b/data/Leipzig/EBAB.xml new file mode 100644 index 00000000000..8f8863556b5 --- /dev/null +++ b/data/Leipzig/EBAB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBAC-luteDuration32nd.xml b/data/Leipzig/EBAC-luteDuration32nd.xml deleted file mode 100644 index afc87eadddd..00000000000 --- a/data/Leipzig/EBAC-luteDuration32nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBAC.xml b/data/Leipzig/EBAC.xml new file mode 100644 index 00000000000..0e82da64d0e --- /dev/null +++ b/data/Leipzig/EBAC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC0-luteFrenchFretA.xml b/data/Leipzig/EBC0-luteFrenchFretA.xml deleted file mode 100644 index 3fe5c95190b..00000000000 --- a/data/Leipzig/EBC0-luteFrenchFretA.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC0.xml b/data/Leipzig/EBC0.xml new file mode 100644 index 00000000000..ca3acb5c219 --- /dev/null +++ b/data/Leipzig/EBC0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC1-luteFrenchFretB.xml b/data/Leipzig/EBC1-luteFrenchFretB.xml deleted file mode 100644 index 563e1d359c7..00000000000 --- a/data/Leipzig/EBC1-luteFrenchFretB.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC1.xml b/data/Leipzig/EBC1.xml new file mode 100644 index 00000000000..cf80e8bf4ba --- /dev/null +++ b/data/Leipzig/EBC1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC2-luteFrenchFretC.xml b/data/Leipzig/EBC2-luteFrenchFretC.xml deleted file mode 100644 index 61402124cf0..00000000000 --- a/data/Leipzig/EBC2-luteFrenchFretC.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC2.xml b/data/Leipzig/EBC2.xml new file mode 100644 index 00000000000..8e0a020d19c --- /dev/null +++ b/data/Leipzig/EBC2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC3-luteFrenchFretD.xml b/data/Leipzig/EBC3-luteFrenchFretD.xml deleted file mode 100644 index a4bf118098e..00000000000 --- a/data/Leipzig/EBC3-luteFrenchFretD.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC3.xml b/data/Leipzig/EBC3.xml new file mode 100644 index 00000000000..1550cd9c2ba --- /dev/null +++ b/data/Leipzig/EBC3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC4-luteFrenchFretE.xml b/data/Leipzig/EBC4-luteFrenchFretE.xml deleted file mode 100644 index 8319faa9c1f..00000000000 --- a/data/Leipzig/EBC4-luteFrenchFretE.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC4.xml b/data/Leipzig/EBC4.xml new file mode 100644 index 00000000000..a026a7830c5 --- /dev/null +++ b/data/Leipzig/EBC4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC5-luteFrenchFretF.xml b/data/Leipzig/EBC5-luteFrenchFretF.xml deleted file mode 100644 index 9597a3f3085..00000000000 --- a/data/Leipzig/EBC5-luteFrenchFretF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC5.xml b/data/Leipzig/EBC5.xml new file mode 100644 index 00000000000..42ded00bcad --- /dev/null +++ b/data/Leipzig/EBC5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC6-luteFrenchFretG.xml b/data/Leipzig/EBC6-luteFrenchFretG.xml deleted file mode 100644 index 21661830b6e..00000000000 --- a/data/Leipzig/EBC6-luteFrenchFretG.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC6.xml b/data/Leipzig/EBC6.xml new file mode 100644 index 00000000000..cf2f3cfb7cd --- /dev/null +++ b/data/Leipzig/EBC6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC7-luteFrenchFretH.xml b/data/Leipzig/EBC7-luteFrenchFretH.xml deleted file mode 100644 index 698a557ddca..00000000000 --- a/data/Leipzig/EBC7-luteFrenchFretH.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC7.xml b/data/Leipzig/EBC7.xml new file mode 100644 index 00000000000..83e7ee10827 --- /dev/null +++ b/data/Leipzig/EBC7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC8-luteFrenchFretI.xml b/data/Leipzig/EBC8-luteFrenchFretI.xml deleted file mode 100644 index 5a4d00aaba0..00000000000 --- a/data/Leipzig/EBC8-luteFrenchFretI.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC8.xml b/data/Leipzig/EBC8.xml new file mode 100644 index 00000000000..f738d7ab4c3 --- /dev/null +++ b/data/Leipzig/EBC8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBC9-luteFrenchFretK.xml b/data/Leipzig/EBC9-luteFrenchFretK.xml deleted file mode 100644 index bbc1d480de1..00000000000 --- a/data/Leipzig/EBC9-luteFrenchFretK.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBC9.xml b/data/Leipzig/EBC9.xml new file mode 100644 index 00000000000..384a9a91647 --- /dev/null +++ b/data/Leipzig/EBC9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBCA-luteFrenchFretL.xml b/data/Leipzig/EBCA-luteFrenchFretL.xml deleted file mode 100644 index 9f67006d9c4..00000000000 --- a/data/Leipzig/EBCA-luteFrenchFretL.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBCA.xml b/data/Leipzig/EBCA.xml new file mode 100644 index 00000000000..6422282629c --- /dev/null +++ b/data/Leipzig/EBCA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBCB-luteFrenchFretM.xml b/data/Leipzig/EBCB-luteFrenchFretM.xml deleted file mode 100644 index 6919026ea25..00000000000 --- a/data/Leipzig/EBCB-luteFrenchFretM.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBCB.xml b/data/Leipzig/EBCB.xml new file mode 100644 index 00000000000..6d18d18feec --- /dev/null +++ b/data/Leipzig/EBCB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBCC-luteFrenchFretN.xml b/data/Leipzig/EBCC-luteFrenchFretN.xml deleted file mode 100644 index e15e9c8261d..00000000000 --- a/data/Leipzig/EBCC-luteFrenchFretN.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBCC.xml b/data/Leipzig/EBCC.xml new file mode 100644 index 00000000000..c654a5c7505 --- /dev/null +++ b/data/Leipzig/EBCC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE0-luteItalianFret0.xml b/data/Leipzig/EBE0-luteItalianFret0.xml deleted file mode 100644 index fd66643bc6c..00000000000 --- a/data/Leipzig/EBE0-luteItalianFret0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE0.xml b/data/Leipzig/EBE0.xml new file mode 100644 index 00000000000..70a543e8757 --- /dev/null +++ b/data/Leipzig/EBE0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE1-luteItalianFret1.xml b/data/Leipzig/EBE1-luteItalianFret1.xml deleted file mode 100644 index 8f961af4c81..00000000000 --- a/data/Leipzig/EBE1-luteItalianFret1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE1.xml b/data/Leipzig/EBE1.xml new file mode 100644 index 00000000000..069d7cfe417 --- /dev/null +++ b/data/Leipzig/EBE1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE2-luteItalianFret2.xml b/data/Leipzig/EBE2-luteItalianFret2.xml deleted file mode 100644 index f4fca180b72..00000000000 --- a/data/Leipzig/EBE2-luteItalianFret2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE2.xml b/data/Leipzig/EBE2.xml new file mode 100644 index 00000000000..ecf5f18a9f8 --- /dev/null +++ b/data/Leipzig/EBE2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE3-luteItalianFret3.xml b/data/Leipzig/EBE3-luteItalianFret3.xml deleted file mode 100644 index 48f84b3c34d..00000000000 --- a/data/Leipzig/EBE3-luteItalianFret3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE3.xml b/data/Leipzig/EBE3.xml new file mode 100644 index 00000000000..3c6418a102c --- /dev/null +++ b/data/Leipzig/EBE3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE4-luteItalianFret4.xml b/data/Leipzig/EBE4-luteItalianFret4.xml deleted file mode 100644 index bc18da4ff7a..00000000000 --- a/data/Leipzig/EBE4-luteItalianFret4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE4.xml b/data/Leipzig/EBE4.xml new file mode 100644 index 00000000000..66090362e3f --- /dev/null +++ b/data/Leipzig/EBE4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE5-luteItalianFret5.xml b/data/Leipzig/EBE5-luteItalianFret5.xml deleted file mode 100644 index bed3b256945..00000000000 --- a/data/Leipzig/EBE5-luteItalianFret5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE5.xml b/data/Leipzig/EBE5.xml new file mode 100644 index 00000000000..3747a12fbfc --- /dev/null +++ b/data/Leipzig/EBE5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE6-luteItalianFret6.xml b/data/Leipzig/EBE6-luteItalianFret6.xml deleted file mode 100644 index d2b50c3d637..00000000000 --- a/data/Leipzig/EBE6-luteItalianFret6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE6.xml b/data/Leipzig/EBE6.xml new file mode 100644 index 00000000000..39eb63f5133 --- /dev/null +++ b/data/Leipzig/EBE6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE7-luteItalianFret7.xml b/data/Leipzig/EBE7-luteItalianFret7.xml deleted file mode 100644 index 03666a5508a..00000000000 --- a/data/Leipzig/EBE7-luteItalianFret7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE7.xml b/data/Leipzig/EBE7.xml new file mode 100644 index 00000000000..adcd251f2d0 --- /dev/null +++ b/data/Leipzig/EBE7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE8-luteItalianFret8.xml b/data/Leipzig/EBE8-luteItalianFret8.xml deleted file mode 100644 index 77a1273e97f..00000000000 --- a/data/Leipzig/EBE8-luteItalianFret8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE8.xml b/data/Leipzig/EBE8.xml new file mode 100644 index 00000000000..344ce5d1d30 --- /dev/null +++ b/data/Leipzig/EBE8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/EBE9-luteItalianFret9.xml b/data/Leipzig/EBE9-luteItalianFret9.xml deleted file mode 100644 index cc3f9f3f5ff..00000000000 --- a/data/Leipzig/EBE9-luteItalianFret9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/EBE9.xml b/data/Leipzig/EBE9.xml new file mode 100644 index 00000000000..9cd94f8ca80 --- /dev/null +++ b/data/Leipzig/EBE9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/ED40-articSoftAccentAbove.xml b/data/Leipzig/ED40-articSoftAccentAbove.xml deleted file mode 100644 index bf32f801058..00000000000 --- a/data/Leipzig/ED40-articSoftAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/ED40.xml b/data/Leipzig/ED40.xml new file mode 100644 index 00000000000..17dbbb53c39 --- /dev/null +++ b/data/Leipzig/ED40.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leipzig/ED41-articSoftAccentBelow.xml b/data/Leipzig/ED41-articSoftAccentBelow.xml deleted file mode 100644 index f01bb829d7e..00000000000 --- a/data/Leipzig/ED41-articSoftAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leipzig/ED41.xml b/data/Leipzig/ED41.xml new file mode 100644 index 00000000000..a8353868176 --- /dev/null +++ b/data/Leipzig/ED41.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland.xml b/data/Leland.xml index 4af642a74fe..dddf6940a4f 100644 --- a/data/Leland.xml +++ b/data/Leland.xml @@ -1,500 +1,502 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/Leland/E000-brace.xml b/data/Leland/E000-brace.xml deleted file mode 100644 index aed55e73cd8..00000000000 --- a/data/Leland/E000-brace.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E000.xml b/data/Leland/E000.xml new file mode 100644 index 00000000000..08e0bfd0c2d --- /dev/null +++ b/data/Leland/E000.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E003-bracketTop.xml b/data/Leland/E003-bracketTop.xml deleted file mode 100644 index 0d14159d3d2..00000000000 --- a/data/Leland/E003-bracketTop.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E003.xml b/data/Leland/E003.xml new file mode 100644 index 00000000000..043adad72cc --- /dev/null +++ b/data/Leland/E003.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E004-bracketBottom.xml b/data/Leland/E004-bracketBottom.xml deleted file mode 100644 index 31ce43b7675..00000000000 --- a/data/Leland/E004-bracketBottom.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E004.xml b/data/Leland/E004.xml new file mode 100644 index 00000000000..498b0980fbf --- /dev/null +++ b/data/Leland/E004.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E043-repeatDots.xml b/data/Leland/E043-repeatDots.xml deleted file mode 100644 index 85bd2aeb7d1..00000000000 --- a/data/Leland/E043-repeatDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E043.xml b/data/Leland/E043.xml new file mode 100644 index 00000000000..319a593ab9d --- /dev/null +++ b/data/Leland/E043.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E044-repeatDot.xml b/data/Leland/E044-repeatDot.xml deleted file mode 100644 index 8deb5791c33..00000000000 --- a/data/Leland/E044-repeatDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E044.xml b/data/Leland/E044.xml new file mode 100644 index 00000000000..7ce0b40bb71 --- /dev/null +++ b/data/Leland/E044.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E047-segno.xml b/data/Leland/E047-segno.xml deleted file mode 100644 index 3758e600dc1..00000000000 --- a/data/Leland/E047-segno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E047.xml b/data/Leland/E047.xml new file mode 100644 index 00000000000..e89c15be5ae --- /dev/null +++ b/data/Leland/E047.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E048-coda.xml b/data/Leland/E048-coda.xml deleted file mode 100644 index 06c8de2ed64..00000000000 --- a/data/Leland/E048-coda.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E048.xml b/data/Leland/E048.xml new file mode 100644 index 00000000000..0a6e6a1ef5b --- /dev/null +++ b/data/Leland/E048.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E049-codaSquare.xml b/data/Leland/E049-codaSquare.xml deleted file mode 100644 index 64696c5d5b7..00000000000 --- a/data/Leland/E049-codaSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E049.xml b/data/Leland/E049.xml new file mode 100644 index 00000000000..2dd260aab39 --- /dev/null +++ b/data/Leland/E049.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E04B-segnoSerpent2.xml b/data/Leland/E04B-segnoSerpent2.xml deleted file mode 100644 index f8b591a4892..00000000000 --- a/data/Leland/E04B-segnoSerpent2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E04B.xml b/data/Leland/E04B.xml new file mode 100644 index 00000000000..f7d852e6c4f --- /dev/null +++ b/data/Leland/E04B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E050-gClef.xml b/data/Leland/E050-gClef.xml deleted file mode 100644 index a8effb793a2..00000000000 --- a/data/Leland/E050-gClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E050.xml b/data/Leland/E050.xml new file mode 100644 index 00000000000..52d13c49f0a --- /dev/null +++ b/data/Leland/E050.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E051-gClef15mb.xml b/data/Leland/E051-gClef15mb.xml deleted file mode 100644 index 66d9f45e63e..00000000000 --- a/data/Leland/E051-gClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E051.xml b/data/Leland/E051.xml new file mode 100644 index 00000000000..fd709d66b03 --- /dev/null +++ b/data/Leland/E051.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E052-gClef8vb.xml b/data/Leland/E052-gClef8vb.xml deleted file mode 100644 index b00e899008b..00000000000 --- a/data/Leland/E052-gClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E052.xml b/data/Leland/E052.xml new file mode 100644 index 00000000000..0648d97bada --- /dev/null +++ b/data/Leland/E052.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E053-gClef8va.xml b/data/Leland/E053-gClef8va.xml deleted file mode 100644 index 11bb07ea17e..00000000000 --- a/data/Leland/E053-gClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E053.xml b/data/Leland/E053.xml new file mode 100644 index 00000000000..207c7e7d7df --- /dev/null +++ b/data/Leland/E053.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E054-gClef15ma.xml b/data/Leland/E054-gClef15ma.xml deleted file mode 100644 index 7abb337847f..00000000000 --- a/data/Leland/E054-gClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E054.xml b/data/Leland/E054.xml new file mode 100644 index 00000000000..2b0982b58d8 --- /dev/null +++ b/data/Leland/E054.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E055-gClef8vbOld.xml b/data/Leland/E055-gClef8vbOld.xml deleted file mode 100644 index 4a9bf52797b..00000000000 --- a/data/Leland/E055-gClef8vbOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E055.xml b/data/Leland/E055.xml new file mode 100644 index 00000000000..dd000b9fbec --- /dev/null +++ b/data/Leland/E055.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E05C-cClef.xml b/data/Leland/E05C-cClef.xml deleted file mode 100644 index d19584c2226..00000000000 --- a/data/Leland/E05C-cClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E05C.xml b/data/Leland/E05C.xml new file mode 100644 index 00000000000..2d8c938c1a9 --- /dev/null +++ b/data/Leland/E05C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E05D-cClef8vb.xml b/data/Leland/E05D-cClef8vb.xml deleted file mode 100644 index 53e9d0410ba..00000000000 --- a/data/Leland/E05D-cClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E05D.xml b/data/Leland/E05D.xml new file mode 100644 index 00000000000..976e2de820a --- /dev/null +++ b/data/Leland/E05D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E062-fClef.xml b/data/Leland/E062-fClef.xml deleted file mode 100644 index 41a91522ae5..00000000000 --- a/data/Leland/E062-fClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E062.xml b/data/Leland/E062.xml new file mode 100644 index 00000000000..e5efbd54072 --- /dev/null +++ b/data/Leland/E062.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E063-fClef15mb.xml b/data/Leland/E063-fClef15mb.xml deleted file mode 100644 index a2469eac716..00000000000 --- a/data/Leland/E063-fClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E063.xml b/data/Leland/E063.xml new file mode 100644 index 00000000000..e858ae572ec --- /dev/null +++ b/data/Leland/E063.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E064-fClef8vb.xml b/data/Leland/E064-fClef8vb.xml deleted file mode 100644 index 63bbec68d07..00000000000 --- a/data/Leland/E064-fClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E064.xml b/data/Leland/E064.xml new file mode 100644 index 00000000000..da341bb5f07 --- /dev/null +++ b/data/Leland/E064.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E065-fClef8va.xml b/data/Leland/E065-fClef8va.xml deleted file mode 100644 index c2681476384..00000000000 --- a/data/Leland/E065-fClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E065.xml b/data/Leland/E065.xml new file mode 100644 index 00000000000..5a131eeb9a6 --- /dev/null +++ b/data/Leland/E065.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E066-fClef15ma.xml b/data/Leland/E066-fClef15ma.xml deleted file mode 100644 index 4f2311cdc17..00000000000 --- a/data/Leland/E066-fClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E066.xml b/data/Leland/E066.xml new file mode 100644 index 00000000000..1ac38c4d1a0 --- /dev/null +++ b/data/Leland/E066.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E069-unpitchedPercussionClef1.xml b/data/Leland/E069-unpitchedPercussionClef1.xml deleted file mode 100644 index fb01ef04829..00000000000 --- a/data/Leland/E069-unpitchedPercussionClef1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E069.xml b/data/Leland/E069.xml new file mode 100644 index 00000000000..446a3a07235 --- /dev/null +++ b/data/Leland/E069.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E06A-unpitchedPercussionClef2.xml b/data/Leland/E06A-unpitchedPercussionClef2.xml deleted file mode 100644 index 4f5d7b7b3bd..00000000000 --- a/data/Leland/E06A-unpitchedPercussionClef2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E06A.xml b/data/Leland/E06A.xml new file mode 100644 index 00000000000..bb9726cfe71 --- /dev/null +++ b/data/Leland/E06A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E06D.xml b/data/Leland/E06D.xml new file mode 100644 index 00000000000..22a15987837 --- /dev/null +++ b/data/Leland/E06D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E06E.xml b/data/Leland/E06E.xml new file mode 100644 index 00000000000..24fd1695520 --- /dev/null +++ b/data/Leland/E06E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E080-timeSig0.xml b/data/Leland/E080-timeSig0.xml deleted file mode 100644 index 51b50ae15d7..00000000000 --- a/data/Leland/E080-timeSig0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E080.xml b/data/Leland/E080.xml new file mode 100644 index 00000000000..111e1c42d0b --- /dev/null +++ b/data/Leland/E080.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E081-timeSig1.xml b/data/Leland/E081-timeSig1.xml deleted file mode 100644 index f515c56c25b..00000000000 --- a/data/Leland/E081-timeSig1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E081.xml b/data/Leland/E081.xml new file mode 100644 index 00000000000..c6bf36666e5 --- /dev/null +++ b/data/Leland/E081.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E082-timeSig2.xml b/data/Leland/E082-timeSig2.xml deleted file mode 100644 index 9161f7d7dc5..00000000000 --- a/data/Leland/E082-timeSig2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E082.xml b/data/Leland/E082.xml new file mode 100644 index 00000000000..d130ea48ded --- /dev/null +++ b/data/Leland/E082.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E083-timeSig3.xml b/data/Leland/E083-timeSig3.xml deleted file mode 100644 index 360c7aff935..00000000000 --- a/data/Leland/E083-timeSig3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E083.xml b/data/Leland/E083.xml new file mode 100644 index 00000000000..6a469f449e4 --- /dev/null +++ b/data/Leland/E083.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E084-timeSig4.xml b/data/Leland/E084-timeSig4.xml deleted file mode 100644 index 4f813c57c47..00000000000 --- a/data/Leland/E084-timeSig4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E084.xml b/data/Leland/E084.xml new file mode 100644 index 00000000000..0eb7a6bc690 --- /dev/null +++ b/data/Leland/E084.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E085-timeSig5.xml b/data/Leland/E085-timeSig5.xml deleted file mode 100644 index b359c5261a1..00000000000 --- a/data/Leland/E085-timeSig5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E085.xml b/data/Leland/E085.xml new file mode 100644 index 00000000000..715ffe1a9ed --- /dev/null +++ b/data/Leland/E085.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E086-timeSig6.xml b/data/Leland/E086-timeSig6.xml deleted file mode 100644 index ff4f884f1f5..00000000000 --- a/data/Leland/E086-timeSig6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E086.xml b/data/Leland/E086.xml new file mode 100644 index 00000000000..45474d54774 --- /dev/null +++ b/data/Leland/E086.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E087-timeSig7.xml b/data/Leland/E087-timeSig7.xml deleted file mode 100644 index 516a9040bcc..00000000000 --- a/data/Leland/E087-timeSig7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E087.xml b/data/Leland/E087.xml new file mode 100644 index 00000000000..6d03c31623b --- /dev/null +++ b/data/Leland/E087.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E088-timeSig8.xml b/data/Leland/E088-timeSig8.xml deleted file mode 100644 index 1266aecdb2c..00000000000 --- a/data/Leland/E088-timeSig8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E088.xml b/data/Leland/E088.xml new file mode 100644 index 00000000000..4b569d77eeb --- /dev/null +++ b/data/Leland/E088.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E089-timeSig9.xml b/data/Leland/E089-timeSig9.xml deleted file mode 100644 index 976507e5572..00000000000 --- a/data/Leland/E089-timeSig9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E089.xml b/data/Leland/E089.xml new file mode 100644 index 00000000000..b6d62ffb846 --- /dev/null +++ b/data/Leland/E089.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E08A-timeSigCommon.xml b/data/Leland/E08A-timeSigCommon.xml deleted file mode 100644 index cc2c5e9afd7..00000000000 --- a/data/Leland/E08A-timeSigCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E08A.xml b/data/Leland/E08A.xml new file mode 100644 index 00000000000..7879af0b57f --- /dev/null +++ b/data/Leland/E08A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E08B-timeSigCutCommon.xml b/data/Leland/E08B-timeSigCutCommon.xml deleted file mode 100644 index b318e9570ab..00000000000 --- a/data/Leland/E08B-timeSigCutCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E08B.xml b/data/Leland/E08B.xml new file mode 100644 index 00000000000..79e07c02173 --- /dev/null +++ b/data/Leland/E08B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E08C-timeSigPlus.xml b/data/Leland/E08C-timeSigPlus.xml deleted file mode 100644 index 849eb2f7957..00000000000 --- a/data/Leland/E08C-timeSigPlus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E08C.xml b/data/Leland/E08C.xml new file mode 100644 index 00000000000..242992962da --- /dev/null +++ b/data/Leland/E08C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0A0-noteheadDoubleWhole.xml b/data/Leland/E0A0-noteheadDoubleWhole.xml deleted file mode 100644 index 25a1df2940e..00000000000 --- a/data/Leland/E0A0-noteheadDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0A0.xml b/data/Leland/E0A0.xml new file mode 100644 index 00000000000..83f15d626f1 --- /dev/null +++ b/data/Leland/E0A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0A1-noteheadDoubleWholeSquare.xml b/data/Leland/E0A1-noteheadDoubleWholeSquare.xml deleted file mode 100644 index 04f6ec88092..00000000000 --- a/data/Leland/E0A1-noteheadDoubleWholeSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0A1.xml b/data/Leland/E0A1.xml new file mode 100644 index 00000000000..1bda177525d --- /dev/null +++ b/data/Leland/E0A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0A2-noteheadWhole.xml b/data/Leland/E0A2-noteheadWhole.xml deleted file mode 100644 index 9b676b3ae6f..00000000000 --- a/data/Leland/E0A2-noteheadWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0A2.xml b/data/Leland/E0A2.xml new file mode 100644 index 00000000000..3dde1d424f0 --- /dev/null +++ b/data/Leland/E0A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0A3-noteheadHalf.xml b/data/Leland/E0A3-noteheadHalf.xml deleted file mode 100644 index c070c60de44..00000000000 --- a/data/Leland/E0A3-noteheadHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0A3.xml b/data/Leland/E0A3.xml new file mode 100644 index 00000000000..adc86767f12 --- /dev/null +++ b/data/Leland/E0A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0A4-noteheadBlack.xml b/data/Leland/E0A4-noteheadBlack.xml deleted file mode 100644 index 8f4a8ad8ed5..00000000000 --- a/data/Leland/E0A4-noteheadBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0A4.xml b/data/Leland/E0A4.xml new file mode 100644 index 00000000000..22a237ecc38 --- /dev/null +++ b/data/Leland/E0A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0A5-noteheadNull.xml b/data/Leland/E0A5-noteheadNull.xml deleted file mode 100644 index 1445fb5f59a..00000000000 --- a/data/Leland/E0A5-noteheadNull.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0A5.xml b/data/Leland/E0A5.xml new file mode 100644 index 00000000000..d4eec1c1f60 --- /dev/null +++ b/data/Leland/E0A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0A9-noteheadXBlack.xml b/data/Leland/E0A9-noteheadXBlack.xml deleted file mode 100644 index 5e0a16056fa..00000000000 --- a/data/Leland/E0A9-noteheadXBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0A9.xml b/data/Leland/E0A9.xml new file mode 100644 index 00000000000..af28d67577b --- /dev/null +++ b/data/Leland/E0A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0AF-noteheadPlusBlack.xml b/data/Leland/E0AF-noteheadPlusBlack.xml deleted file mode 100644 index fc5eb98baf7..00000000000 --- a/data/Leland/E0AF-noteheadPlusBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0AF.xml b/data/Leland/E0AF.xml new file mode 100644 index 00000000000..58febfa1747 --- /dev/null +++ b/data/Leland/E0AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0D9-noteheadDiamondHalf.xml b/data/Leland/E0D9-noteheadDiamondHalf.xml deleted file mode 100644 index c6826b3662f..00000000000 --- a/data/Leland/E0D9-noteheadDiamondHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0D9.xml b/data/Leland/E0D9.xml new file mode 100644 index 00000000000..ba20b3d21d3 --- /dev/null +++ b/data/Leland/E0D9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0DB-noteheadDiamondBlack.xml b/data/Leland/E0DB-noteheadDiamondBlack.xml deleted file mode 100644 index bc02f945cda..00000000000 --- a/data/Leland/E0DB-noteheadDiamondBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0DB.xml b/data/Leland/E0DB.xml new file mode 100644 index 00000000000..caec0fe8e08 --- /dev/null +++ b/data/Leland/E0DB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0F5-noteheadParenthesisLeft.xml b/data/Leland/E0F5-noteheadParenthesisLeft.xml deleted file mode 100644 index b3cf0c60045..00000000000 --- a/data/Leland/E0F5-noteheadParenthesisLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0F5.xml b/data/Leland/E0F5.xml new file mode 100644 index 00000000000..b54d70c4ddf --- /dev/null +++ b/data/Leland/E0F5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E0F6-noteheadParenthesisRight.xml b/data/Leland/E0F6-noteheadParenthesisRight.xml deleted file mode 100644 index f93d5edd79d..00000000000 --- a/data/Leland/E0F6-noteheadParenthesisRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E0F6.xml b/data/Leland/E0F6.xml new file mode 100644 index 00000000000..7c38adcefec --- /dev/null +++ b/data/Leland/E0F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E220-tremolo1.xml b/data/Leland/E220-tremolo1.xml deleted file mode 100644 index 69bc49dab41..00000000000 --- a/data/Leland/E220-tremolo1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E220.xml b/data/Leland/E220.xml new file mode 100644 index 00000000000..1d947ff9704 --- /dev/null +++ b/data/Leland/E220.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E221-tremolo2.xml b/data/Leland/E221-tremolo2.xml deleted file mode 100644 index 7fe3b704aca..00000000000 --- a/data/Leland/E221-tremolo2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E221.xml b/data/Leland/E221.xml new file mode 100644 index 00000000000..2e2940954c5 --- /dev/null +++ b/data/Leland/E221.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E222-tremolo3.xml b/data/Leland/E222-tremolo3.xml deleted file mode 100644 index 33e0c9476ef..00000000000 --- a/data/Leland/E222-tremolo3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E222.xml b/data/Leland/E222.xml new file mode 100644 index 00000000000..27963c3afaf --- /dev/null +++ b/data/Leland/E222.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E223-tremolo4.xml b/data/Leland/E223-tremolo4.xml deleted file mode 100644 index d14f04e267d..00000000000 --- a/data/Leland/E223-tremolo4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E223.xml b/data/Leland/E223.xml new file mode 100644 index 00000000000..ff305e0d898 --- /dev/null +++ b/data/Leland/E223.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E224-tremolo5.xml b/data/Leland/E224-tremolo5.xml deleted file mode 100644 index 7c8fea648aa..00000000000 --- a/data/Leland/E224-tremolo5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E224.xml b/data/Leland/E224.xml new file mode 100644 index 00000000000..9a79084cbcb --- /dev/null +++ b/data/Leland/E224.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E22A-buzzRoll.xml b/data/Leland/E22A-buzzRoll.xml deleted file mode 100644 index 6c6054fe635..00000000000 --- a/data/Leland/E22A-buzzRoll.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E22A.xml b/data/Leland/E22A.xml new file mode 100644 index 00000000000..e7b6cee88fc --- /dev/null +++ b/data/Leland/E22A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E240-flag8thUp.xml b/data/Leland/E240-flag8thUp.xml deleted file mode 100644 index 3925eeb7c1c..00000000000 --- a/data/Leland/E240-flag8thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E240.xml b/data/Leland/E240.xml new file mode 100644 index 00000000000..3d25b65fd6b --- /dev/null +++ b/data/Leland/E240.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E241-flag8thDown.xml b/data/Leland/E241-flag8thDown.xml deleted file mode 100644 index ea66b7ac65f..00000000000 --- a/data/Leland/E241-flag8thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E241.xml b/data/Leland/E241.xml new file mode 100644 index 00000000000..0afffd3056c --- /dev/null +++ b/data/Leland/E241.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E242-flag16thUp.xml b/data/Leland/E242-flag16thUp.xml deleted file mode 100644 index 7c3ac178e7e..00000000000 --- a/data/Leland/E242-flag16thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E242.xml b/data/Leland/E242.xml new file mode 100644 index 00000000000..979341e4a19 --- /dev/null +++ b/data/Leland/E242.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E243-flag16thDown.xml b/data/Leland/E243-flag16thDown.xml deleted file mode 100644 index 5a937f9ef1d..00000000000 --- a/data/Leland/E243-flag16thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E243.xml b/data/Leland/E243.xml new file mode 100644 index 00000000000..c5eeba0897b --- /dev/null +++ b/data/Leland/E243.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E244-flag32ndUp.xml b/data/Leland/E244-flag32ndUp.xml deleted file mode 100644 index 77e5e384920..00000000000 --- a/data/Leland/E244-flag32ndUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E244.xml b/data/Leland/E244.xml new file mode 100644 index 00000000000..845817092a7 --- /dev/null +++ b/data/Leland/E244.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E245-flag32ndDown.xml b/data/Leland/E245-flag32ndDown.xml deleted file mode 100644 index 0e0e2434bf9..00000000000 --- a/data/Leland/E245-flag32ndDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E245.xml b/data/Leland/E245.xml new file mode 100644 index 00000000000..14c4aeeee15 --- /dev/null +++ b/data/Leland/E245.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E246-flag64thUp.xml b/data/Leland/E246-flag64thUp.xml deleted file mode 100644 index 10dd7cd74bb..00000000000 --- a/data/Leland/E246-flag64thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E246.xml b/data/Leland/E246.xml new file mode 100644 index 00000000000..290a001537c --- /dev/null +++ b/data/Leland/E246.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E247-flag64thDown.xml b/data/Leland/E247-flag64thDown.xml deleted file mode 100644 index 59a10680bea..00000000000 --- a/data/Leland/E247-flag64thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E247.xml b/data/Leland/E247.xml new file mode 100644 index 00000000000..8f7fd7a6605 --- /dev/null +++ b/data/Leland/E247.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E248-flag128thUp.xml b/data/Leland/E248-flag128thUp.xml deleted file mode 100644 index 8e0863389f8..00000000000 --- a/data/Leland/E248-flag128thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E248.xml b/data/Leland/E248.xml new file mode 100644 index 00000000000..d7327e47e93 --- /dev/null +++ b/data/Leland/E248.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E249-flag128thDown.xml b/data/Leland/E249-flag128thDown.xml deleted file mode 100644 index 01d09f79b04..00000000000 --- a/data/Leland/E249-flag128thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E249.xml b/data/Leland/E249.xml new file mode 100644 index 00000000000..c22e1078559 --- /dev/null +++ b/data/Leland/E249.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E24A-flag256thUp.xml b/data/Leland/E24A-flag256thUp.xml deleted file mode 100644 index 6a6b13931f7..00000000000 --- a/data/Leland/E24A-flag256thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E24A.xml b/data/Leland/E24A.xml new file mode 100644 index 00000000000..fa7856f4a72 --- /dev/null +++ b/data/Leland/E24A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E24B-flag256thDown.xml b/data/Leland/E24B-flag256thDown.xml deleted file mode 100644 index 00a55a2dd2b..00000000000 --- a/data/Leland/E24B-flag256thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E24B.xml b/data/Leland/E24B.xml new file mode 100644 index 00000000000..187f103f29d --- /dev/null +++ b/data/Leland/E24B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E24C-flag512thUp.xml b/data/Leland/E24C-flag512thUp.xml deleted file mode 100644 index fae14c0309d..00000000000 --- a/data/Leland/E24C-flag512thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E24C.xml b/data/Leland/E24C.xml new file mode 100644 index 00000000000..fa67920c2a7 --- /dev/null +++ b/data/Leland/E24C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E24D-flag512thDown.xml b/data/Leland/E24D-flag512thDown.xml deleted file mode 100644 index 1043d51ea02..00000000000 --- a/data/Leland/E24D-flag512thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E24D.xml b/data/Leland/E24D.xml new file mode 100644 index 00000000000..bca27e4a870 --- /dev/null +++ b/data/Leland/E24D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E24E-flag1024thUp.xml b/data/Leland/E24E-flag1024thUp.xml deleted file mode 100644 index c6aa7e2d1ad..00000000000 --- a/data/Leland/E24E-flag1024thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E24E.xml b/data/Leland/E24E.xml new file mode 100644 index 00000000000..595f4b811a5 --- /dev/null +++ b/data/Leland/E24E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E24F-flag1024thDown.xml b/data/Leland/E24F-flag1024thDown.xml deleted file mode 100644 index 0c52b44610d..00000000000 --- a/data/Leland/E24F-flag1024thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E24F.xml b/data/Leland/E24F.xml new file mode 100644 index 00000000000..6c952e89485 --- /dev/null +++ b/data/Leland/E24F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E260-accidentalFlat.xml b/data/Leland/E260-accidentalFlat.xml deleted file mode 100644 index a5dc2c8e915..00000000000 --- a/data/Leland/E260-accidentalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E260.xml b/data/Leland/E260.xml new file mode 100644 index 00000000000..e5d5024e3aa --- /dev/null +++ b/data/Leland/E260.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E261-accidentalNatural.xml b/data/Leland/E261-accidentalNatural.xml deleted file mode 100644 index cfdb58b6c54..00000000000 --- a/data/Leland/E261-accidentalNatural.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E261.xml b/data/Leland/E261.xml new file mode 100644 index 00000000000..1c87ae68aec --- /dev/null +++ b/data/Leland/E261.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E262-accidentalSharp.xml b/data/Leland/E262-accidentalSharp.xml deleted file mode 100644 index 496ca7fd365..00000000000 --- a/data/Leland/E262-accidentalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E262.xml b/data/Leland/E262.xml new file mode 100644 index 00000000000..510ff0047c0 --- /dev/null +++ b/data/Leland/E262.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E263-accidentalDoubleSharp.xml b/data/Leland/E263-accidentalDoubleSharp.xml deleted file mode 100644 index fb9c31a1ce5..00000000000 --- a/data/Leland/E263-accidentalDoubleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E263.xml b/data/Leland/E263.xml new file mode 100644 index 00000000000..5486182cff7 --- /dev/null +++ b/data/Leland/E263.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E264-accidentalDoubleFlat.xml b/data/Leland/E264-accidentalDoubleFlat.xml deleted file mode 100644 index ee6ae049446..00000000000 --- a/data/Leland/E264-accidentalDoubleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E264.xml b/data/Leland/E264.xml new file mode 100644 index 00000000000..2fcce5d32c0 --- /dev/null +++ b/data/Leland/E264.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E265-accidentalTripleSharp.xml b/data/Leland/E265-accidentalTripleSharp.xml deleted file mode 100644 index ddf0d23562c..00000000000 --- a/data/Leland/E265-accidentalTripleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E265.xml b/data/Leland/E265.xml new file mode 100644 index 00000000000..94f2734e036 --- /dev/null +++ b/data/Leland/E265.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E266-accidentalTripleFlat.xml b/data/Leland/E266-accidentalTripleFlat.xml deleted file mode 100644 index 8f340714c7d..00000000000 --- a/data/Leland/E266-accidentalTripleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E266.xml b/data/Leland/E266.xml new file mode 100644 index 00000000000..9081790a10c --- /dev/null +++ b/data/Leland/E266.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E267-accidentalNaturalFlat.xml b/data/Leland/E267-accidentalNaturalFlat.xml deleted file mode 100644 index e20d39e2a63..00000000000 --- a/data/Leland/E267-accidentalNaturalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E267.xml b/data/Leland/E267.xml new file mode 100644 index 00000000000..ebf22416f3a --- /dev/null +++ b/data/Leland/E267.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E268-accidentalNaturalSharp.xml b/data/Leland/E268-accidentalNaturalSharp.xml deleted file mode 100644 index 900bf4f3957..00000000000 --- a/data/Leland/E268-accidentalNaturalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E268.xml b/data/Leland/E268.xml new file mode 100644 index 00000000000..64bf2e6c8a9 --- /dev/null +++ b/data/Leland/E268.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E269-accidentalSharpSharp.xml b/data/Leland/E269-accidentalSharpSharp.xml deleted file mode 100644 index 1df34c252e1..00000000000 --- a/data/Leland/E269-accidentalSharpSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E269.xml b/data/Leland/E269.xml new file mode 100644 index 00000000000..cd5882451a3 --- /dev/null +++ b/data/Leland/E269.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E26A-accidentalParensLeft.xml b/data/Leland/E26A-accidentalParensLeft.xml deleted file mode 100644 index 996343fb2f3..00000000000 --- a/data/Leland/E26A-accidentalParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E26A.xml b/data/Leland/E26A.xml new file mode 100644 index 00000000000..446681f566a --- /dev/null +++ b/data/Leland/E26A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E26B-accidentalParensRight.xml b/data/Leland/E26B-accidentalParensRight.xml deleted file mode 100644 index df3564cf342..00000000000 --- a/data/Leland/E26B-accidentalParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E26B.xml b/data/Leland/E26B.xml new file mode 100644 index 00000000000..8b1859a65bc --- /dev/null +++ b/data/Leland/E26B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E26C-accidentalBracketLeft.xml b/data/Leland/E26C-accidentalBracketLeft.xml deleted file mode 100644 index 7846d1ec1a7..00000000000 --- a/data/Leland/E26C-accidentalBracketLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E26C.xml b/data/Leland/E26C.xml new file mode 100644 index 00000000000..be872c41226 --- /dev/null +++ b/data/Leland/E26C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E26D-accidentalBracketRight.xml b/data/Leland/E26D-accidentalBracketRight.xml deleted file mode 100644 index 8ec83819d17..00000000000 --- a/data/Leland/E26D-accidentalBracketRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E26D.xml b/data/Leland/E26D.xml new file mode 100644 index 00000000000..f5c74e5017b --- /dev/null +++ b/data/Leland/E26D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E270-accidentalQuarterToneFlatArrowUp.xml b/data/Leland/E270-accidentalQuarterToneFlatArrowUp.xml deleted file mode 100644 index f8d6a695a3e..00000000000 --- a/data/Leland/E270-accidentalQuarterToneFlatArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E270.xml b/data/Leland/E270.xml new file mode 100644 index 00000000000..f469edcc9e7 --- /dev/null +++ b/data/Leland/E270.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E271-accidentalThreeQuarterTonesFlatArrowDown.xml b/data/Leland/E271-accidentalThreeQuarterTonesFlatArrowDown.xml deleted file mode 100644 index 69f7b8872b7..00000000000 --- a/data/Leland/E271-accidentalThreeQuarterTonesFlatArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E271.xml b/data/Leland/E271.xml new file mode 100644 index 00000000000..131c1f561ec --- /dev/null +++ b/data/Leland/E271.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E272-accidentalQuarterToneSharpNaturalArrowUp.xml b/data/Leland/E272-accidentalQuarterToneSharpNaturalArrowUp.xml deleted file mode 100644 index 50df4dd2385..00000000000 --- a/data/Leland/E272-accidentalQuarterToneSharpNaturalArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E272.xml b/data/Leland/E272.xml new file mode 100644 index 00000000000..a6ff6982bb2 --- /dev/null +++ b/data/Leland/E272.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E273-accidentalQuarterToneFlatNaturalArrowDown.xml b/data/Leland/E273-accidentalQuarterToneFlatNaturalArrowDown.xml deleted file mode 100644 index 4c3ea878915..00000000000 --- a/data/Leland/E273-accidentalQuarterToneFlatNaturalArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E273.xml b/data/Leland/E273.xml new file mode 100644 index 00000000000..96b584ac7aa --- /dev/null +++ b/data/Leland/E273.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E274-accidentalThreeQuarterTonesSharpArrowUp.xml b/data/Leland/E274-accidentalThreeQuarterTonesSharpArrowUp.xml deleted file mode 100644 index 01c06ebdba3..00000000000 --- a/data/Leland/E274-accidentalThreeQuarterTonesSharpArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E274.xml b/data/Leland/E274.xml new file mode 100644 index 00000000000..ecdd466b56c --- /dev/null +++ b/data/Leland/E274.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E275-accidentalQuarterToneSharpArrowDown.xml b/data/Leland/E275-accidentalQuarterToneSharpArrowDown.xml deleted file mode 100644 index 0fbac18fb0e..00000000000 --- a/data/Leland/E275-accidentalQuarterToneSharpArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E275.xml b/data/Leland/E275.xml new file mode 100644 index 00000000000..d7de7a97580 --- /dev/null +++ b/data/Leland/E275.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E280-accidentalQuarterToneFlatStein.xml b/data/Leland/E280-accidentalQuarterToneFlatStein.xml deleted file mode 100644 index a474ae05f2a..00000000000 --- a/data/Leland/E280-accidentalQuarterToneFlatStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E280.xml b/data/Leland/E280.xml new file mode 100644 index 00000000000..cd8da24a778 --- /dev/null +++ b/data/Leland/E280.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E281-accidentalThreeQuarterTonesFlatZimmermann.xml b/data/Leland/E281-accidentalThreeQuarterTonesFlatZimmermann.xml deleted file mode 100644 index e3bca3e287a..00000000000 --- a/data/Leland/E281-accidentalThreeQuarterTonesFlatZimmermann.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E281.xml b/data/Leland/E281.xml new file mode 100644 index 00000000000..006c246f2ac --- /dev/null +++ b/data/Leland/E281.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E282-accidentalQuarterToneSharpStein.xml b/data/Leland/E282-accidentalQuarterToneSharpStein.xml deleted file mode 100644 index 89d4eaa92ca..00000000000 --- a/data/Leland/E282-accidentalQuarterToneSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E282.xml b/data/Leland/E282.xml new file mode 100644 index 00000000000..9ec6d8d9a3d --- /dev/null +++ b/data/Leland/E282.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E283-accidentalThreeQuarterTonesSharpStein.xml b/data/Leland/E283-accidentalThreeQuarterTonesSharpStein.xml deleted file mode 100644 index df2c517cd01..00000000000 --- a/data/Leland/E283-accidentalThreeQuarterTonesSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E283.xml b/data/Leland/E283.xml new file mode 100644 index 00000000000..d41c93e4e9e --- /dev/null +++ b/data/Leland/E283.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E440-accidentalBuyukMucennebFlat.xml b/data/Leland/E440-accidentalBuyukMucennebFlat.xml deleted file mode 100644 index 1766dca60f9..00000000000 --- a/data/Leland/E440-accidentalBuyukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E440.xml b/data/Leland/E440.xml new file mode 100644 index 00000000000..78e410f78a3 --- /dev/null +++ b/data/Leland/E440.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E442-accidentalBakiyeFlat.xml b/data/Leland/E442-accidentalBakiyeFlat.xml deleted file mode 100644 index 341a77d7bd0..00000000000 --- a/data/Leland/E442-accidentalBakiyeFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E442.xml b/data/Leland/E442.xml new file mode 100644 index 00000000000..002e52bc194 --- /dev/null +++ b/data/Leland/E442.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E446-accidentalKucukMucennebSharp.xml b/data/Leland/E446-accidentalKucukMucennebSharp.xml deleted file mode 100644 index 755a41c63df..00000000000 --- a/data/Leland/E446-accidentalKucukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E446.xml b/data/Leland/E446.xml new file mode 100644 index 00000000000..9e39462f21c --- /dev/null +++ b/data/Leland/E446.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E447-accidentalBuyukMucennebSharp.xml b/data/Leland/E447-accidentalBuyukMucennebSharp.xml deleted file mode 100644 index 94a16dd08e9..00000000000 --- a/data/Leland/E447-accidentalBuyukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E447.xml b/data/Leland/E447.xml new file mode 100644 index 00000000000..3e296cb9b8e --- /dev/null +++ b/data/Leland/E447.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A0-articAccentAbove.xml b/data/Leland/E4A0-articAccentAbove.xml deleted file mode 100644 index 7ed454f0cd2..00000000000 --- a/data/Leland/E4A0-articAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A0.xml b/data/Leland/E4A0.xml new file mode 100644 index 00000000000..b7ae5ca1c09 --- /dev/null +++ b/data/Leland/E4A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A1-articAccentBelow.xml b/data/Leland/E4A1-articAccentBelow.xml deleted file mode 100644 index f047b4a2c52..00000000000 --- a/data/Leland/E4A1-articAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A1.xml b/data/Leland/E4A1.xml new file mode 100644 index 00000000000..a77a22cffb1 --- /dev/null +++ b/data/Leland/E4A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A2-articStaccatoAbove.xml b/data/Leland/E4A2-articStaccatoAbove.xml deleted file mode 100644 index c754f478063..00000000000 --- a/data/Leland/E4A2-articStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A2.xml b/data/Leland/E4A2.xml new file mode 100644 index 00000000000..21520314903 --- /dev/null +++ b/data/Leland/E4A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A3-articStaccatoBelow.xml b/data/Leland/E4A3-articStaccatoBelow.xml deleted file mode 100644 index 0b2f9391576..00000000000 --- a/data/Leland/E4A3-articStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A3.xml b/data/Leland/E4A3.xml new file mode 100644 index 00000000000..f54442541e7 --- /dev/null +++ b/data/Leland/E4A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A4-articTenutoAbove.xml b/data/Leland/E4A4-articTenutoAbove.xml deleted file mode 100644 index 8daefe2f772..00000000000 --- a/data/Leland/E4A4-articTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A4.xml b/data/Leland/E4A4.xml new file mode 100644 index 00000000000..f1fe77c5da2 --- /dev/null +++ b/data/Leland/E4A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A5-articTenutoBelow.xml b/data/Leland/E4A5-articTenutoBelow.xml deleted file mode 100644 index df2742b4d55..00000000000 --- a/data/Leland/E4A5-articTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A5.xml b/data/Leland/E4A5.xml new file mode 100644 index 00000000000..96f7c86338c --- /dev/null +++ b/data/Leland/E4A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A6-articStaccatissimoAbove.xml b/data/Leland/E4A6-articStaccatissimoAbove.xml deleted file mode 100644 index af3bc700bf0..00000000000 --- a/data/Leland/E4A6-articStaccatissimoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A6.xml b/data/Leland/E4A6.xml new file mode 100644 index 00000000000..61aecc13235 --- /dev/null +++ b/data/Leland/E4A6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A7-articStaccatissimoBelow.xml b/data/Leland/E4A7-articStaccatissimoBelow.xml deleted file mode 100644 index 4e8d7deeedb..00000000000 --- a/data/Leland/E4A7-articStaccatissimoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A7.xml b/data/Leland/E4A7.xml new file mode 100644 index 00000000000..16b4b23a3bf --- /dev/null +++ b/data/Leland/E4A7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A8-articStaccatissimoWedgeAbove.xml b/data/Leland/E4A8-articStaccatissimoWedgeAbove.xml deleted file mode 100644 index 72e2b4cbd71..00000000000 --- a/data/Leland/E4A8-articStaccatissimoWedgeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A8.xml b/data/Leland/E4A8.xml new file mode 100644 index 00000000000..9e9ea75a522 --- /dev/null +++ b/data/Leland/E4A8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4A9-articStaccatissimoWedgeBelow.xml b/data/Leland/E4A9-articStaccatissimoWedgeBelow.xml deleted file mode 100644 index c6b5390a125..00000000000 --- a/data/Leland/E4A9-articStaccatissimoWedgeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4A9.xml b/data/Leland/E4A9.xml new file mode 100644 index 00000000000..c97a67e25c2 --- /dev/null +++ b/data/Leland/E4A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4AC-articMarcatoAbove.xml b/data/Leland/E4AC-articMarcatoAbove.xml deleted file mode 100644 index cffbc41e212..00000000000 --- a/data/Leland/E4AC-articMarcatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4AC.xml b/data/Leland/E4AC.xml new file mode 100644 index 00000000000..11fe7e283e8 --- /dev/null +++ b/data/Leland/E4AC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4AD-articMarcatoBelow.xml b/data/Leland/E4AD-articMarcatoBelow.xml deleted file mode 100644 index cbcf8cbaeba..00000000000 --- a/data/Leland/E4AD-articMarcatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4AD.xml b/data/Leland/E4AD.xml new file mode 100644 index 00000000000..86155a7b206 --- /dev/null +++ b/data/Leland/E4AD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4AE-articMarcatoStaccatoAbove.xml b/data/Leland/E4AE-articMarcatoStaccatoAbove.xml deleted file mode 100644 index d33085ff393..00000000000 --- a/data/Leland/E4AE-articMarcatoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4AE.xml b/data/Leland/E4AE.xml new file mode 100644 index 00000000000..594be8d43cc --- /dev/null +++ b/data/Leland/E4AE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4AF-articMarcatoStaccatoBelow.xml b/data/Leland/E4AF-articMarcatoStaccatoBelow.xml deleted file mode 100644 index 9306d4744a4..00000000000 --- a/data/Leland/E4AF-articMarcatoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4AF.xml b/data/Leland/E4AF.xml new file mode 100644 index 00000000000..48eea4323db --- /dev/null +++ b/data/Leland/E4AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B0-articAccentStaccatoAbove.xml b/data/Leland/E4B0-articAccentStaccatoAbove.xml deleted file mode 100644 index 3386239c678..00000000000 --- a/data/Leland/E4B0-articAccentStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B0.xml b/data/Leland/E4B0.xml new file mode 100644 index 00000000000..14200786e43 --- /dev/null +++ b/data/Leland/E4B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B1-articAccentStaccatoBelow.xml b/data/Leland/E4B1-articAccentStaccatoBelow.xml deleted file mode 100644 index b710d5dc582..00000000000 --- a/data/Leland/E4B1-articAccentStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B1.xml b/data/Leland/E4B1.xml new file mode 100644 index 00000000000..802d61d9147 --- /dev/null +++ b/data/Leland/E4B1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B2-articTenutoStaccatoAbove.xml b/data/Leland/E4B2-articTenutoStaccatoAbove.xml deleted file mode 100644 index e880f82f15c..00000000000 --- a/data/Leland/E4B2-articTenutoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B2.xml b/data/Leland/E4B2.xml new file mode 100644 index 00000000000..65edc9fa390 --- /dev/null +++ b/data/Leland/E4B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B3-articTenutoStaccatoBelow.xml b/data/Leland/E4B3-articTenutoStaccatoBelow.xml deleted file mode 100644 index 1a6af0e538f..00000000000 --- a/data/Leland/E4B3-articTenutoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B3.xml b/data/Leland/E4B3.xml new file mode 100644 index 00000000000..46c244385de --- /dev/null +++ b/data/Leland/E4B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B4-articTenutoAccentAbove.xml b/data/Leland/E4B4-articTenutoAccentAbove.xml deleted file mode 100644 index 167de076d07..00000000000 --- a/data/Leland/E4B4-articTenutoAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B4.xml b/data/Leland/E4B4.xml new file mode 100644 index 00000000000..dc3fec920d6 --- /dev/null +++ b/data/Leland/E4B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B5-articTenutoAccentBelow.xml b/data/Leland/E4B5-articTenutoAccentBelow.xml deleted file mode 100644 index e87c9b8bcf0..00000000000 --- a/data/Leland/E4B5-articTenutoAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B5.xml b/data/Leland/E4B5.xml new file mode 100644 index 00000000000..45bda49b133 --- /dev/null +++ b/data/Leland/E4B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B6-articStressAbove.xml b/data/Leland/E4B6-articStressAbove.xml deleted file mode 100644 index 89b1dbb4b06..00000000000 --- a/data/Leland/E4B6-articStressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B6.xml b/data/Leland/E4B6.xml new file mode 100644 index 00000000000..404857a2a07 --- /dev/null +++ b/data/Leland/E4B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B7-articStressBelow.xml b/data/Leland/E4B7-articStressBelow.xml deleted file mode 100644 index f7251e8ae2b..00000000000 --- a/data/Leland/E4B7-articStressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B7.xml b/data/Leland/E4B7.xml new file mode 100644 index 00000000000..f68e50775e9 --- /dev/null +++ b/data/Leland/E4B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B8-articUnstressAbove.xml b/data/Leland/E4B8-articUnstressAbove.xml deleted file mode 100644 index 7c695a2e3d0..00000000000 --- a/data/Leland/E4B8-articUnstressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B8.xml b/data/Leland/E4B8.xml new file mode 100644 index 00000000000..8e3eedea5b3 --- /dev/null +++ b/data/Leland/E4B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4B9-articUnstressBelow.xml b/data/Leland/E4B9-articUnstressBelow.xml deleted file mode 100644 index 52cd172ecb6..00000000000 --- a/data/Leland/E4B9-articUnstressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4B9.xml b/data/Leland/E4B9.xml new file mode 100644 index 00000000000..291ca41b50e --- /dev/null +++ b/data/Leland/E4B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4BA-articLaissezVibrerAbove.xml b/data/Leland/E4BA-articLaissezVibrerAbove.xml deleted file mode 100644 index 7887dc4e325..00000000000 --- a/data/Leland/E4BA-articLaissezVibrerAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4BA.xml b/data/Leland/E4BA.xml new file mode 100644 index 00000000000..a9b3c0476b0 --- /dev/null +++ b/data/Leland/E4BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4BB-articLaissezVibrerBelow.xml b/data/Leland/E4BB-articLaissezVibrerBelow.xml deleted file mode 100644 index 3257923db4b..00000000000 --- a/data/Leland/E4BB-articLaissezVibrerBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4BB.xml b/data/Leland/E4BB.xml new file mode 100644 index 00000000000..bb49b2ccf5e --- /dev/null +++ b/data/Leland/E4BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4BC-articMarcatoTenutoAbove.xml b/data/Leland/E4BC-articMarcatoTenutoAbove.xml deleted file mode 100644 index 433d6fb6727..00000000000 --- a/data/Leland/E4BC-articMarcatoTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4BC.xml b/data/Leland/E4BC.xml new file mode 100644 index 00000000000..c7b968977fd --- /dev/null +++ b/data/Leland/E4BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4BD-articMarcatoTenutoBelow.xml b/data/Leland/E4BD-articMarcatoTenutoBelow.xml deleted file mode 100644 index b33fe22a1d6..00000000000 --- a/data/Leland/E4BD-articMarcatoTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4BD.xml b/data/Leland/E4BD.xml new file mode 100644 index 00000000000..c4c28bc3307 --- /dev/null +++ b/data/Leland/E4BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C0-fermataAbove.xml b/data/Leland/E4C0-fermataAbove.xml deleted file mode 100644 index c215ab17196..00000000000 --- a/data/Leland/E4C0-fermataAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C0.xml b/data/Leland/E4C0.xml new file mode 100644 index 00000000000..ca313483417 --- /dev/null +++ b/data/Leland/E4C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C1-fermataBelow.xml b/data/Leland/E4C1-fermataBelow.xml deleted file mode 100644 index 80c3da27c26..00000000000 --- a/data/Leland/E4C1-fermataBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C1.xml b/data/Leland/E4C1.xml new file mode 100644 index 00000000000..e1505de999c --- /dev/null +++ b/data/Leland/E4C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C4-fermataShortAbove.xml b/data/Leland/E4C4-fermataShortAbove.xml deleted file mode 100644 index 51327554ae9..00000000000 --- a/data/Leland/E4C4-fermataShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C4.xml b/data/Leland/E4C4.xml new file mode 100644 index 00000000000..c391af560c3 --- /dev/null +++ b/data/Leland/E4C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C5-fermataShortBelow.xml b/data/Leland/E4C5-fermataShortBelow.xml deleted file mode 100644 index 0f2ee7ea49e..00000000000 --- a/data/Leland/E4C5-fermataShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C5.xml b/data/Leland/E4C5.xml new file mode 100644 index 00000000000..d36636254db --- /dev/null +++ b/data/Leland/E4C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C6-fermataLongAbove.xml b/data/Leland/E4C6-fermataLongAbove.xml deleted file mode 100644 index c856398ff52..00000000000 --- a/data/Leland/E4C6-fermataLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C6.xml b/data/Leland/E4C6.xml new file mode 100644 index 00000000000..357c7967891 --- /dev/null +++ b/data/Leland/E4C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C7-fermataLongBelow.xml b/data/Leland/E4C7-fermataLongBelow.xml deleted file mode 100644 index 14271b3efaa..00000000000 --- a/data/Leland/E4C7-fermataLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C7.xml b/data/Leland/E4C7.xml new file mode 100644 index 00000000000..72813b00d02 --- /dev/null +++ b/data/Leland/E4C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C8-fermataVeryLongAbove.xml b/data/Leland/E4C8-fermataVeryLongAbove.xml deleted file mode 100644 index 67d360d1ee9..00000000000 --- a/data/Leland/E4C8-fermataVeryLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C8.xml b/data/Leland/E4C8.xml new file mode 100644 index 00000000000..b50d8716a3e --- /dev/null +++ b/data/Leland/E4C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4C9-fermataVeryLongBelow.xml b/data/Leland/E4C9-fermataVeryLongBelow.xml deleted file mode 100644 index 029ef76fa2f..00000000000 --- a/data/Leland/E4C9-fermataVeryLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4C9.xml b/data/Leland/E4C9.xml new file mode 100644 index 00000000000..446ac914e84 --- /dev/null +++ b/data/Leland/E4C9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4CE-breathMarkComma.xml b/data/Leland/E4CE-breathMarkComma.xml deleted file mode 100644 index 1956f5e68d1..00000000000 --- a/data/Leland/E4CE-breathMarkComma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4CE.xml b/data/Leland/E4CE.xml new file mode 100644 index 00000000000..087bf5c5de1 --- /dev/null +++ b/data/Leland/E4CE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E0-restMaxima.xml b/data/Leland/E4E0-restMaxima.xml deleted file mode 100644 index 0e9ecbbe5f0..00000000000 --- a/data/Leland/E4E0-restMaxima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E0.xml b/data/Leland/E4E0.xml new file mode 100644 index 00000000000..a22188bcb7a --- /dev/null +++ b/data/Leland/E4E0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E1-restLonga.xml b/data/Leland/E4E1-restLonga.xml deleted file mode 100644 index ae80e8cd20b..00000000000 --- a/data/Leland/E4E1-restLonga.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E1.xml b/data/Leland/E4E1.xml new file mode 100644 index 00000000000..a37c00199a3 --- /dev/null +++ b/data/Leland/E4E1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E2-restDoubleWhole.xml b/data/Leland/E4E2-restDoubleWhole.xml deleted file mode 100644 index 966dfb8b5c7..00000000000 --- a/data/Leland/E4E2-restDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E2.xml b/data/Leland/E4E2.xml new file mode 100644 index 00000000000..01a14cc6546 --- /dev/null +++ b/data/Leland/E4E2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E3-restWhole.xml b/data/Leland/E4E3-restWhole.xml deleted file mode 100644 index bb35a5683d5..00000000000 --- a/data/Leland/E4E3-restWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E3.xml b/data/Leland/E4E3.xml new file mode 100644 index 00000000000..76aca09392a --- /dev/null +++ b/data/Leland/E4E3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E4-restHalf.xml b/data/Leland/E4E4-restHalf.xml deleted file mode 100644 index 17320e9bafc..00000000000 --- a/data/Leland/E4E4-restHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E4.xml b/data/Leland/E4E4.xml new file mode 100644 index 00000000000..c967591b281 --- /dev/null +++ b/data/Leland/E4E4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E5-restQuarter.xml b/data/Leland/E4E5-restQuarter.xml deleted file mode 100644 index 953c9129d36..00000000000 --- a/data/Leland/E4E5-restQuarter.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E5.xml b/data/Leland/E4E5.xml new file mode 100644 index 00000000000..cf55502e71a --- /dev/null +++ b/data/Leland/E4E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E6-rest8th.xml b/data/Leland/E4E6-rest8th.xml deleted file mode 100644 index dff6f81aba9..00000000000 --- a/data/Leland/E4E6-rest8th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E6.xml b/data/Leland/E4E6.xml new file mode 100644 index 00000000000..aa1442932cf --- /dev/null +++ b/data/Leland/E4E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E7-rest16th.xml b/data/Leland/E4E7-rest16th.xml deleted file mode 100644 index 2f698ee6a1e..00000000000 --- a/data/Leland/E4E7-rest16th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E7.xml b/data/Leland/E4E7.xml new file mode 100644 index 00000000000..8298b4828bc --- /dev/null +++ b/data/Leland/E4E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E8-rest32nd.xml b/data/Leland/E4E8-rest32nd.xml deleted file mode 100644 index ccc044cc713..00000000000 --- a/data/Leland/E4E8-rest32nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E8.xml b/data/Leland/E4E8.xml new file mode 100644 index 00000000000..3d4f18c7810 --- /dev/null +++ b/data/Leland/E4E8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4E9-rest64th.xml b/data/Leland/E4E9-rest64th.xml deleted file mode 100644 index 38321608504..00000000000 --- a/data/Leland/E4E9-rest64th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4E9.xml b/data/Leland/E4E9.xml new file mode 100644 index 00000000000..b30c06ab230 --- /dev/null +++ b/data/Leland/E4E9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4EA-rest128th.xml b/data/Leland/E4EA-rest128th.xml deleted file mode 100644 index 9733c3227b7..00000000000 --- a/data/Leland/E4EA-rest128th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4EA.xml b/data/Leland/E4EA.xml new file mode 100644 index 00000000000..33946307f58 --- /dev/null +++ b/data/Leland/E4EA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4EB-rest256th.xml b/data/Leland/E4EB-rest256th.xml deleted file mode 100644 index 7cef136e770..00000000000 --- a/data/Leland/E4EB-rest256th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4EB.xml b/data/Leland/E4EB.xml new file mode 100644 index 00000000000..e3a8ed50673 --- /dev/null +++ b/data/Leland/E4EB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4EC-rest512th.xml b/data/Leland/E4EC-rest512th.xml deleted file mode 100644 index 1ac3f619651..00000000000 --- a/data/Leland/E4EC-rest512th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4EC.xml b/data/Leland/E4EC.xml new file mode 100644 index 00000000000..865d0a1c15d --- /dev/null +++ b/data/Leland/E4EC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4ED-rest1024th.xml b/data/Leland/E4ED-rest1024th.xml deleted file mode 100644 index d2607a906ef..00000000000 --- a/data/Leland/E4ED-rest1024th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4ED.xml b/data/Leland/E4ED.xml new file mode 100644 index 00000000000..fef35fb8198 --- /dev/null +++ b/data/Leland/E4ED.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4F2-restQuarterOld.xml b/data/Leland/E4F2-restQuarterOld.xml deleted file mode 100644 index bf39a0d8b86..00000000000 --- a/data/Leland/E4F2-restQuarterOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4F2.xml b/data/Leland/E4F2.xml new file mode 100644 index 00000000000..42bcd44c3c9 --- /dev/null +++ b/data/Leland/E4F2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E4F6-restQuarterZ.xml b/data/Leland/E4F6-restQuarterZ.xml deleted file mode 100644 index 518c5ddd0fe..00000000000 --- a/data/Leland/E4F6-restQuarterZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E4F6.xml b/data/Leland/E4F6.xml new file mode 100644 index 00000000000..a49d48ac350 --- /dev/null +++ b/data/Leland/E4F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E500-repeat1Bar.xml b/data/Leland/E500-repeat1Bar.xml deleted file mode 100644 index e027e8011de..00000000000 --- a/data/Leland/E500-repeat1Bar.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E500.xml b/data/Leland/E500.xml new file mode 100644 index 00000000000..f0387d75200 --- /dev/null +++ b/data/Leland/E500.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E501-repeat2Bars.xml b/data/Leland/E501-repeat2Bars.xml deleted file mode 100644 index 645086c7a3b..00000000000 --- a/data/Leland/E501-repeat2Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E501.xml b/data/Leland/E501.xml new file mode 100644 index 00000000000..99c84028d71 --- /dev/null +++ b/data/Leland/E501.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E502-repeat4Bars.xml b/data/Leland/E502-repeat4Bars.xml deleted file mode 100644 index 7d3ef576ead..00000000000 --- a/data/Leland/E502-repeat4Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E502.xml b/data/Leland/E502.xml new file mode 100644 index 00000000000..d1e2aea837a --- /dev/null +++ b/data/Leland/E502.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E503-repeatBarUpperDot.xml b/data/Leland/E503-repeatBarUpperDot.xml deleted file mode 100644 index 7b7bea226d1..00000000000 --- a/data/Leland/E503-repeatBarUpperDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E503.xml b/data/Leland/E503.xml new file mode 100644 index 00000000000..1b85320442a --- /dev/null +++ b/data/Leland/E503.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E504-repeatBarSlash.xml b/data/Leland/E504-repeatBarSlash.xml deleted file mode 100644 index 305eb6bce50..00000000000 --- a/data/Leland/E504-repeatBarSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E504.xml b/data/Leland/E504.xml new file mode 100644 index 00000000000..3c1a87dcd75 --- /dev/null +++ b/data/Leland/E504.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E505-repeatBarLowerDot.xml b/data/Leland/E505-repeatBarLowerDot.xml deleted file mode 100644 index 2d27de46640..00000000000 --- a/data/Leland/E505-repeatBarLowerDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E505.xml b/data/Leland/E505.xml new file mode 100644 index 00000000000..45bc91fff64 --- /dev/null +++ b/data/Leland/E505.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E510-ottava.xml b/data/Leland/E510-ottava.xml deleted file mode 100644 index 7e1b9252ff4..00000000000 --- a/data/Leland/E510-ottava.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E510.xml b/data/Leland/E510.xml new file mode 100644 index 00000000000..3f78237c088 --- /dev/null +++ b/data/Leland/E510.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E511-ottavaAlta.xml b/data/Leland/E511-ottavaAlta.xml deleted file mode 100644 index f87b42850fe..00000000000 --- a/data/Leland/E511-ottavaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E511.xml b/data/Leland/E511.xml new file mode 100644 index 00000000000..d18b9057475 --- /dev/null +++ b/data/Leland/E511.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E512-ottavaBassa.xml b/data/Leland/E512-ottavaBassa.xml deleted file mode 100644 index 10a36f6be87..00000000000 --- a/data/Leland/E512-ottavaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E512.xml b/data/Leland/E512.xml new file mode 100644 index 00000000000..4c0ad927697 --- /dev/null +++ b/data/Leland/E512.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E513-ottavaBassaBa.xml b/data/Leland/E513-ottavaBassaBa.xml deleted file mode 100644 index 198afa48369..00000000000 --- a/data/Leland/E513-ottavaBassaBa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E513.xml b/data/Leland/E513.xml new file mode 100644 index 00000000000..4509c50c9bc --- /dev/null +++ b/data/Leland/E513.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E514-quindicesima.xml b/data/Leland/E514-quindicesima.xml deleted file mode 100644 index 467011cbe39..00000000000 --- a/data/Leland/E514-quindicesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E514.xml b/data/Leland/E514.xml new file mode 100644 index 00000000000..fed60b5802c --- /dev/null +++ b/data/Leland/E514.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E515-quindicesimaAlta.xml b/data/Leland/E515-quindicesimaAlta.xml deleted file mode 100644 index 98924a48cc9..00000000000 --- a/data/Leland/E515-quindicesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E515.xml b/data/Leland/E515.xml new file mode 100644 index 00000000000..01073265a14 --- /dev/null +++ b/data/Leland/E515.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E516-quindicesimaBassa.xml b/data/Leland/E516-quindicesimaBassa.xml deleted file mode 100644 index c275de27bf7..00000000000 --- a/data/Leland/E516-quindicesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E516.xml b/data/Leland/E516.xml new file mode 100644 index 00000000000..e8413226a1a --- /dev/null +++ b/data/Leland/E516.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E517-ventiduesima.xml b/data/Leland/E517-ventiduesima.xml deleted file mode 100644 index e6071810db2..00000000000 --- a/data/Leland/E517-ventiduesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E517.xml b/data/Leland/E517.xml new file mode 100644 index 00000000000..84d8ea868eb --- /dev/null +++ b/data/Leland/E517.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E518-ventiduesimaAlta.xml b/data/Leland/E518-ventiduesimaAlta.xml deleted file mode 100644 index cad95d5ac4f..00000000000 --- a/data/Leland/E518-ventiduesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E518.xml b/data/Leland/E518.xml new file mode 100644 index 00000000000..aeb7f7a28aa --- /dev/null +++ b/data/Leland/E518.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E519-ventiduesimaBassa.xml b/data/Leland/E519-ventiduesimaBassa.xml deleted file mode 100644 index 60c19b5dfbe..00000000000 --- a/data/Leland/E519-ventiduesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E519.xml b/data/Leland/E519.xml new file mode 100644 index 00000000000..5d335cfc4c7 --- /dev/null +++ b/data/Leland/E519.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E51A-octaveParensLeft.xml b/data/Leland/E51A-octaveParensLeft.xml deleted file mode 100644 index bf505fd7638..00000000000 --- a/data/Leland/E51A-octaveParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E51A.xml b/data/Leland/E51A.xml new file mode 100644 index 00000000000..fdaae99b73b --- /dev/null +++ b/data/Leland/E51A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E51B-octaveParensRight.xml b/data/Leland/E51B-octaveParensRight.xml deleted file mode 100644 index 52c0804a84b..00000000000 --- a/data/Leland/E51B-octaveParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E51B.xml b/data/Leland/E51B.xml new file mode 100644 index 00000000000..a0b58845bfb --- /dev/null +++ b/data/Leland/E51B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E51C-ottavaBassaVb.xml b/data/Leland/E51C-ottavaBassaVb.xml deleted file mode 100644 index 04e726a4fef..00000000000 --- a/data/Leland/E51C-ottavaBassaVb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E51C.xml b/data/Leland/E51C.xml new file mode 100644 index 00000000000..0e5b5ba6b24 --- /dev/null +++ b/data/Leland/E51C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E51D-quindicesimaBassaMb.xml b/data/Leland/E51D-quindicesimaBassaMb.xml deleted file mode 100644 index 71df519a46f..00000000000 --- a/data/Leland/E51D-quindicesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E51D.xml b/data/Leland/E51D.xml new file mode 100644 index 00000000000..6e8a8c4b236 --- /dev/null +++ b/data/Leland/E51D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E51E-ventiduesimaBassaMb.xml b/data/Leland/E51E-ventiduesimaBassaMb.xml deleted file mode 100644 index 7d6a3f6c685..00000000000 --- a/data/Leland/E51E-ventiduesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E51E.xml b/data/Leland/E51E.xml new file mode 100644 index 00000000000..22638a6fae5 --- /dev/null +++ b/data/Leland/E51E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E520-dynamicPiano.xml b/data/Leland/E520-dynamicPiano.xml deleted file mode 100644 index ea36a870d3b..00000000000 --- a/data/Leland/E520-dynamicPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E520.xml b/data/Leland/E520.xml new file mode 100644 index 00000000000..e65c838017c --- /dev/null +++ b/data/Leland/E520.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E521-dynamicMezzo.xml b/data/Leland/E521-dynamicMezzo.xml deleted file mode 100644 index ee8da9c4c7f..00000000000 --- a/data/Leland/E521-dynamicMezzo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E521.xml b/data/Leland/E521.xml new file mode 100644 index 00000000000..ada2b08b637 --- /dev/null +++ b/data/Leland/E521.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E522-dynamicForte.xml b/data/Leland/E522-dynamicForte.xml deleted file mode 100644 index 7bac2fba2fb..00000000000 --- a/data/Leland/E522-dynamicForte.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E522.xml b/data/Leland/E522.xml new file mode 100644 index 00000000000..a429bbaa619 --- /dev/null +++ b/data/Leland/E522.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E523-dynamicRinforzando.xml b/data/Leland/E523-dynamicRinforzando.xml deleted file mode 100644 index 74302a1dd42..00000000000 --- a/data/Leland/E523-dynamicRinforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E523.xml b/data/Leland/E523.xml new file mode 100644 index 00000000000..1f9d28fb239 --- /dev/null +++ b/data/Leland/E523.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E524-dynamicSforzando.xml b/data/Leland/E524-dynamicSforzando.xml deleted file mode 100644 index 238821bc612..00000000000 --- a/data/Leland/E524-dynamicSforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E524.xml b/data/Leland/E524.xml new file mode 100644 index 00000000000..a35b02cf99e --- /dev/null +++ b/data/Leland/E524.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E525-dynamicZ.xml b/data/Leland/E525-dynamicZ.xml deleted file mode 100644 index 4e61dcfcfc4..00000000000 --- a/data/Leland/E525-dynamicZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E525.xml b/data/Leland/E525.xml new file mode 100644 index 00000000000..607a5e5df5d --- /dev/null +++ b/data/Leland/E525.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E526-dynamicNiente.xml b/data/Leland/E526-dynamicNiente.xml deleted file mode 100644 index 5b2ac993997..00000000000 --- a/data/Leland/E526-dynamicNiente.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E526.xml b/data/Leland/E526.xml new file mode 100644 index 00000000000..7e89ea63399 --- /dev/null +++ b/data/Leland/E526.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E527-dynamicPPPPPP.xml b/data/Leland/E527-dynamicPPPPPP.xml deleted file mode 100644 index a5375832767..00000000000 --- a/data/Leland/E527-dynamicPPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E527.xml b/data/Leland/E527.xml new file mode 100644 index 00000000000..7d6a3638c32 --- /dev/null +++ b/data/Leland/E527.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E528-dynamicPPPPP.xml b/data/Leland/E528-dynamicPPPPP.xml deleted file mode 100644 index 8b4bed08b78..00000000000 --- a/data/Leland/E528-dynamicPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E528.xml b/data/Leland/E528.xml new file mode 100644 index 00000000000..49f591e054b --- /dev/null +++ b/data/Leland/E528.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E529-dynamicPPPP.xml b/data/Leland/E529-dynamicPPPP.xml deleted file mode 100644 index eb5e7254885..00000000000 --- a/data/Leland/E529-dynamicPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E529.xml b/data/Leland/E529.xml new file mode 100644 index 00000000000..a7ed3b681f6 --- /dev/null +++ b/data/Leland/E529.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E52A-dynamicPPP.xml b/data/Leland/E52A-dynamicPPP.xml deleted file mode 100644 index e5d1725cfde..00000000000 --- a/data/Leland/E52A-dynamicPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E52A.xml b/data/Leland/E52A.xml new file mode 100644 index 00000000000..e0460b2a116 --- /dev/null +++ b/data/Leland/E52A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E52B-dynamicPP.xml b/data/Leland/E52B-dynamicPP.xml deleted file mode 100644 index ebbe3a4d30f..00000000000 --- a/data/Leland/E52B-dynamicPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E52B.xml b/data/Leland/E52B.xml new file mode 100644 index 00000000000..a475999251e --- /dev/null +++ b/data/Leland/E52B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E52C-dynamicMP.xml b/data/Leland/E52C-dynamicMP.xml deleted file mode 100644 index ac3045504b4..00000000000 --- a/data/Leland/E52C-dynamicMP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E52C.xml b/data/Leland/E52C.xml new file mode 100644 index 00000000000..3ce8d975980 --- /dev/null +++ b/data/Leland/E52C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E52D-dynamicMF.xml b/data/Leland/E52D-dynamicMF.xml deleted file mode 100644 index 200303b6f25..00000000000 --- a/data/Leland/E52D-dynamicMF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E52D.xml b/data/Leland/E52D.xml new file mode 100644 index 00000000000..d6f7ae1be40 --- /dev/null +++ b/data/Leland/E52D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E52E-dynamicPF.xml b/data/Leland/E52E-dynamicPF.xml deleted file mode 100644 index 2ca03f720e5..00000000000 --- a/data/Leland/E52E-dynamicPF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E52E.xml b/data/Leland/E52E.xml new file mode 100644 index 00000000000..35517c6510a --- /dev/null +++ b/data/Leland/E52E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E52F-dynamicFF.xml b/data/Leland/E52F-dynamicFF.xml deleted file mode 100644 index d8c288d9edc..00000000000 --- a/data/Leland/E52F-dynamicFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E52F.xml b/data/Leland/E52F.xml new file mode 100644 index 00000000000..ae820c17f65 --- /dev/null +++ b/data/Leland/E52F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E530-dynamicFFF.xml b/data/Leland/E530-dynamicFFF.xml deleted file mode 100644 index 52f9451f93f..00000000000 --- a/data/Leland/E530-dynamicFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E530.xml b/data/Leland/E530.xml new file mode 100644 index 00000000000..420be585cb1 --- /dev/null +++ b/data/Leland/E530.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E531-dynamicFFFF.xml b/data/Leland/E531-dynamicFFFF.xml deleted file mode 100644 index c1885d2fae7..00000000000 --- a/data/Leland/E531-dynamicFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E531.xml b/data/Leland/E531.xml new file mode 100644 index 00000000000..aef32012bb2 --- /dev/null +++ b/data/Leland/E531.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E532-dynamicFFFFF.xml b/data/Leland/E532-dynamicFFFFF.xml deleted file mode 100644 index a556e8063b0..00000000000 --- a/data/Leland/E532-dynamicFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E532.xml b/data/Leland/E532.xml new file mode 100644 index 00000000000..dbaad590445 --- /dev/null +++ b/data/Leland/E532.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E533-dynamicFFFFFF.xml b/data/Leland/E533-dynamicFFFFFF.xml deleted file mode 100644 index e4fa1ec743c..00000000000 --- a/data/Leland/E533-dynamicFFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E533.xml b/data/Leland/E533.xml new file mode 100644 index 00000000000..8f319e85c64 --- /dev/null +++ b/data/Leland/E533.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E534-dynamicFortePiano.xml b/data/Leland/E534-dynamicFortePiano.xml deleted file mode 100644 index 63bb4a22fb8..00000000000 --- a/data/Leland/E534-dynamicFortePiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E534.xml b/data/Leland/E534.xml new file mode 100644 index 00000000000..37d638bc014 --- /dev/null +++ b/data/Leland/E534.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E535-dynamicForzando.xml b/data/Leland/E535-dynamicForzando.xml deleted file mode 100644 index edd96bdca2f..00000000000 --- a/data/Leland/E535-dynamicForzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E535.xml b/data/Leland/E535.xml new file mode 100644 index 00000000000..221dca6ef05 --- /dev/null +++ b/data/Leland/E535.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E536-dynamicSforzando1.xml b/data/Leland/E536-dynamicSforzando1.xml deleted file mode 100644 index 7c88fabc820..00000000000 --- a/data/Leland/E536-dynamicSforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E536.xml b/data/Leland/E536.xml new file mode 100644 index 00000000000..a1410be235a --- /dev/null +++ b/data/Leland/E536.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E537-dynamicSforzandoPiano.xml b/data/Leland/E537-dynamicSforzandoPiano.xml deleted file mode 100644 index f425587af98..00000000000 --- a/data/Leland/E537-dynamicSforzandoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E537.xml b/data/Leland/E537.xml new file mode 100644 index 00000000000..6d6f01d35e1 --- /dev/null +++ b/data/Leland/E537.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E538-dynamicSforzandoPianissimo.xml b/data/Leland/E538-dynamicSforzandoPianissimo.xml deleted file mode 100644 index a9d63cf5718..00000000000 --- a/data/Leland/E538-dynamicSforzandoPianissimo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E538.xml b/data/Leland/E538.xml new file mode 100644 index 00000000000..38e5a99d431 --- /dev/null +++ b/data/Leland/E538.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E539-dynamicSforzato.xml b/data/Leland/E539-dynamicSforzato.xml deleted file mode 100644 index 9cc1cfc6b02..00000000000 --- a/data/Leland/E539-dynamicSforzato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E539.xml b/data/Leland/E539.xml new file mode 100644 index 00000000000..4f71be726b0 --- /dev/null +++ b/data/Leland/E539.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E53A-dynamicSforzatoPiano.xml b/data/Leland/E53A-dynamicSforzatoPiano.xml deleted file mode 100644 index 4c87e5e3a55..00000000000 --- a/data/Leland/E53A-dynamicSforzatoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E53A.xml b/data/Leland/E53A.xml new file mode 100644 index 00000000000..fe31ee4eafd --- /dev/null +++ b/data/Leland/E53A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E53B-dynamicSforzatoFF.xml b/data/Leland/E53B-dynamicSforzatoFF.xml deleted file mode 100644 index 53362b11923..00000000000 --- a/data/Leland/E53B-dynamicSforzatoFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E53B.xml b/data/Leland/E53B.xml new file mode 100644 index 00000000000..ff59674c521 --- /dev/null +++ b/data/Leland/E53B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E53C-dynamicRinforzando1.xml b/data/Leland/E53C-dynamicRinforzando1.xml deleted file mode 100644 index 4311849be0a..00000000000 --- a/data/Leland/E53C-dynamicRinforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E53C.xml b/data/Leland/E53C.xml new file mode 100644 index 00000000000..7a48b2f33c2 --- /dev/null +++ b/data/Leland/E53C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E53D-dynamicRinforzando2.xml b/data/Leland/E53D-dynamicRinforzando2.xml deleted file mode 100644 index 49ea3f90897..00000000000 --- a/data/Leland/E53D-dynamicRinforzando2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E53D.xml b/data/Leland/E53D.xml new file mode 100644 index 00000000000..120d05b4e6a --- /dev/null +++ b/data/Leland/E53D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E566-ornamentTrill.xml b/data/Leland/E566-ornamentTrill.xml deleted file mode 100644 index 82e76243450..00000000000 --- a/data/Leland/E566-ornamentTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E566.xml b/data/Leland/E566.xml new file mode 100644 index 00000000000..48847c2b06d --- /dev/null +++ b/data/Leland/E566.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E567-ornamentTurn.xml b/data/Leland/E567-ornamentTurn.xml deleted file mode 100644 index 70c9220d079..00000000000 --- a/data/Leland/E567-ornamentTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E567.xml b/data/Leland/E567.xml new file mode 100644 index 00000000000..0a1f7de17f7 --- /dev/null +++ b/data/Leland/E567.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E568-ornamentTurnInverted.xml b/data/Leland/E568-ornamentTurnInverted.xml deleted file mode 100644 index a854537c6de..00000000000 --- a/data/Leland/E568-ornamentTurnInverted.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E568.xml b/data/Leland/E568.xml new file mode 100644 index 00000000000..82f8507d3dc --- /dev/null +++ b/data/Leland/E568.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E569-ornamentTurnSlash.xml b/data/Leland/E569-ornamentTurnSlash.xml deleted file mode 100644 index 1cfbfec2c30..00000000000 --- a/data/Leland/E569-ornamentTurnSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E569.xml b/data/Leland/E569.xml new file mode 100644 index 00000000000..632733a292a --- /dev/null +++ b/data/Leland/E569.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E56A-ornamentTurnUp.xml b/data/Leland/E56A-ornamentTurnUp.xml deleted file mode 100644 index 4aef71b0c1d..00000000000 --- a/data/Leland/E56A-ornamentTurnUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E56A.xml b/data/Leland/E56A.xml new file mode 100644 index 00000000000..9494af55d50 --- /dev/null +++ b/data/Leland/E56A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E56B-ornamentTurnUpS.xml b/data/Leland/E56B-ornamentTurnUpS.xml deleted file mode 100644 index 1cc8149d4ab..00000000000 --- a/data/Leland/E56B-ornamentTurnUpS.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E56B.xml b/data/Leland/E56B.xml new file mode 100644 index 00000000000..39b68f07d64 --- /dev/null +++ b/data/Leland/E56B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E56C-ornamentShortTrill.xml b/data/Leland/E56C-ornamentShortTrill.xml deleted file mode 100644 index cb74be9fa38..00000000000 --- a/data/Leland/E56C-ornamentShortTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E56C.xml b/data/Leland/E56C.xml new file mode 100644 index 00000000000..24b1187141d --- /dev/null +++ b/data/Leland/E56C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E56D-ornamentMordent.xml b/data/Leland/E56D-ornamentMordent.xml deleted file mode 100644 index d71d56aff95..00000000000 --- a/data/Leland/E56D-ornamentMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E56D.xml b/data/Leland/E56D.xml new file mode 100644 index 00000000000..c2c0b8015d4 --- /dev/null +++ b/data/Leland/E56D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E56E-ornamentTremblement.xml b/data/Leland/E56E-ornamentTremblement.xml deleted file mode 100644 index 5269d61f476..00000000000 --- a/data/Leland/E56E-ornamentTremblement.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E56E.xml b/data/Leland/E56E.xml new file mode 100644 index 00000000000..a57e5cbc544 --- /dev/null +++ b/data/Leland/E56E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E56F-ornamentHaydn.xml b/data/Leland/E56F-ornamentHaydn.xml deleted file mode 100644 index 2701933dcd1..00000000000 --- a/data/Leland/E56F-ornamentHaydn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E56F.xml b/data/Leland/E56F.xml new file mode 100644 index 00000000000..6120311e375 --- /dev/null +++ b/data/Leland/E56F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E583-ornamentVerticalLine.xml b/data/Leland/E583-ornamentVerticalLine.xml deleted file mode 100644 index 6f82578df84..00000000000 --- a/data/Leland/E583-ornamentVerticalLine.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E583.xml b/data/Leland/E583.xml new file mode 100644 index 00000000000..3423b2de17f --- /dev/null +++ b/data/Leland/E583.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E587-ornamentSchleifer.xml b/data/Leland/E587-ornamentSchleifer.xml deleted file mode 100644 index b689a2e5b30..00000000000 --- a/data/Leland/E587-ornamentSchleifer.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E587.xml b/data/Leland/E587.xml new file mode 100644 index 00000000000..55a6f637815 --- /dev/null +++ b/data/Leland/E587.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E59D-ornamentZigZagLineNoRightEnd.xml b/data/Leland/E59D-ornamentZigZagLineNoRightEnd.xml deleted file mode 100644 index 59d5fccbc6f..00000000000 --- a/data/Leland/E59D-ornamentZigZagLineNoRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E59D.xml b/data/Leland/E59D.xml new file mode 100644 index 00000000000..8eaf36ddba9 --- /dev/null +++ b/data/Leland/E59D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E59E-ornamentZigZagLineWithRightEnd.xml b/data/Leland/E59E-ornamentZigZagLineWithRightEnd.xml deleted file mode 100644 index 78732667e97..00000000000 --- a/data/Leland/E59E-ornamentZigZagLineWithRightEnd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E59E.xml b/data/Leland/E59E.xml new file mode 100644 index 00000000000..424010304c0 --- /dev/null +++ b/data/Leland/E59E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5B2-ornamentPrecompAppoggTrill.xml b/data/Leland/E5B2-ornamentPrecompAppoggTrill.xml deleted file mode 100644 index f55bf95981d..00000000000 --- a/data/Leland/E5B2-ornamentPrecompAppoggTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5B2.xml b/data/Leland/E5B2.xml new file mode 100644 index 00000000000..8fb74e95542 --- /dev/null +++ b/data/Leland/E5B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5B5-ornamentPrecompSlideTrillDAnglebert.xml b/data/Leland/E5B5-ornamentPrecompSlideTrillDAnglebert.xml deleted file mode 100644 index 259d6f4ea35..00000000000 --- a/data/Leland/E5B5-ornamentPrecompSlideTrillDAnglebert.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5B5.xml b/data/Leland/E5B5.xml new file mode 100644 index 00000000000..8a6f2c2e25b --- /dev/null +++ b/data/Leland/E5B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5B8-ornamentPrecompSlideTrillBach.xml b/data/Leland/E5B8-ornamentPrecompSlideTrillBach.xml deleted file mode 100644 index dd0dff58ad9..00000000000 --- a/data/Leland/E5B8-ornamentPrecompSlideTrillBach.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5B8.xml b/data/Leland/E5B8.xml new file mode 100644 index 00000000000..fcebe7d110f --- /dev/null +++ b/data/Leland/E5B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5BB-ornamentPrecompTrillSuffixDandrieu.xml b/data/Leland/E5BB-ornamentPrecompTrillSuffixDandrieu.xml deleted file mode 100644 index 0ebcb0fcc9e..00000000000 --- a/data/Leland/E5BB-ornamentPrecompTrillSuffixDandrieu.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5BB.xml b/data/Leland/E5BB.xml new file mode 100644 index 00000000000..36dadee8b04 --- /dev/null +++ b/data/Leland/E5BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5BC-ornamentPrecompPortDeVoixMordent.xml b/data/Leland/E5BC-ornamentPrecompPortDeVoixMordent.xml deleted file mode 100644 index 83a8d44fce4..00000000000 --- a/data/Leland/E5BC-ornamentPrecompPortDeVoixMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5BC.xml b/data/Leland/E5BC.xml new file mode 100644 index 00000000000..73128597461 --- /dev/null +++ b/data/Leland/E5BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5BD-ornamentPrecompTrillWithMordent.xml b/data/Leland/E5BD-ornamentPrecompTrillWithMordent.xml deleted file mode 100644 index bb54059363a..00000000000 --- a/data/Leland/E5BD-ornamentPrecompTrillWithMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5BD.xml b/data/Leland/E5BD.xml new file mode 100644 index 00000000000..d324d25f1a5 --- /dev/null +++ b/data/Leland/E5BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5BE-ornamentPrecompCadence.xml b/data/Leland/E5BE-ornamentPrecompCadence.xml deleted file mode 100644 index adc1e9a54cd..00000000000 --- a/data/Leland/E5BE-ornamentPrecompCadence.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5BE.xml b/data/Leland/E5BE.xml new file mode 100644 index 00000000000..80b87913b21 --- /dev/null +++ b/data/Leland/E5BE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml b/data/Leland/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml deleted file mode 100644 index 186cfc71298..00000000000 --- a/data/Leland/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5C0.xml b/data/Leland/E5C0.xml new file mode 100644 index 00000000000..850ec206d2f --- /dev/null +++ b/data/Leland/E5C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml b/data/Leland/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml deleted file mode 100644 index 1ff6c6266b1..00000000000 --- a/data/Leland/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5C3.xml b/data/Leland/E5C3.xml new file mode 100644 index 00000000000..0502391f4fa --- /dev/null +++ b/data/Leland/E5C3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5C6-ornamentPrecompMordentUpperPrefix.xml b/data/Leland/E5C6-ornamentPrecompMordentUpperPrefix.xml deleted file mode 100644 index 8f1cbff91c3..00000000000 --- a/data/Leland/E5C6-ornamentPrecompMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5C6.xml b/data/Leland/E5C6.xml new file mode 100644 index 00000000000..e60971f84ec --- /dev/null +++ b/data/Leland/E5C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml b/data/Leland/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml deleted file mode 100644 index dd61baed291..00000000000 --- a/data/Leland/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5C7.xml b/data/Leland/E5C7.xml new file mode 100644 index 00000000000..a8d167db299 --- /dev/null +++ b/data/Leland/E5C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5C8-ornamentPrecompTrillLowerSuffix.xml b/data/Leland/E5C8-ornamentPrecompTrillLowerSuffix.xml deleted file mode 100644 index dae7aa53512..00000000000 --- a/data/Leland/E5C8-ornamentPrecompTrillLowerSuffix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5C8.xml b/data/Leland/E5C8.xml new file mode 100644 index 00000000000..14467130eb3 --- /dev/null +++ b/data/Leland/E5C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5E5-brassMuteClosed.xml b/data/Leland/E5E5-brassMuteClosed.xml deleted file mode 100644 index 2a2d97aece2..00000000000 --- a/data/Leland/E5E5-brassMuteClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5E5.xml b/data/Leland/E5E5.xml new file mode 100644 index 00000000000..6aacc46a8a9 --- /dev/null +++ b/data/Leland/E5E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5E6-brassMuteHalfClosed.xml b/data/Leland/E5E6-brassMuteHalfClosed.xml deleted file mode 100644 index 119326046bf..00000000000 --- a/data/Leland/E5E6-brassMuteHalfClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5E6.xml b/data/Leland/E5E6.xml new file mode 100644 index 00000000000..832c2b0a5c5 --- /dev/null +++ b/data/Leland/E5E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E5E7-brassMuteOpen.xml b/data/Leland/E5E7-brassMuteOpen.xml deleted file mode 100644 index b9954f5293a..00000000000 --- a/data/Leland/E5E7-brassMuteOpen.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E5E7.xml b/data/Leland/E5E7.xml new file mode 100644 index 00000000000..967297fdb4b --- /dev/null +++ b/data/Leland/E5E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E610-stringsDownBow.xml b/data/Leland/E610-stringsDownBow.xml deleted file mode 100644 index 6aa9b14d979..00000000000 --- a/data/Leland/E610-stringsDownBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E610.xml b/data/Leland/E610.xml new file mode 100644 index 00000000000..033d5523332 --- /dev/null +++ b/data/Leland/E610.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E611-stringsDownBowTurned.xml b/data/Leland/E611-stringsDownBowTurned.xml deleted file mode 100644 index 84e8a1162f8..00000000000 --- a/data/Leland/E611-stringsDownBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E611.xml b/data/Leland/E611.xml new file mode 100644 index 00000000000..ee73733f264 --- /dev/null +++ b/data/Leland/E611.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E612-stringsUpBow.xml b/data/Leland/E612-stringsUpBow.xml deleted file mode 100644 index aff59f13669..00000000000 --- a/data/Leland/E612-stringsUpBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E612.xml b/data/Leland/E612.xml new file mode 100644 index 00000000000..eb4b8491d37 --- /dev/null +++ b/data/Leland/E612.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E613-stringsUpBowTurned.xml b/data/Leland/E613-stringsUpBowTurned.xml deleted file mode 100644 index d05f225bdbc..00000000000 --- a/data/Leland/E613-stringsUpBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E613.xml b/data/Leland/E613.xml new file mode 100644 index 00000000000..e6ce8bd7191 --- /dev/null +++ b/data/Leland/E613.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E614-stringsHarmonic.xml b/data/Leland/E614-stringsHarmonic.xml deleted file mode 100644 index a3d06dd5f88..00000000000 --- a/data/Leland/E614-stringsHarmonic.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E614.xml b/data/Leland/E614.xml new file mode 100644 index 00000000000..cc19c9aa8cd --- /dev/null +++ b/data/Leland/E614.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E630-pluckedSnapPizzicatoBelow.xml b/data/Leland/E630-pluckedSnapPizzicatoBelow.xml deleted file mode 100644 index 14081882344..00000000000 --- a/data/Leland/E630-pluckedSnapPizzicatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E630.xml b/data/Leland/E630.xml new file mode 100644 index 00000000000..b9812a0c490 --- /dev/null +++ b/data/Leland/E630.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E631-pluckedSnapPizzicatoAbove.xml b/data/Leland/E631-pluckedSnapPizzicatoAbove.xml deleted file mode 100644 index cc192ab8f59..00000000000 --- a/data/Leland/E631-pluckedSnapPizzicatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E631.xml b/data/Leland/E631.xml new file mode 100644 index 00000000000..ec3682f0c60 --- /dev/null +++ b/data/Leland/E631.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E632-pluckedBuzzPizzicato.xml b/data/Leland/E632-pluckedBuzzPizzicato.xml deleted file mode 100644 index 9278b65e2d2..00000000000 --- a/data/Leland/E632-pluckedBuzzPizzicato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E632.xml b/data/Leland/E632.xml new file mode 100644 index 00000000000..df268640f88 --- /dev/null +++ b/data/Leland/E632.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E650-keyboardPedalPed.xml b/data/Leland/E650-keyboardPedalPed.xml deleted file mode 100644 index ce58ce79ceb..00000000000 --- a/data/Leland/E650-keyboardPedalPed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E650.xml b/data/Leland/E650.xml new file mode 100644 index 00000000000..8d35b286b52 --- /dev/null +++ b/data/Leland/E650.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E651-keyboardPedalP.xml b/data/Leland/E651-keyboardPedalP.xml deleted file mode 100644 index 15fe9251f2c..00000000000 --- a/data/Leland/E651-keyboardPedalP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E651.xml b/data/Leland/E651.xml new file mode 100644 index 00000000000..55d7a681959 --- /dev/null +++ b/data/Leland/E651.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E655-keyboardPedalUp.xml b/data/Leland/E655-keyboardPedalUp.xml deleted file mode 100644 index c0dd9905443..00000000000 --- a/data/Leland/E655-keyboardPedalUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E655.xml b/data/Leland/E655.xml new file mode 100644 index 00000000000..13bafb34637 --- /dev/null +++ b/data/Leland/E655.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E880-tuplet0.xml b/data/Leland/E880-tuplet0.xml deleted file mode 100644 index 88d10cadfcd..00000000000 --- a/data/Leland/E880-tuplet0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E880.xml b/data/Leland/E880.xml new file mode 100644 index 00000000000..1480762eaca --- /dev/null +++ b/data/Leland/E880.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E881-tuplet1.xml b/data/Leland/E881-tuplet1.xml deleted file mode 100644 index 1f3843008da..00000000000 --- a/data/Leland/E881-tuplet1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E881.xml b/data/Leland/E881.xml new file mode 100644 index 00000000000..00c4d80268b --- /dev/null +++ b/data/Leland/E881.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E882-tuplet2.xml b/data/Leland/E882-tuplet2.xml deleted file mode 100644 index 37d43ccbb37..00000000000 --- a/data/Leland/E882-tuplet2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E882.xml b/data/Leland/E882.xml new file mode 100644 index 00000000000..ae526a89e77 --- /dev/null +++ b/data/Leland/E882.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E883-tuplet3.xml b/data/Leland/E883-tuplet3.xml deleted file mode 100644 index 2851b612cdb..00000000000 --- a/data/Leland/E883-tuplet3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E883.xml b/data/Leland/E883.xml new file mode 100644 index 00000000000..a474291b38b --- /dev/null +++ b/data/Leland/E883.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E884-tuplet4.xml b/data/Leland/E884-tuplet4.xml deleted file mode 100644 index 350a42ada23..00000000000 --- a/data/Leland/E884-tuplet4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E884.xml b/data/Leland/E884.xml new file mode 100644 index 00000000000..cf0ee948767 --- /dev/null +++ b/data/Leland/E884.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E885-tuplet5.xml b/data/Leland/E885-tuplet5.xml deleted file mode 100644 index 65808b3d674..00000000000 --- a/data/Leland/E885-tuplet5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E885.xml b/data/Leland/E885.xml new file mode 100644 index 00000000000..71766256291 --- /dev/null +++ b/data/Leland/E885.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E886-tuplet6.xml b/data/Leland/E886-tuplet6.xml deleted file mode 100644 index 6b45ebdab55..00000000000 --- a/data/Leland/E886-tuplet6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E886.xml b/data/Leland/E886.xml new file mode 100644 index 00000000000..17a85934502 --- /dev/null +++ b/data/Leland/E886.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E887-tuplet7.xml b/data/Leland/E887-tuplet7.xml deleted file mode 100644 index 33d786a1fa7..00000000000 --- a/data/Leland/E887-tuplet7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E887.xml b/data/Leland/E887.xml new file mode 100644 index 00000000000..c547a89c945 --- /dev/null +++ b/data/Leland/E887.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E888-tuplet8.xml b/data/Leland/E888-tuplet8.xml deleted file mode 100644 index b7b57a5d699..00000000000 --- a/data/Leland/E888-tuplet8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E888.xml b/data/Leland/E888.xml new file mode 100644 index 00000000000..513f5744103 --- /dev/null +++ b/data/Leland/E888.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E889-tuplet9.xml b/data/Leland/E889-tuplet9.xml deleted file mode 100644 index 05a256f8334..00000000000 --- a/data/Leland/E889-tuplet9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E889.xml b/data/Leland/E889.xml new file mode 100644 index 00000000000..a1f54457cd5 --- /dev/null +++ b/data/Leland/E889.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E88A-tupletColon.xml b/data/Leland/E88A-tupletColon.xml deleted file mode 100644 index 58c5644d128..00000000000 --- a/data/Leland/E88A-tupletColon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E88A.xml b/data/Leland/E88A.xml new file mode 100644 index 00000000000..f711208dec4 --- /dev/null +++ b/data/Leland/E88A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E93C-mensuralNoteheadMinimaWhite.xml b/data/Leland/E93C-mensuralNoteheadMinimaWhite.xml deleted file mode 100644 index baca852c2a4..00000000000 --- a/data/Leland/E93C-mensuralNoteheadMinimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E93C.xml b/data/Leland/E93C.xml new file mode 100644 index 00000000000..d3e4be52f4c --- /dev/null +++ b/data/Leland/E93C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/E93D-mensuralNoteheadSemiminimaWhite.xml b/data/Leland/E93D-mensuralNoteheadSemiminimaWhite.xml deleted file mode 100644 index fd0d3569570..00000000000 --- a/data/Leland/E93D-mensuralNoteheadSemiminimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/E93D.xml b/data/Leland/E93D.xml new file mode 100644 index 00000000000..b542103f0f2 --- /dev/null +++ b/data/Leland/E93D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/EAA4-wiggleTrill.xml b/data/Leland/EAA4-wiggleTrill.xml deleted file mode 100644 index d4a0fbd59cb..00000000000 --- a/data/Leland/EAA4-wiggleTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/EAA4.xml b/data/Leland/EAA4.xml new file mode 100644 index 00000000000..c76376b0916 --- /dev/null +++ b/data/Leland/EAA4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/EAA9-wiggleArpeggiatoUp.xml b/data/Leland/EAA9-wiggleArpeggiatoUp.xml deleted file mode 100644 index da617d667b3..00000000000 --- a/data/Leland/EAA9-wiggleArpeggiatoUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/EAA9.xml b/data/Leland/EAA9.xml new file mode 100644 index 00000000000..f1bbb04b33a --- /dev/null +++ b/data/Leland/EAA9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/EAAA-wiggleArpeggiatoDown.xml b/data/Leland/EAAA-wiggleArpeggiatoDown.xml deleted file mode 100644 index 84dc1a206ea..00000000000 --- a/data/Leland/EAAA-wiggleArpeggiatoDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/EAAA.xml b/data/Leland/EAAA.xml new file mode 100644 index 00000000000..fb104294b4d --- /dev/null +++ b/data/Leland/EAAA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/EAAD-wiggleArpeggiatoUpArrow.xml b/data/Leland/EAAD-wiggleArpeggiatoUpArrow.xml deleted file mode 100644 index 6d346bf879d..00000000000 --- a/data/Leland/EAAD-wiggleArpeggiatoUpArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/EAAD.xml b/data/Leland/EAAD.xml new file mode 100644 index 00000000000..d60210a2c76 --- /dev/null +++ b/data/Leland/EAAD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Leland/EAAE-wiggleArpeggiatoDownArrow.xml b/data/Leland/EAAE-wiggleArpeggiatoDownArrow.xml deleted file mode 100644 index 74ab36afe0d..00000000000 --- a/data/Leland/EAAE-wiggleArpeggiatoDownArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Leland/EAAE.xml b/data/Leland/EAAE.xml new file mode 100644 index 00000000000..92772109a15 --- /dev/null +++ b/data/Leland/EAAE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma.xml b/data/Petaluma.xml index 7b3fc62ca95..13b5a02d3c8 100644 --- a/data/Petaluma.xml +++ b/data/Petaluma.xml @@ -1,599 +1,601 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/Petaluma/E000-brace.xml b/data/Petaluma/E000-brace.xml deleted file mode 100644 index 2b645f3c57b..00000000000 --- a/data/Petaluma/E000-brace.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E000.xml b/data/Petaluma/E000.xml new file mode 100644 index 00000000000..7a993cdf518 --- /dev/null +++ b/data/Petaluma/E000.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E003-bracketTop.xml b/data/Petaluma/E003-bracketTop.xml deleted file mode 100644 index 64453cc3c6b..00000000000 --- a/data/Petaluma/E003-bracketTop.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E003.xml b/data/Petaluma/E003.xml new file mode 100644 index 00000000000..6ac8f2d1c65 --- /dev/null +++ b/data/Petaluma/E003.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E004-bracketBottom.xml b/data/Petaluma/E004-bracketBottom.xml deleted file mode 100644 index 4571c512ef0..00000000000 --- a/data/Petaluma/E004-bracketBottom.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E004.xml b/data/Petaluma/E004.xml new file mode 100644 index 00000000000..b8ea4ab3d2d --- /dev/null +++ b/data/Petaluma/E004.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E043-repeatDots.xml b/data/Petaluma/E043-repeatDots.xml deleted file mode 100644 index ae7b3bbf2dc..00000000000 --- a/data/Petaluma/E043-repeatDots.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E043.xml b/data/Petaluma/E043.xml new file mode 100644 index 00000000000..efacfe5209e --- /dev/null +++ b/data/Petaluma/E043.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E044-repeatDot.xml b/data/Petaluma/E044-repeatDot.xml deleted file mode 100644 index 31047898e93..00000000000 --- a/data/Petaluma/E044-repeatDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E044.xml b/data/Petaluma/E044.xml new file mode 100644 index 00000000000..d9233b79db2 --- /dev/null +++ b/data/Petaluma/E044.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E045-dalSegno.xml b/data/Petaluma/E045-dalSegno.xml deleted file mode 100644 index 513a817fe51..00000000000 --- a/data/Petaluma/E045-dalSegno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E045.xml b/data/Petaluma/E045.xml new file mode 100644 index 00000000000..693dcbd30a8 --- /dev/null +++ b/data/Petaluma/E045.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E046-daCapo.xml b/data/Petaluma/E046-daCapo.xml deleted file mode 100644 index a1b39dc6fbb..00000000000 --- a/data/Petaluma/E046-daCapo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E046.xml b/data/Petaluma/E046.xml new file mode 100644 index 00000000000..c312f786b0e --- /dev/null +++ b/data/Petaluma/E046.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E047-segno.xml b/data/Petaluma/E047-segno.xml deleted file mode 100644 index 1ac07e85b3d..00000000000 --- a/data/Petaluma/E047-segno.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E047.xml b/data/Petaluma/E047.xml new file mode 100644 index 00000000000..a16b54305fa --- /dev/null +++ b/data/Petaluma/E047.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E048-coda.xml b/data/Petaluma/E048-coda.xml deleted file mode 100644 index 95d9d0f4057..00000000000 --- a/data/Petaluma/E048-coda.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E048.xml b/data/Petaluma/E048.xml new file mode 100644 index 00000000000..908dc599283 --- /dev/null +++ b/data/Petaluma/E048.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E049-codaSquare.xml b/data/Petaluma/E049-codaSquare.xml deleted file mode 100644 index f9e1603bd20..00000000000 --- a/data/Petaluma/E049-codaSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E049.xml b/data/Petaluma/E049.xml new file mode 100644 index 00000000000..10aeaa5fb2f --- /dev/null +++ b/data/Petaluma/E049.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E04B-segnoSerpent2.xml b/data/Petaluma/E04B-segnoSerpent2.xml deleted file mode 100644 index 51f49e3db57..00000000000 --- a/data/Petaluma/E04B-segnoSerpent2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E04B.xml b/data/Petaluma/E04B.xml new file mode 100644 index 00000000000..ca0e25396f7 --- /dev/null +++ b/data/Petaluma/E04B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E050-gClef.xml b/data/Petaluma/E050-gClef.xml deleted file mode 100644 index eda04aecfd9..00000000000 --- a/data/Petaluma/E050-gClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E050.xml b/data/Petaluma/E050.xml new file mode 100644 index 00000000000..0f2ae283504 --- /dev/null +++ b/data/Petaluma/E050.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E051-gClef15mb.xml b/data/Petaluma/E051-gClef15mb.xml deleted file mode 100644 index 54de8392f63..00000000000 --- a/data/Petaluma/E051-gClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E051.xml b/data/Petaluma/E051.xml new file mode 100644 index 00000000000..69913faab49 --- /dev/null +++ b/data/Petaluma/E051.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E052-gClef8vb.xml b/data/Petaluma/E052-gClef8vb.xml deleted file mode 100644 index 6d04deb54cb..00000000000 --- a/data/Petaluma/E052-gClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E052.xml b/data/Petaluma/E052.xml new file mode 100644 index 00000000000..259bb4730ad --- /dev/null +++ b/data/Petaluma/E052.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E053-gClef8va.xml b/data/Petaluma/E053-gClef8va.xml deleted file mode 100644 index 0147a76dde2..00000000000 --- a/data/Petaluma/E053-gClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E053.xml b/data/Petaluma/E053.xml new file mode 100644 index 00000000000..905691a82e5 --- /dev/null +++ b/data/Petaluma/E053.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E054-gClef15ma.xml b/data/Petaluma/E054-gClef15ma.xml deleted file mode 100644 index 65127d62e3e..00000000000 --- a/data/Petaluma/E054-gClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E054.xml b/data/Petaluma/E054.xml new file mode 100644 index 00000000000..fe948d0bb75 --- /dev/null +++ b/data/Petaluma/E054.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E055-gClef8vbOld.xml b/data/Petaluma/E055-gClef8vbOld.xml deleted file mode 100644 index 5de589ec595..00000000000 --- a/data/Petaluma/E055-gClef8vbOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E055.xml b/data/Petaluma/E055.xml new file mode 100644 index 00000000000..408381cbece --- /dev/null +++ b/data/Petaluma/E055.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E056-gClef8vbCClef.xml b/data/Petaluma/E056-gClef8vbCClef.xml deleted file mode 100644 index 0c9b235390f..00000000000 --- a/data/Petaluma/E056-gClef8vbCClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E056.xml b/data/Petaluma/E056.xml new file mode 100644 index 00000000000..3c5be8974ea --- /dev/null +++ b/data/Petaluma/E056.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E05C-cClef.xml b/data/Petaluma/E05C-cClef.xml deleted file mode 100644 index ce512e1f29a..00000000000 --- a/data/Petaluma/E05C-cClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E05C.xml b/data/Petaluma/E05C.xml new file mode 100644 index 00000000000..89782880a50 --- /dev/null +++ b/data/Petaluma/E05C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E05D-cClef8vb.xml b/data/Petaluma/E05D-cClef8vb.xml deleted file mode 100644 index 7197852432f..00000000000 --- a/data/Petaluma/E05D-cClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E05D.xml b/data/Petaluma/E05D.xml new file mode 100644 index 00000000000..7b2c21d6a1a --- /dev/null +++ b/data/Petaluma/E05D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E062-fClef.xml b/data/Petaluma/E062-fClef.xml deleted file mode 100644 index c0c5c269ef7..00000000000 --- a/data/Petaluma/E062-fClef.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E062.xml b/data/Petaluma/E062.xml new file mode 100644 index 00000000000..322838a3297 --- /dev/null +++ b/data/Petaluma/E062.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E063-fClef15mb.xml b/data/Petaluma/E063-fClef15mb.xml deleted file mode 100644 index 89d6e3c0b20..00000000000 --- a/data/Petaluma/E063-fClef15mb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E063.xml b/data/Petaluma/E063.xml new file mode 100644 index 00000000000..2443e226e7d --- /dev/null +++ b/data/Petaluma/E063.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E064-fClef8vb.xml b/data/Petaluma/E064-fClef8vb.xml deleted file mode 100644 index cab325b0da2..00000000000 --- a/data/Petaluma/E064-fClef8vb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E064.xml b/data/Petaluma/E064.xml new file mode 100644 index 00000000000..c19dc6a5e74 --- /dev/null +++ b/data/Petaluma/E064.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E065-fClef8va.xml b/data/Petaluma/E065-fClef8va.xml deleted file mode 100644 index 9095568b9da..00000000000 --- a/data/Petaluma/E065-fClef8va.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E065.xml b/data/Petaluma/E065.xml new file mode 100644 index 00000000000..f11745a3fc2 --- /dev/null +++ b/data/Petaluma/E065.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E066-fClef15ma.xml b/data/Petaluma/E066-fClef15ma.xml deleted file mode 100644 index 52e91e1790f..00000000000 --- a/data/Petaluma/E066-fClef15ma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E066.xml b/data/Petaluma/E066.xml new file mode 100644 index 00000000000..a2dc3cf0a8d --- /dev/null +++ b/data/Petaluma/E066.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E069-unpitchedPercussionClef1.xml b/data/Petaluma/E069-unpitchedPercussionClef1.xml deleted file mode 100644 index 9b675dee4da..00000000000 --- a/data/Petaluma/E069-unpitchedPercussionClef1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E069.xml b/data/Petaluma/E069.xml new file mode 100644 index 00000000000..ab983913851 --- /dev/null +++ b/data/Petaluma/E069.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E06A-unpitchedPercussionClef2.xml b/data/Petaluma/E06A-unpitchedPercussionClef2.xml deleted file mode 100644 index 9fdcdfd8712..00000000000 --- a/data/Petaluma/E06A-unpitchedPercussionClef2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E06A.xml b/data/Petaluma/E06A.xml new file mode 100644 index 00000000000..0cb9f402282 --- /dev/null +++ b/data/Petaluma/E06A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E06D.xml b/data/Petaluma/E06D.xml new file mode 100644 index 00000000000..468eab6378a --- /dev/null +++ b/data/Petaluma/E06D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E06E.xml b/data/Petaluma/E06E.xml new file mode 100644 index 00000000000..563e126d7a1 --- /dev/null +++ b/data/Petaluma/E06E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E073-gClefReversed.xml b/data/Petaluma/E073-gClefReversed.xml deleted file mode 100644 index b042b8f37c6..00000000000 --- a/data/Petaluma/E073-gClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E073.xml b/data/Petaluma/E073.xml new file mode 100644 index 00000000000..f34359f8b04 --- /dev/null +++ b/data/Petaluma/E073.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E074-gClefTurned.xml b/data/Petaluma/E074-gClefTurned.xml deleted file mode 100644 index 1baccba0e96..00000000000 --- a/data/Petaluma/E074-gClefTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E074.xml b/data/Petaluma/E074.xml new file mode 100644 index 00000000000..7593b6e6897 --- /dev/null +++ b/data/Petaluma/E074.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E075-cClefReversed.xml b/data/Petaluma/E075-cClefReversed.xml deleted file mode 100644 index 76379820359..00000000000 --- a/data/Petaluma/E075-cClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E075.xml b/data/Petaluma/E075.xml new file mode 100644 index 00000000000..a98b4cc16f3 --- /dev/null +++ b/data/Petaluma/E075.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E076-fClefReversed.xml b/data/Petaluma/E076-fClefReversed.xml deleted file mode 100644 index 5157d92bf82..00000000000 --- a/data/Petaluma/E076-fClefReversed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E076.xml b/data/Petaluma/E076.xml new file mode 100644 index 00000000000..4d3f743cebd --- /dev/null +++ b/data/Petaluma/E076.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E077-fClefTurned.xml b/data/Petaluma/E077-fClefTurned.xml deleted file mode 100644 index dde5bcee56b..00000000000 --- a/data/Petaluma/E077-fClefTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E077.xml b/data/Petaluma/E077.xml new file mode 100644 index 00000000000..305a61a98aa --- /dev/null +++ b/data/Petaluma/E077.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E080-timeSig0.xml b/data/Petaluma/E080-timeSig0.xml deleted file mode 100644 index 2d6b61b2346..00000000000 --- a/data/Petaluma/E080-timeSig0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E080.xml b/data/Petaluma/E080.xml new file mode 100644 index 00000000000..1c4d952c84e --- /dev/null +++ b/data/Petaluma/E080.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E081-timeSig1.xml b/data/Petaluma/E081-timeSig1.xml deleted file mode 100644 index e7c707535c8..00000000000 --- a/data/Petaluma/E081-timeSig1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E081.xml b/data/Petaluma/E081.xml new file mode 100644 index 00000000000..29f5d134288 --- /dev/null +++ b/data/Petaluma/E081.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E082-timeSig2.xml b/data/Petaluma/E082-timeSig2.xml deleted file mode 100644 index b8e73c8e02f..00000000000 --- a/data/Petaluma/E082-timeSig2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E082.xml b/data/Petaluma/E082.xml new file mode 100644 index 00000000000..013beeae96e --- /dev/null +++ b/data/Petaluma/E082.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E083-timeSig3.xml b/data/Petaluma/E083-timeSig3.xml deleted file mode 100644 index 80cbcd2ad50..00000000000 --- a/data/Petaluma/E083-timeSig3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E083.xml b/data/Petaluma/E083.xml new file mode 100644 index 00000000000..ed11ad429ec --- /dev/null +++ b/data/Petaluma/E083.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E084-timeSig4.xml b/data/Petaluma/E084-timeSig4.xml deleted file mode 100644 index 1eefc78826a..00000000000 --- a/data/Petaluma/E084-timeSig4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E084.xml b/data/Petaluma/E084.xml new file mode 100644 index 00000000000..d4f75f77404 --- /dev/null +++ b/data/Petaluma/E084.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E085-timeSig5.xml b/data/Petaluma/E085-timeSig5.xml deleted file mode 100644 index eae788bf7c2..00000000000 --- a/data/Petaluma/E085-timeSig5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E085.xml b/data/Petaluma/E085.xml new file mode 100644 index 00000000000..ad370c36d72 --- /dev/null +++ b/data/Petaluma/E085.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E086-timeSig6.xml b/data/Petaluma/E086-timeSig6.xml deleted file mode 100644 index 552509631ce..00000000000 --- a/data/Petaluma/E086-timeSig6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E086.xml b/data/Petaluma/E086.xml new file mode 100644 index 00000000000..d6533f1062f --- /dev/null +++ b/data/Petaluma/E086.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E087-timeSig7.xml b/data/Petaluma/E087-timeSig7.xml deleted file mode 100644 index 7b9c32d9a78..00000000000 --- a/data/Petaluma/E087-timeSig7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E087.xml b/data/Petaluma/E087.xml new file mode 100644 index 00000000000..613d932c686 --- /dev/null +++ b/data/Petaluma/E087.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E088-timeSig8.xml b/data/Petaluma/E088-timeSig8.xml deleted file mode 100644 index 24b53c80f83..00000000000 --- a/data/Petaluma/E088-timeSig8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E088.xml b/data/Petaluma/E088.xml new file mode 100644 index 00000000000..9edfb5f7132 --- /dev/null +++ b/data/Petaluma/E088.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E089-timeSig9.xml b/data/Petaluma/E089-timeSig9.xml deleted file mode 100644 index e693b775490..00000000000 --- a/data/Petaluma/E089-timeSig9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E089.xml b/data/Petaluma/E089.xml new file mode 100644 index 00000000000..c8d123a2f99 --- /dev/null +++ b/data/Petaluma/E089.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E08A-timeSigCommon.xml b/data/Petaluma/E08A-timeSigCommon.xml deleted file mode 100644 index 5fbbd8bf61d..00000000000 --- a/data/Petaluma/E08A-timeSigCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E08A.xml b/data/Petaluma/E08A.xml new file mode 100644 index 00000000000..c16a58146c3 --- /dev/null +++ b/data/Petaluma/E08A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E08B-timeSigCutCommon.xml b/data/Petaluma/E08B-timeSigCutCommon.xml deleted file mode 100644 index 16a3dd0e2a8..00000000000 --- a/data/Petaluma/E08B-timeSigCutCommon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E08B.xml b/data/Petaluma/E08B.xml new file mode 100644 index 00000000000..3f6bb3c91ea --- /dev/null +++ b/data/Petaluma/E08B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E08C-timeSigPlus.xml b/data/Petaluma/E08C-timeSigPlus.xml deleted file mode 100644 index b8c4b541a2a..00000000000 --- a/data/Petaluma/E08C-timeSigPlus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E08C.xml b/data/Petaluma/E08C.xml new file mode 100644 index 00000000000..e76e1d0ffe8 --- /dev/null +++ b/data/Petaluma/E08C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E08D-timeSigPlusSmall.xml b/data/Petaluma/E08D-timeSigPlusSmall.xml deleted file mode 100644 index fb800da7982..00000000000 --- a/data/Petaluma/E08D-timeSigPlusSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E08D.xml b/data/Petaluma/E08D.xml new file mode 100644 index 00000000000..bd190228dc1 --- /dev/null +++ b/data/Petaluma/E08D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E08E-timeSigFractionalSlash.xml b/data/Petaluma/E08E-timeSigFractionalSlash.xml deleted file mode 100644 index c206958d3f2..00000000000 --- a/data/Petaluma/E08E-timeSigFractionalSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E08E.xml b/data/Petaluma/E08E.xml new file mode 100644 index 00000000000..fb4492d463a --- /dev/null +++ b/data/Petaluma/E08E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E08F-timeSigEquals.xml b/data/Petaluma/E08F-timeSigEquals.xml deleted file mode 100644 index 09752f63592..00000000000 --- a/data/Petaluma/E08F-timeSigEquals.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E08F.xml b/data/Petaluma/E08F.xml new file mode 100644 index 00000000000..45ea9b3b94c --- /dev/null +++ b/data/Petaluma/E08F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E090-timeSigMinus.xml b/data/Petaluma/E090-timeSigMinus.xml deleted file mode 100644 index 0d4ca1f6acf..00000000000 --- a/data/Petaluma/E090-timeSigMinus.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E090.xml b/data/Petaluma/E090.xml new file mode 100644 index 00000000000..8cc494fb42d --- /dev/null +++ b/data/Petaluma/E090.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E091-timeSigMultiply.xml b/data/Petaluma/E091-timeSigMultiply.xml deleted file mode 100644 index 2f53c752a98..00000000000 --- a/data/Petaluma/E091-timeSigMultiply.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E091.xml b/data/Petaluma/E091.xml new file mode 100644 index 00000000000..080e5013d74 --- /dev/null +++ b/data/Petaluma/E091.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E092-timeSigParensLeftSmall.xml b/data/Petaluma/E092-timeSigParensLeftSmall.xml deleted file mode 100644 index ca2b1555af3..00000000000 --- a/data/Petaluma/E092-timeSigParensLeftSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E092.xml b/data/Petaluma/E092.xml new file mode 100644 index 00000000000..38292844435 --- /dev/null +++ b/data/Petaluma/E092.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E093-timeSigParensRightSmall.xml b/data/Petaluma/E093-timeSigParensRightSmall.xml deleted file mode 100644 index e1b8288c352..00000000000 --- a/data/Petaluma/E093-timeSigParensRightSmall.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E093.xml b/data/Petaluma/E093.xml new file mode 100644 index 00000000000..609e6e38ef8 --- /dev/null +++ b/data/Petaluma/E093.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E094-timeSigParensLeft.xml b/data/Petaluma/E094-timeSigParensLeft.xml deleted file mode 100644 index 09cc761c6b6..00000000000 --- a/data/Petaluma/E094-timeSigParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E094.xml b/data/Petaluma/E094.xml new file mode 100644 index 00000000000..09955a2f3fd --- /dev/null +++ b/data/Petaluma/E094.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E095-timeSigParensRight.xml b/data/Petaluma/E095-timeSigParensRight.xml deleted file mode 100644 index f85e020146c..00000000000 --- a/data/Petaluma/E095-timeSigParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E095.xml b/data/Petaluma/E095.xml new file mode 100644 index 00000000000..98491eb9fb1 --- /dev/null +++ b/data/Petaluma/E095.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0A0-noteheadDoubleWhole.xml b/data/Petaluma/E0A0-noteheadDoubleWhole.xml deleted file mode 100644 index 6ed5186a244..00000000000 --- a/data/Petaluma/E0A0-noteheadDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0A0.xml b/data/Petaluma/E0A0.xml new file mode 100644 index 00000000000..137f5544ccf --- /dev/null +++ b/data/Petaluma/E0A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0A1-noteheadDoubleWholeSquare.xml b/data/Petaluma/E0A1-noteheadDoubleWholeSquare.xml deleted file mode 100644 index 025657dd296..00000000000 --- a/data/Petaluma/E0A1-noteheadDoubleWholeSquare.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0A1.xml b/data/Petaluma/E0A1.xml new file mode 100644 index 00000000000..e471b915e3f --- /dev/null +++ b/data/Petaluma/E0A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0A2-noteheadWhole.xml b/data/Petaluma/E0A2-noteheadWhole.xml deleted file mode 100644 index 568ec68a9ba..00000000000 --- a/data/Petaluma/E0A2-noteheadWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0A2.xml b/data/Petaluma/E0A2.xml new file mode 100644 index 00000000000..0312794326b --- /dev/null +++ b/data/Petaluma/E0A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0A3-noteheadHalf.xml b/data/Petaluma/E0A3-noteheadHalf.xml deleted file mode 100644 index 30a0a9f5f3c..00000000000 --- a/data/Petaluma/E0A3-noteheadHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0A3.xml b/data/Petaluma/E0A3.xml new file mode 100644 index 00000000000..ad358995733 --- /dev/null +++ b/data/Petaluma/E0A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0A4-noteheadBlack.xml b/data/Petaluma/E0A4-noteheadBlack.xml deleted file mode 100644 index cd3947b2a01..00000000000 --- a/data/Petaluma/E0A4-noteheadBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0A4.xml b/data/Petaluma/E0A4.xml new file mode 100644 index 00000000000..68e34a709a0 --- /dev/null +++ b/data/Petaluma/E0A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0A5-noteheadNull.xml b/data/Petaluma/E0A5-noteheadNull.xml deleted file mode 100644 index 1445fb5f59a..00000000000 --- a/data/Petaluma/E0A5-noteheadNull.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0A5.xml b/data/Petaluma/E0A5.xml new file mode 100644 index 00000000000..d4eec1c1f60 --- /dev/null +++ b/data/Petaluma/E0A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0A9-noteheadXBlack.xml b/data/Petaluma/E0A9-noteheadXBlack.xml deleted file mode 100644 index e2cfb5f0cbc..00000000000 --- a/data/Petaluma/E0A9-noteheadXBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0A9.xml b/data/Petaluma/E0A9.xml new file mode 100644 index 00000000000..7fd677db4bc --- /dev/null +++ b/data/Petaluma/E0A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0AF-noteheadPlusBlack.xml b/data/Petaluma/E0AF-noteheadPlusBlack.xml deleted file mode 100644 index ad8e1596899..00000000000 --- a/data/Petaluma/E0AF-noteheadPlusBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0AF.xml b/data/Petaluma/E0AF.xml new file mode 100644 index 00000000000..698e7cbd5dd --- /dev/null +++ b/data/Petaluma/E0AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0B5-noteheadWholeWithX.xml b/data/Petaluma/E0B5-noteheadWholeWithX.xml deleted file mode 100644 index 7c099533226..00000000000 --- a/data/Petaluma/E0B5-noteheadWholeWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0B5.xml b/data/Petaluma/E0B5.xml new file mode 100644 index 00000000000..76611c46072 --- /dev/null +++ b/data/Petaluma/E0B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0B6-noteheadHalfWithX.xml b/data/Petaluma/E0B6-noteheadHalfWithX.xml deleted file mode 100644 index 77b9ce3bb08..00000000000 --- a/data/Petaluma/E0B6-noteheadHalfWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0B6.xml b/data/Petaluma/E0B6.xml new file mode 100644 index 00000000000..1dc77f61e29 --- /dev/null +++ b/data/Petaluma/E0B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0B7-noteheadVoidWithX.xml b/data/Petaluma/E0B7-noteheadVoidWithX.xml deleted file mode 100644 index 1dc18f25c4b..00000000000 --- a/data/Petaluma/E0B7-noteheadVoidWithX.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0B7.xml b/data/Petaluma/E0B7.xml new file mode 100644 index 00000000000..ff64a3f78be --- /dev/null +++ b/data/Petaluma/E0B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0D9-noteheadDiamondHalf.xml b/data/Petaluma/E0D9-noteheadDiamondHalf.xml deleted file mode 100644 index 92c616227ee..00000000000 --- a/data/Petaluma/E0D9-noteheadDiamondHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0D9.xml b/data/Petaluma/E0D9.xml new file mode 100644 index 00000000000..28267874a43 --- /dev/null +++ b/data/Petaluma/E0D9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0DA-noteheadDiamondHalfWide.xml b/data/Petaluma/E0DA-noteheadDiamondHalfWide.xml deleted file mode 100644 index 689067642b0..00000000000 --- a/data/Petaluma/E0DA-noteheadDiamondHalfWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0DA.xml b/data/Petaluma/E0DA.xml new file mode 100644 index 00000000000..3808ca73ee5 --- /dev/null +++ b/data/Petaluma/E0DA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0DB-noteheadDiamondBlack.xml b/data/Petaluma/E0DB-noteheadDiamondBlack.xml deleted file mode 100644 index 032217cb7b1..00000000000 --- a/data/Petaluma/E0DB-noteheadDiamondBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0DB.xml b/data/Petaluma/E0DB.xml new file mode 100644 index 00000000000..b1d67b026b8 --- /dev/null +++ b/data/Petaluma/E0DB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0DC-noteheadDiamondBlackWide.xml b/data/Petaluma/E0DC-noteheadDiamondBlackWide.xml deleted file mode 100644 index 13acdfb1e54..00000000000 --- a/data/Petaluma/E0DC-noteheadDiamondBlackWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0DC.xml b/data/Petaluma/E0DC.xml new file mode 100644 index 00000000000..66c41fe294f --- /dev/null +++ b/data/Petaluma/E0DC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0DD-noteheadDiamondWhite.xml b/data/Petaluma/E0DD-noteheadDiamondWhite.xml deleted file mode 100644 index 5e414f70825..00000000000 --- a/data/Petaluma/E0DD-noteheadDiamondWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0DD.xml b/data/Petaluma/E0DD.xml new file mode 100644 index 00000000000..560c82c0c65 --- /dev/null +++ b/data/Petaluma/E0DD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0DE-noteheadDiamondWhiteWide.xml b/data/Petaluma/E0DE-noteheadDiamondWhiteWide.xml deleted file mode 100644 index f66b4bd4fc0..00000000000 --- a/data/Petaluma/E0DE-noteheadDiamondWhiteWide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0DE.xml b/data/Petaluma/E0DE.xml new file mode 100644 index 00000000000..845ae53e899 --- /dev/null +++ b/data/Petaluma/E0DE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0F5-noteheadParenthesisLeft.xml b/data/Petaluma/E0F5-noteheadParenthesisLeft.xml deleted file mode 100644 index d51b5bfc5c5..00000000000 --- a/data/Petaluma/E0F5-noteheadParenthesisLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0F5.xml b/data/Petaluma/E0F5.xml new file mode 100644 index 00000000000..66207be3985 --- /dev/null +++ b/data/Petaluma/E0F5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0F6-noteheadParenthesisRight.xml b/data/Petaluma/E0F6-noteheadParenthesisRight.xml deleted file mode 100644 index cbdeff19954..00000000000 --- a/data/Petaluma/E0F6-noteheadParenthesisRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0F6.xml b/data/Petaluma/E0F6.xml new file mode 100644 index 00000000000..4633884590e --- /dev/null +++ b/data/Petaluma/E0F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E0FA-noteheadWholeFilled.xml b/data/Petaluma/E0FA-noteheadWholeFilled.xml deleted file mode 100644 index 7f99079590f..00000000000 --- a/data/Petaluma/E0FA-noteheadWholeFilled.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E0FA.xml b/data/Petaluma/E0FA.xml new file mode 100644 index 00000000000..0c75bdbecd1 --- /dev/null +++ b/data/Petaluma/E0FA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E101-noteheadSlashHorizontalEnds.xml b/data/Petaluma/E101-noteheadSlashHorizontalEnds.xml deleted file mode 100644 index bd443003b6b..00000000000 --- a/data/Petaluma/E101-noteheadSlashHorizontalEnds.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E101.xml b/data/Petaluma/E101.xml new file mode 100644 index 00000000000..6b0fa0a884f --- /dev/null +++ b/data/Petaluma/E101.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E102-noteheadSlashWhiteWhole.xml b/data/Petaluma/E102-noteheadSlashWhiteWhole.xml deleted file mode 100644 index c2e7b3a4242..00000000000 --- a/data/Petaluma/E102-noteheadSlashWhiteWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E102.xml b/data/Petaluma/E102.xml new file mode 100644 index 00000000000..b9bb9977af8 --- /dev/null +++ b/data/Petaluma/E102.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E103-noteheadSlashWhiteHalf.xml b/data/Petaluma/E103-noteheadSlashWhiteHalf.xml deleted file mode 100644 index 6ab22cadb44..00000000000 --- a/data/Petaluma/E103-noteheadSlashWhiteHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E103.xml b/data/Petaluma/E103.xml new file mode 100644 index 00000000000..dbeccf854d3 --- /dev/null +++ b/data/Petaluma/E103.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E220-tremolo1.xml b/data/Petaluma/E220-tremolo1.xml deleted file mode 100644 index 1d8029dc8e3..00000000000 --- a/data/Petaluma/E220-tremolo1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E220.xml b/data/Petaluma/E220.xml new file mode 100644 index 00000000000..da11b267dcf --- /dev/null +++ b/data/Petaluma/E220.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E221-tremolo2.xml b/data/Petaluma/E221-tremolo2.xml deleted file mode 100644 index 2e0efe7dbc2..00000000000 --- a/data/Petaluma/E221-tremolo2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E221.xml b/data/Petaluma/E221.xml new file mode 100644 index 00000000000..036d685acd8 --- /dev/null +++ b/data/Petaluma/E221.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E222-tremolo3.xml b/data/Petaluma/E222-tremolo3.xml deleted file mode 100644 index 47d1bcd7416..00000000000 --- a/data/Petaluma/E222-tremolo3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E222.xml b/data/Petaluma/E222.xml new file mode 100644 index 00000000000..152ae79238b --- /dev/null +++ b/data/Petaluma/E222.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E223-tremolo4.xml b/data/Petaluma/E223-tremolo4.xml deleted file mode 100644 index f9a888d45fc..00000000000 --- a/data/Petaluma/E223-tremolo4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E223.xml b/data/Petaluma/E223.xml new file mode 100644 index 00000000000..f78e638b51a --- /dev/null +++ b/data/Petaluma/E223.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E224-tremolo5.xml b/data/Petaluma/E224-tremolo5.xml deleted file mode 100644 index 984c32272da..00000000000 --- a/data/Petaluma/E224-tremolo5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E224.xml b/data/Petaluma/E224.xml new file mode 100644 index 00000000000..e26e2d07878 --- /dev/null +++ b/data/Petaluma/E224.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E22A-buzzRoll.xml b/data/Petaluma/E22A-buzzRoll.xml deleted file mode 100644 index 9fe80d46716..00000000000 --- a/data/Petaluma/E22A-buzzRoll.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E22A.xml b/data/Petaluma/E22A.xml new file mode 100644 index 00000000000..8e79c70c7bd --- /dev/null +++ b/data/Petaluma/E22A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E240-flag8thUp.xml b/data/Petaluma/E240-flag8thUp.xml deleted file mode 100644 index d115b0c9110..00000000000 --- a/data/Petaluma/E240-flag8thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E240.xml b/data/Petaluma/E240.xml new file mode 100644 index 00000000000..f56fca5791d --- /dev/null +++ b/data/Petaluma/E240.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E241-flag8thDown.xml b/data/Petaluma/E241-flag8thDown.xml deleted file mode 100644 index 616cbfc5876..00000000000 --- a/data/Petaluma/E241-flag8thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E241.xml b/data/Petaluma/E241.xml new file mode 100644 index 00000000000..b791e6752a2 --- /dev/null +++ b/data/Petaluma/E241.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E242-flag16thUp.xml b/data/Petaluma/E242-flag16thUp.xml deleted file mode 100644 index 9953fa570ca..00000000000 --- a/data/Petaluma/E242-flag16thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E242.xml b/data/Petaluma/E242.xml new file mode 100644 index 00000000000..66c2ce9fd1b --- /dev/null +++ b/data/Petaluma/E242.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E243-flag16thDown.xml b/data/Petaluma/E243-flag16thDown.xml deleted file mode 100644 index da91af23c13..00000000000 --- a/data/Petaluma/E243-flag16thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E243.xml b/data/Petaluma/E243.xml new file mode 100644 index 00000000000..abac4516c61 --- /dev/null +++ b/data/Petaluma/E243.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E244-flag32ndUp.xml b/data/Petaluma/E244-flag32ndUp.xml deleted file mode 100644 index 86ab259a7b2..00000000000 --- a/data/Petaluma/E244-flag32ndUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E244.xml b/data/Petaluma/E244.xml new file mode 100644 index 00000000000..778a6196aab --- /dev/null +++ b/data/Petaluma/E244.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E245-flag32ndDown.xml b/data/Petaluma/E245-flag32ndDown.xml deleted file mode 100644 index 930af8a76ce..00000000000 --- a/data/Petaluma/E245-flag32ndDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E245.xml b/data/Petaluma/E245.xml new file mode 100644 index 00000000000..3b9ab581080 --- /dev/null +++ b/data/Petaluma/E245.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E246-flag64thUp.xml b/data/Petaluma/E246-flag64thUp.xml deleted file mode 100644 index dd040543306..00000000000 --- a/data/Petaluma/E246-flag64thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E246.xml b/data/Petaluma/E246.xml new file mode 100644 index 00000000000..5d51be61171 --- /dev/null +++ b/data/Petaluma/E246.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E247-flag64thDown.xml b/data/Petaluma/E247-flag64thDown.xml deleted file mode 100644 index 78352a0f80d..00000000000 --- a/data/Petaluma/E247-flag64thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E247.xml b/data/Petaluma/E247.xml new file mode 100644 index 00000000000..5443bff1a60 --- /dev/null +++ b/data/Petaluma/E247.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E248-flag128thUp.xml b/data/Petaluma/E248-flag128thUp.xml deleted file mode 100644 index a1c621babf6..00000000000 --- a/data/Petaluma/E248-flag128thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E248.xml b/data/Petaluma/E248.xml new file mode 100644 index 00000000000..1caa8a73376 --- /dev/null +++ b/data/Petaluma/E248.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E249-flag128thDown.xml b/data/Petaluma/E249-flag128thDown.xml deleted file mode 100644 index 968356dceff..00000000000 --- a/data/Petaluma/E249-flag128thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E249.xml b/data/Petaluma/E249.xml new file mode 100644 index 00000000000..01bdd8ce1ae --- /dev/null +++ b/data/Petaluma/E249.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E24A-flag256thUp.xml b/data/Petaluma/E24A-flag256thUp.xml deleted file mode 100644 index a53a7cc6273..00000000000 --- a/data/Petaluma/E24A-flag256thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E24A.xml b/data/Petaluma/E24A.xml new file mode 100644 index 00000000000..2257550d0a7 --- /dev/null +++ b/data/Petaluma/E24A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E24B-flag256thDown.xml b/data/Petaluma/E24B-flag256thDown.xml deleted file mode 100644 index 801935e08d7..00000000000 --- a/data/Petaluma/E24B-flag256thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E24B.xml b/data/Petaluma/E24B.xml new file mode 100644 index 00000000000..b3a8109a281 --- /dev/null +++ b/data/Petaluma/E24B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E24C-flag512thUp.xml b/data/Petaluma/E24C-flag512thUp.xml deleted file mode 100644 index 903d81175c7..00000000000 --- a/data/Petaluma/E24C-flag512thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E24C.xml b/data/Petaluma/E24C.xml new file mode 100644 index 00000000000..22df236bb97 --- /dev/null +++ b/data/Petaluma/E24C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E24D-flag512thDown.xml b/data/Petaluma/E24D-flag512thDown.xml deleted file mode 100644 index a7a911fb02c..00000000000 --- a/data/Petaluma/E24D-flag512thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E24D.xml b/data/Petaluma/E24D.xml new file mode 100644 index 00000000000..f22c732dcbe --- /dev/null +++ b/data/Petaluma/E24D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E24E-flag1024thUp.xml b/data/Petaluma/E24E-flag1024thUp.xml deleted file mode 100644 index 520f1bf6c56..00000000000 --- a/data/Petaluma/E24E-flag1024thUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E24E.xml b/data/Petaluma/E24E.xml new file mode 100644 index 00000000000..435b410f5aa --- /dev/null +++ b/data/Petaluma/E24E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E24F-flag1024thDown.xml b/data/Petaluma/E24F-flag1024thDown.xml deleted file mode 100644 index 8a9020e87b9..00000000000 --- a/data/Petaluma/E24F-flag1024thDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E24F.xml b/data/Petaluma/E24F.xml new file mode 100644 index 00000000000..2804cc51c58 --- /dev/null +++ b/data/Petaluma/E24F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E260-accidentalFlat.xml b/data/Petaluma/E260-accidentalFlat.xml deleted file mode 100644 index 20cbc3182ac..00000000000 --- a/data/Petaluma/E260-accidentalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E260.xml b/data/Petaluma/E260.xml new file mode 100644 index 00000000000..3265cab36b6 --- /dev/null +++ b/data/Petaluma/E260.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E261-accidentalNatural.xml b/data/Petaluma/E261-accidentalNatural.xml deleted file mode 100644 index ee6d09c3a45..00000000000 --- a/data/Petaluma/E261-accidentalNatural.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E261.xml b/data/Petaluma/E261.xml new file mode 100644 index 00000000000..53eed12ef0e --- /dev/null +++ b/data/Petaluma/E261.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E262-accidentalSharp.xml b/data/Petaluma/E262-accidentalSharp.xml deleted file mode 100644 index 65f1c958ee5..00000000000 --- a/data/Petaluma/E262-accidentalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E262.xml b/data/Petaluma/E262.xml new file mode 100644 index 00000000000..5a18ee278b3 --- /dev/null +++ b/data/Petaluma/E262.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E263-accidentalDoubleSharp.xml b/data/Petaluma/E263-accidentalDoubleSharp.xml deleted file mode 100644 index d9a5350831f..00000000000 --- a/data/Petaluma/E263-accidentalDoubleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E263.xml b/data/Petaluma/E263.xml new file mode 100644 index 00000000000..516333674a0 --- /dev/null +++ b/data/Petaluma/E263.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E264-accidentalDoubleFlat.xml b/data/Petaluma/E264-accidentalDoubleFlat.xml deleted file mode 100644 index defe663c9f4..00000000000 --- a/data/Petaluma/E264-accidentalDoubleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E264.xml b/data/Petaluma/E264.xml new file mode 100644 index 00000000000..4ed049fcb82 --- /dev/null +++ b/data/Petaluma/E264.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E265-accidentalTripleSharp.xml b/data/Petaluma/E265-accidentalTripleSharp.xml deleted file mode 100644 index 59d12677468..00000000000 --- a/data/Petaluma/E265-accidentalTripleSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E265.xml b/data/Petaluma/E265.xml new file mode 100644 index 00000000000..da08f86562c --- /dev/null +++ b/data/Petaluma/E265.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E266-accidentalTripleFlat.xml b/data/Petaluma/E266-accidentalTripleFlat.xml deleted file mode 100644 index 6ca1aa4d33b..00000000000 --- a/data/Petaluma/E266-accidentalTripleFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E266.xml b/data/Petaluma/E266.xml new file mode 100644 index 00000000000..7bfdf2ff66e --- /dev/null +++ b/data/Petaluma/E266.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E267-accidentalNaturalFlat.xml b/data/Petaluma/E267-accidentalNaturalFlat.xml deleted file mode 100644 index 83f6a1a04d2..00000000000 --- a/data/Petaluma/E267-accidentalNaturalFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E267.xml b/data/Petaluma/E267.xml new file mode 100644 index 00000000000..8b660810232 --- /dev/null +++ b/data/Petaluma/E267.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E268-accidentalNaturalSharp.xml b/data/Petaluma/E268-accidentalNaturalSharp.xml deleted file mode 100644 index be2cb308a6e..00000000000 --- a/data/Petaluma/E268-accidentalNaturalSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E268.xml b/data/Petaluma/E268.xml new file mode 100644 index 00000000000..d10d33468bd --- /dev/null +++ b/data/Petaluma/E268.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E269-accidentalSharpSharp.xml b/data/Petaluma/E269-accidentalSharpSharp.xml deleted file mode 100644 index da02c970029..00000000000 --- a/data/Petaluma/E269-accidentalSharpSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E269.xml b/data/Petaluma/E269.xml new file mode 100644 index 00000000000..00bcabee975 --- /dev/null +++ b/data/Petaluma/E269.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E26A-accidentalParensLeft.xml b/data/Petaluma/E26A-accidentalParensLeft.xml deleted file mode 100644 index db3d5398acc..00000000000 --- a/data/Petaluma/E26A-accidentalParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E26A.xml b/data/Petaluma/E26A.xml new file mode 100644 index 00000000000..34d2fd6670a --- /dev/null +++ b/data/Petaluma/E26A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E26B-accidentalParensRight.xml b/data/Petaluma/E26B-accidentalParensRight.xml deleted file mode 100644 index b2a55dc9845..00000000000 --- a/data/Petaluma/E26B-accidentalParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E26B.xml b/data/Petaluma/E26B.xml new file mode 100644 index 00000000000..eece2c16186 --- /dev/null +++ b/data/Petaluma/E26B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E26C-accidentalBracketLeft.xml b/data/Petaluma/E26C-accidentalBracketLeft.xml deleted file mode 100644 index 437cee1f8d6..00000000000 --- a/data/Petaluma/E26C-accidentalBracketLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E26C.xml b/data/Petaluma/E26C.xml new file mode 100644 index 00000000000..f31829b6a46 --- /dev/null +++ b/data/Petaluma/E26C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E26D-accidentalBracketRight.xml b/data/Petaluma/E26D-accidentalBracketRight.xml deleted file mode 100644 index dccbf489621..00000000000 --- a/data/Petaluma/E26D-accidentalBracketRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E26D.xml b/data/Petaluma/E26D.xml new file mode 100644 index 00000000000..34f099db093 --- /dev/null +++ b/data/Petaluma/E26D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E270-accidentalQuarterToneFlatArrowUp.xml b/data/Petaluma/E270-accidentalQuarterToneFlatArrowUp.xml deleted file mode 100644 index 0f8f7d023ef..00000000000 --- a/data/Petaluma/E270-accidentalQuarterToneFlatArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E270.xml b/data/Petaluma/E270.xml new file mode 100644 index 00000000000..4c0dca3f8fa --- /dev/null +++ b/data/Petaluma/E270.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E271-accidentalThreeQuarterTonesFlatArrowDown.xml b/data/Petaluma/E271-accidentalThreeQuarterTonesFlatArrowDown.xml deleted file mode 100644 index caf77b89cfb..00000000000 --- a/data/Petaluma/E271-accidentalThreeQuarterTonesFlatArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E271.xml b/data/Petaluma/E271.xml new file mode 100644 index 00000000000..0c20b80e89b --- /dev/null +++ b/data/Petaluma/E271.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E272-accidentalQuarterToneSharpNaturalArrowUp.xml b/data/Petaluma/E272-accidentalQuarterToneSharpNaturalArrowUp.xml deleted file mode 100644 index 1e69a073d44..00000000000 --- a/data/Petaluma/E272-accidentalQuarterToneSharpNaturalArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E272.xml b/data/Petaluma/E272.xml new file mode 100644 index 00000000000..17450e8d9ce --- /dev/null +++ b/data/Petaluma/E272.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E273-accidentalQuarterToneFlatNaturalArrowDown.xml b/data/Petaluma/E273-accidentalQuarterToneFlatNaturalArrowDown.xml deleted file mode 100644 index f90e627881d..00000000000 --- a/data/Petaluma/E273-accidentalQuarterToneFlatNaturalArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E273.xml b/data/Petaluma/E273.xml new file mode 100644 index 00000000000..c3fd2a148f1 --- /dev/null +++ b/data/Petaluma/E273.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E274-accidentalThreeQuarterTonesSharpArrowUp.xml b/data/Petaluma/E274-accidentalThreeQuarterTonesSharpArrowUp.xml deleted file mode 100644 index d38b2f22100..00000000000 --- a/data/Petaluma/E274-accidentalThreeQuarterTonesSharpArrowUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E274.xml b/data/Petaluma/E274.xml new file mode 100644 index 00000000000..ff1452d1b7e --- /dev/null +++ b/data/Petaluma/E274.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E275-accidentalQuarterToneSharpArrowDown.xml b/data/Petaluma/E275-accidentalQuarterToneSharpArrowDown.xml deleted file mode 100644 index 8619fc075f1..00000000000 --- a/data/Petaluma/E275-accidentalQuarterToneSharpArrowDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E275.xml b/data/Petaluma/E275.xml new file mode 100644 index 00000000000..14ade428454 --- /dev/null +++ b/data/Petaluma/E275.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E280-accidentalQuarterToneFlatStein.xml b/data/Petaluma/E280-accidentalQuarterToneFlatStein.xml deleted file mode 100644 index fc091d7fe66..00000000000 --- a/data/Petaluma/E280-accidentalQuarterToneFlatStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E280.xml b/data/Petaluma/E280.xml new file mode 100644 index 00000000000..8903029d851 --- /dev/null +++ b/data/Petaluma/E280.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E281-accidentalThreeQuarterTonesFlatZimmermann.xml b/data/Petaluma/E281-accidentalThreeQuarterTonesFlatZimmermann.xml deleted file mode 100644 index 05d9b30c4e3..00000000000 --- a/data/Petaluma/E281-accidentalThreeQuarterTonesFlatZimmermann.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E281.xml b/data/Petaluma/E281.xml new file mode 100644 index 00000000000..9a560dd3f9a --- /dev/null +++ b/data/Petaluma/E281.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E282-accidentalQuarterToneSharpStein.xml b/data/Petaluma/E282-accidentalQuarterToneSharpStein.xml deleted file mode 100644 index 335550e4fe9..00000000000 --- a/data/Petaluma/E282-accidentalQuarterToneSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E282.xml b/data/Petaluma/E282.xml new file mode 100644 index 00000000000..c2806f57070 --- /dev/null +++ b/data/Petaluma/E282.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E283-accidentalThreeQuarterTonesSharpStein.xml b/data/Petaluma/E283-accidentalThreeQuarterTonesSharpStein.xml deleted file mode 100644 index 969bd035455..00000000000 --- a/data/Petaluma/E283-accidentalThreeQuarterTonesSharpStein.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E283.xml b/data/Petaluma/E283.xml new file mode 100644 index 00000000000..f3bd27007c8 --- /dev/null +++ b/data/Petaluma/E283.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E440-accidentalBuyukMucennebFlat.xml b/data/Petaluma/E440-accidentalBuyukMucennebFlat.xml deleted file mode 100644 index f7e980c7755..00000000000 --- a/data/Petaluma/E440-accidentalBuyukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E440.xml b/data/Petaluma/E440.xml new file mode 100644 index 00000000000..1b11f0b5d2f --- /dev/null +++ b/data/Petaluma/E440.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E441-accidentalKucukMucennebFlat.xml b/data/Petaluma/E441-accidentalKucukMucennebFlat.xml deleted file mode 100644 index 2ff47466126..00000000000 --- a/data/Petaluma/E441-accidentalKucukMucennebFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E441.xml b/data/Petaluma/E441.xml new file mode 100644 index 00000000000..c33c349363e --- /dev/null +++ b/data/Petaluma/E441.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E442-accidentalBakiyeFlat.xml b/data/Petaluma/E442-accidentalBakiyeFlat.xml deleted file mode 100644 index 108451d0c48..00000000000 --- a/data/Petaluma/E442-accidentalBakiyeFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E442.xml b/data/Petaluma/E442.xml new file mode 100644 index 00000000000..2ef1cbbff9d --- /dev/null +++ b/data/Petaluma/E442.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E443-accidentalKomaFlat.xml b/data/Petaluma/E443-accidentalKomaFlat.xml deleted file mode 100644 index e6faef1e6ec..00000000000 --- a/data/Petaluma/E443-accidentalKomaFlat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E443.xml b/data/Petaluma/E443.xml new file mode 100644 index 00000000000..cc072e90132 --- /dev/null +++ b/data/Petaluma/E443.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E444-accidentalKomaSharp.xml b/data/Petaluma/E444-accidentalKomaSharp.xml deleted file mode 100644 index d986f147f4e..00000000000 --- a/data/Petaluma/E444-accidentalKomaSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E444.xml b/data/Petaluma/E444.xml new file mode 100644 index 00000000000..df419762e78 --- /dev/null +++ b/data/Petaluma/E444.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E445-accidentalBakiyeSharp.xml b/data/Petaluma/E445-accidentalBakiyeSharp.xml deleted file mode 100644 index dc828f4160d..00000000000 --- a/data/Petaluma/E445-accidentalBakiyeSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E445.xml b/data/Petaluma/E445.xml new file mode 100644 index 00000000000..d6e55d6dd1f --- /dev/null +++ b/data/Petaluma/E445.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E446-accidentalKucukMucennebSharp.xml b/data/Petaluma/E446-accidentalKucukMucennebSharp.xml deleted file mode 100644 index 57b37c1bb22..00000000000 --- a/data/Petaluma/E446-accidentalKucukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E446.xml b/data/Petaluma/E446.xml new file mode 100644 index 00000000000..8e9789c18fa --- /dev/null +++ b/data/Petaluma/E446.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E447-accidentalBuyukMucennebSharp.xml b/data/Petaluma/E447-accidentalBuyukMucennebSharp.xml deleted file mode 100644 index 7c4e0386771..00000000000 --- a/data/Petaluma/E447-accidentalBuyukMucennebSharp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E447.xml b/data/Petaluma/E447.xml new file mode 100644 index 00000000000..cd86e5ebac9 --- /dev/null +++ b/data/Petaluma/E447.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A0-articAccentAbove.xml b/data/Petaluma/E4A0-articAccentAbove.xml deleted file mode 100644 index 0c21eb94c4c..00000000000 --- a/data/Petaluma/E4A0-articAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A0.xml b/data/Petaluma/E4A0.xml new file mode 100644 index 00000000000..f4dc8244ff5 --- /dev/null +++ b/data/Petaluma/E4A0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A1-articAccentBelow.xml b/data/Petaluma/E4A1-articAccentBelow.xml deleted file mode 100644 index 0155af9f030..00000000000 --- a/data/Petaluma/E4A1-articAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A1.xml b/data/Petaluma/E4A1.xml new file mode 100644 index 00000000000..985f07d4cff --- /dev/null +++ b/data/Petaluma/E4A1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A2-articStaccatoAbove.xml b/data/Petaluma/E4A2-articStaccatoAbove.xml deleted file mode 100644 index ce6d5a5a474..00000000000 --- a/data/Petaluma/E4A2-articStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A2.xml b/data/Petaluma/E4A2.xml new file mode 100644 index 00000000000..6de3365d20b --- /dev/null +++ b/data/Petaluma/E4A2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A3-articStaccatoBelow.xml b/data/Petaluma/E4A3-articStaccatoBelow.xml deleted file mode 100644 index ce5ae4f5c7f..00000000000 --- a/data/Petaluma/E4A3-articStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A3.xml b/data/Petaluma/E4A3.xml new file mode 100644 index 00000000000..3ae5596cf6e --- /dev/null +++ b/data/Petaluma/E4A3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A4-articTenutoAbove.xml b/data/Petaluma/E4A4-articTenutoAbove.xml deleted file mode 100644 index da616524a3f..00000000000 --- a/data/Petaluma/E4A4-articTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A4.xml b/data/Petaluma/E4A4.xml new file mode 100644 index 00000000000..ab69a31c7ea --- /dev/null +++ b/data/Petaluma/E4A4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A5-articTenutoBelow.xml b/data/Petaluma/E4A5-articTenutoBelow.xml deleted file mode 100644 index 41975b37680..00000000000 --- a/data/Petaluma/E4A5-articTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A5.xml b/data/Petaluma/E4A5.xml new file mode 100644 index 00000000000..8de3cb74ba9 --- /dev/null +++ b/data/Petaluma/E4A5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A6-articStaccatissimoAbove.xml b/data/Petaluma/E4A6-articStaccatissimoAbove.xml deleted file mode 100644 index b9c6bebca43..00000000000 --- a/data/Petaluma/E4A6-articStaccatissimoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A6.xml b/data/Petaluma/E4A6.xml new file mode 100644 index 00000000000..bddb34d7c11 --- /dev/null +++ b/data/Petaluma/E4A6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A7-articStaccatissimoBelow.xml b/data/Petaluma/E4A7-articStaccatissimoBelow.xml deleted file mode 100644 index 3f946cfea75..00000000000 --- a/data/Petaluma/E4A7-articStaccatissimoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A7.xml b/data/Petaluma/E4A7.xml new file mode 100644 index 00000000000..b720c0342be --- /dev/null +++ b/data/Petaluma/E4A7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A8-articStaccatissimoWedgeAbove.xml b/data/Petaluma/E4A8-articStaccatissimoWedgeAbove.xml deleted file mode 100644 index 6c0db5fa040..00000000000 --- a/data/Petaluma/E4A8-articStaccatissimoWedgeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A8.xml b/data/Petaluma/E4A8.xml new file mode 100644 index 00000000000..22f0f382296 --- /dev/null +++ b/data/Petaluma/E4A8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4A9-articStaccatissimoWedgeBelow.xml b/data/Petaluma/E4A9-articStaccatissimoWedgeBelow.xml deleted file mode 100644 index f227015f7fc..00000000000 --- a/data/Petaluma/E4A9-articStaccatissimoWedgeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4A9.xml b/data/Petaluma/E4A9.xml new file mode 100644 index 00000000000..f8fb1013eb5 --- /dev/null +++ b/data/Petaluma/E4A9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4AA-articStaccatissimoStrokeAbove.xml b/data/Petaluma/E4AA-articStaccatissimoStrokeAbove.xml deleted file mode 100644 index a68f27c5c9b..00000000000 --- a/data/Petaluma/E4AA-articStaccatissimoStrokeAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4AA.xml b/data/Petaluma/E4AA.xml new file mode 100644 index 00000000000..71921c39e8b --- /dev/null +++ b/data/Petaluma/E4AA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4AB-articStaccatissimoStrokeBelow.xml b/data/Petaluma/E4AB-articStaccatissimoStrokeBelow.xml deleted file mode 100644 index 3e2d9bb422c..00000000000 --- a/data/Petaluma/E4AB-articStaccatissimoStrokeBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4AB.xml b/data/Petaluma/E4AB.xml new file mode 100644 index 00000000000..862afdfd5da --- /dev/null +++ b/data/Petaluma/E4AB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4AC-articMarcatoAbove.xml b/data/Petaluma/E4AC-articMarcatoAbove.xml deleted file mode 100644 index 49415c231b1..00000000000 --- a/data/Petaluma/E4AC-articMarcatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4AC.xml b/data/Petaluma/E4AC.xml new file mode 100644 index 00000000000..c6fa073f1a3 --- /dev/null +++ b/data/Petaluma/E4AC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4AD-articMarcatoBelow.xml b/data/Petaluma/E4AD-articMarcatoBelow.xml deleted file mode 100644 index f145201d605..00000000000 --- a/data/Petaluma/E4AD-articMarcatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4AD.xml b/data/Petaluma/E4AD.xml new file mode 100644 index 00000000000..a2d0ff8d79e --- /dev/null +++ b/data/Petaluma/E4AD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4AE-articMarcatoStaccatoAbove.xml b/data/Petaluma/E4AE-articMarcatoStaccatoAbove.xml deleted file mode 100644 index 541113d8260..00000000000 --- a/data/Petaluma/E4AE-articMarcatoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4AE.xml b/data/Petaluma/E4AE.xml new file mode 100644 index 00000000000..c96054dca09 --- /dev/null +++ b/data/Petaluma/E4AE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4AF-articMarcatoStaccatoBelow.xml b/data/Petaluma/E4AF-articMarcatoStaccatoBelow.xml deleted file mode 100644 index f29a47792c8..00000000000 --- a/data/Petaluma/E4AF-articMarcatoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4AF.xml b/data/Petaluma/E4AF.xml new file mode 100644 index 00000000000..2fd012f69d3 --- /dev/null +++ b/data/Petaluma/E4AF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B0-articAccentStaccatoAbove.xml b/data/Petaluma/E4B0-articAccentStaccatoAbove.xml deleted file mode 100644 index 2ec5147152b..00000000000 --- a/data/Petaluma/E4B0-articAccentStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B0.xml b/data/Petaluma/E4B0.xml new file mode 100644 index 00000000000..5dabd2c359f --- /dev/null +++ b/data/Petaluma/E4B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B1-articAccentStaccatoBelow.xml b/data/Petaluma/E4B1-articAccentStaccatoBelow.xml deleted file mode 100644 index 7a57841b709..00000000000 --- a/data/Petaluma/E4B1-articAccentStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B1.xml b/data/Petaluma/E4B1.xml new file mode 100644 index 00000000000..2dcd5513340 --- /dev/null +++ b/data/Petaluma/E4B1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B2-articTenutoStaccatoAbove.xml b/data/Petaluma/E4B2-articTenutoStaccatoAbove.xml deleted file mode 100644 index 2cb809c3b62..00000000000 --- a/data/Petaluma/E4B2-articTenutoStaccatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B2.xml b/data/Petaluma/E4B2.xml new file mode 100644 index 00000000000..71bec4c1001 --- /dev/null +++ b/data/Petaluma/E4B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B3-articTenutoStaccatoBelow.xml b/data/Petaluma/E4B3-articTenutoStaccatoBelow.xml deleted file mode 100644 index d861664dd15..00000000000 --- a/data/Petaluma/E4B3-articTenutoStaccatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B3.xml b/data/Petaluma/E4B3.xml new file mode 100644 index 00000000000..483793ab50f --- /dev/null +++ b/data/Petaluma/E4B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B4-articTenutoAccentAbove.xml b/data/Petaluma/E4B4-articTenutoAccentAbove.xml deleted file mode 100644 index 66d385df451..00000000000 --- a/data/Petaluma/E4B4-articTenutoAccentAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B4.xml b/data/Petaluma/E4B4.xml new file mode 100644 index 00000000000..01262c8be9c --- /dev/null +++ b/data/Petaluma/E4B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B5-articTenutoAccentBelow.xml b/data/Petaluma/E4B5-articTenutoAccentBelow.xml deleted file mode 100644 index f233214009d..00000000000 --- a/data/Petaluma/E4B5-articTenutoAccentBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B5.xml b/data/Petaluma/E4B5.xml new file mode 100644 index 00000000000..e154e86a60a --- /dev/null +++ b/data/Petaluma/E4B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B6-articStressAbove.xml b/data/Petaluma/E4B6-articStressAbove.xml deleted file mode 100644 index d6aff16e96e..00000000000 --- a/data/Petaluma/E4B6-articStressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B6.xml b/data/Petaluma/E4B6.xml new file mode 100644 index 00000000000..e148c5c8c5a --- /dev/null +++ b/data/Petaluma/E4B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B7-articStressBelow.xml b/data/Petaluma/E4B7-articStressBelow.xml deleted file mode 100644 index c32c826feb6..00000000000 --- a/data/Petaluma/E4B7-articStressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B7.xml b/data/Petaluma/E4B7.xml new file mode 100644 index 00000000000..afebf9434ef --- /dev/null +++ b/data/Petaluma/E4B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B8-articUnstressAbove.xml b/data/Petaluma/E4B8-articUnstressAbove.xml deleted file mode 100644 index e10edf0da90..00000000000 --- a/data/Petaluma/E4B8-articUnstressAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B8.xml b/data/Petaluma/E4B8.xml new file mode 100644 index 00000000000..57177adb210 --- /dev/null +++ b/data/Petaluma/E4B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4B9-articUnstressBelow.xml b/data/Petaluma/E4B9-articUnstressBelow.xml deleted file mode 100644 index 0df6737545f..00000000000 --- a/data/Petaluma/E4B9-articUnstressBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4B9.xml b/data/Petaluma/E4B9.xml new file mode 100644 index 00000000000..f8537c765a2 --- /dev/null +++ b/data/Petaluma/E4B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4BA-articLaissezVibrerAbove.xml b/data/Petaluma/E4BA-articLaissezVibrerAbove.xml deleted file mode 100644 index e1d60449254..00000000000 --- a/data/Petaluma/E4BA-articLaissezVibrerAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4BA.xml b/data/Petaluma/E4BA.xml new file mode 100644 index 00000000000..8a4740a5bbf --- /dev/null +++ b/data/Petaluma/E4BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4BB-articLaissezVibrerBelow.xml b/data/Petaluma/E4BB-articLaissezVibrerBelow.xml deleted file mode 100644 index 1337217bb54..00000000000 --- a/data/Petaluma/E4BB-articLaissezVibrerBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4BB.xml b/data/Petaluma/E4BB.xml new file mode 100644 index 00000000000..fdc9f5c8a89 --- /dev/null +++ b/data/Petaluma/E4BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4BC-articMarcatoTenutoAbove.xml b/data/Petaluma/E4BC-articMarcatoTenutoAbove.xml deleted file mode 100644 index 6ad74e479ee..00000000000 --- a/data/Petaluma/E4BC-articMarcatoTenutoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4BC.xml b/data/Petaluma/E4BC.xml new file mode 100644 index 00000000000..b5a8aaf38a9 --- /dev/null +++ b/data/Petaluma/E4BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4BD-articMarcatoTenutoBelow.xml b/data/Petaluma/E4BD-articMarcatoTenutoBelow.xml deleted file mode 100644 index 60e6d3cc482..00000000000 --- a/data/Petaluma/E4BD-articMarcatoTenutoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4BD.xml b/data/Petaluma/E4BD.xml new file mode 100644 index 00000000000..6901a244037 --- /dev/null +++ b/data/Petaluma/E4BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C0-fermataAbove.xml b/data/Petaluma/E4C0-fermataAbove.xml deleted file mode 100644 index 43e64ad729f..00000000000 --- a/data/Petaluma/E4C0-fermataAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C0.xml b/data/Petaluma/E4C0.xml new file mode 100644 index 00000000000..243880b98a8 --- /dev/null +++ b/data/Petaluma/E4C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C1-fermataBelow.xml b/data/Petaluma/E4C1-fermataBelow.xml deleted file mode 100644 index f843ed65c90..00000000000 --- a/data/Petaluma/E4C1-fermataBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C1.xml b/data/Petaluma/E4C1.xml new file mode 100644 index 00000000000..5b933bbba6d --- /dev/null +++ b/data/Petaluma/E4C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C2-fermataVeryShortAbove.xml b/data/Petaluma/E4C2-fermataVeryShortAbove.xml deleted file mode 100644 index eae5f0f3519..00000000000 --- a/data/Petaluma/E4C2-fermataVeryShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C2.xml b/data/Petaluma/E4C2.xml new file mode 100644 index 00000000000..a7ce6a44d84 --- /dev/null +++ b/data/Petaluma/E4C2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C3-fermataVeryShortBelow.xml b/data/Petaluma/E4C3-fermataVeryShortBelow.xml deleted file mode 100644 index 712ac324473..00000000000 --- a/data/Petaluma/E4C3-fermataVeryShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C3.xml b/data/Petaluma/E4C3.xml new file mode 100644 index 00000000000..9c8823c7609 --- /dev/null +++ b/data/Petaluma/E4C3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C4-fermataShortAbove.xml b/data/Petaluma/E4C4-fermataShortAbove.xml deleted file mode 100644 index 3508a735db8..00000000000 --- a/data/Petaluma/E4C4-fermataShortAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C4.xml b/data/Petaluma/E4C4.xml new file mode 100644 index 00000000000..c2de0405058 --- /dev/null +++ b/data/Petaluma/E4C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C5-fermataShortBelow.xml b/data/Petaluma/E4C5-fermataShortBelow.xml deleted file mode 100644 index ec2e20653db..00000000000 --- a/data/Petaluma/E4C5-fermataShortBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C5.xml b/data/Petaluma/E4C5.xml new file mode 100644 index 00000000000..c7d6a798ca5 --- /dev/null +++ b/data/Petaluma/E4C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C6-fermataLongAbove.xml b/data/Petaluma/E4C6-fermataLongAbove.xml deleted file mode 100644 index 7414d36c5fe..00000000000 --- a/data/Petaluma/E4C6-fermataLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C6.xml b/data/Petaluma/E4C6.xml new file mode 100644 index 00000000000..a1a49928bb6 --- /dev/null +++ b/data/Petaluma/E4C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C7-fermataLongBelow.xml b/data/Petaluma/E4C7-fermataLongBelow.xml deleted file mode 100644 index 8ff5adcbfd4..00000000000 --- a/data/Petaluma/E4C7-fermataLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C7.xml b/data/Petaluma/E4C7.xml new file mode 100644 index 00000000000..5df952682d9 --- /dev/null +++ b/data/Petaluma/E4C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C8-fermataVeryLongAbove.xml b/data/Petaluma/E4C8-fermataVeryLongAbove.xml deleted file mode 100644 index 537d7462575..00000000000 --- a/data/Petaluma/E4C8-fermataVeryLongAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C8.xml b/data/Petaluma/E4C8.xml new file mode 100644 index 00000000000..8f194ea45c9 --- /dev/null +++ b/data/Petaluma/E4C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4C9-fermataVeryLongBelow.xml b/data/Petaluma/E4C9-fermataVeryLongBelow.xml deleted file mode 100644 index 78e35da7014..00000000000 --- a/data/Petaluma/E4C9-fermataVeryLongBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4C9.xml b/data/Petaluma/E4C9.xml new file mode 100644 index 00000000000..3d490ea5bb6 --- /dev/null +++ b/data/Petaluma/E4C9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4CE-breathMarkComma.xml b/data/Petaluma/E4CE-breathMarkComma.xml deleted file mode 100644 index 246cc74edc0..00000000000 --- a/data/Petaluma/E4CE-breathMarkComma.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4CE.xml b/data/Petaluma/E4CE.xml new file mode 100644 index 00000000000..0ff468f2637 --- /dev/null +++ b/data/Petaluma/E4CE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E0-restMaxima.xml b/data/Petaluma/E4E0-restMaxima.xml deleted file mode 100644 index 75ed6f83792..00000000000 --- a/data/Petaluma/E4E0-restMaxima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E0.xml b/data/Petaluma/E4E0.xml new file mode 100644 index 00000000000..2100669b45d --- /dev/null +++ b/data/Petaluma/E4E0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E1-restLonga.xml b/data/Petaluma/E4E1-restLonga.xml deleted file mode 100644 index 261c63b649a..00000000000 --- a/data/Petaluma/E4E1-restLonga.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E1.xml b/data/Petaluma/E4E1.xml new file mode 100644 index 00000000000..2e24b00e1fa --- /dev/null +++ b/data/Petaluma/E4E1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E2-restDoubleWhole.xml b/data/Petaluma/E4E2-restDoubleWhole.xml deleted file mode 100644 index eb3696dd596..00000000000 --- a/data/Petaluma/E4E2-restDoubleWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E2.xml b/data/Petaluma/E4E2.xml new file mode 100644 index 00000000000..7359c90125a --- /dev/null +++ b/data/Petaluma/E4E2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E3-restWhole.xml b/data/Petaluma/E4E3-restWhole.xml deleted file mode 100644 index 16efcdcd49f..00000000000 --- a/data/Petaluma/E4E3-restWhole.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E3.xml b/data/Petaluma/E4E3.xml new file mode 100644 index 00000000000..791933a1f4a --- /dev/null +++ b/data/Petaluma/E4E3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E4-restHalf.xml b/data/Petaluma/E4E4-restHalf.xml deleted file mode 100644 index 5ad64010a78..00000000000 --- a/data/Petaluma/E4E4-restHalf.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E4.xml b/data/Petaluma/E4E4.xml new file mode 100644 index 00000000000..163a1915fc2 --- /dev/null +++ b/data/Petaluma/E4E4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E5-restQuarter.xml b/data/Petaluma/E4E5-restQuarter.xml deleted file mode 100644 index 2624562e24d..00000000000 --- a/data/Petaluma/E4E5-restQuarter.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E5.xml b/data/Petaluma/E4E5.xml new file mode 100644 index 00000000000..8920a8e2071 --- /dev/null +++ b/data/Petaluma/E4E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E6-rest8th.xml b/data/Petaluma/E4E6-rest8th.xml deleted file mode 100644 index d38144b65c2..00000000000 --- a/data/Petaluma/E4E6-rest8th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E6.xml b/data/Petaluma/E4E6.xml new file mode 100644 index 00000000000..e7123776f14 --- /dev/null +++ b/data/Petaluma/E4E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E7-rest16th.xml b/data/Petaluma/E4E7-rest16th.xml deleted file mode 100644 index 167b37700f5..00000000000 --- a/data/Petaluma/E4E7-rest16th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E7.xml b/data/Petaluma/E4E7.xml new file mode 100644 index 00000000000..a10a7959985 --- /dev/null +++ b/data/Petaluma/E4E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E8-rest32nd.xml b/data/Petaluma/E4E8-rest32nd.xml deleted file mode 100644 index a9f26644146..00000000000 --- a/data/Petaluma/E4E8-rest32nd.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E8.xml b/data/Petaluma/E4E8.xml new file mode 100644 index 00000000000..5e3eaad3aad --- /dev/null +++ b/data/Petaluma/E4E8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4E9-rest64th.xml b/data/Petaluma/E4E9-rest64th.xml deleted file mode 100644 index 6ede68a6b7a..00000000000 --- a/data/Petaluma/E4E9-rest64th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4E9.xml b/data/Petaluma/E4E9.xml new file mode 100644 index 00000000000..74eed922866 --- /dev/null +++ b/data/Petaluma/E4E9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4EA-rest128th.xml b/data/Petaluma/E4EA-rest128th.xml deleted file mode 100644 index 960682704a0..00000000000 --- a/data/Petaluma/E4EA-rest128th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4EA.xml b/data/Petaluma/E4EA.xml new file mode 100644 index 00000000000..cca3aaf99cb --- /dev/null +++ b/data/Petaluma/E4EA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4EB-rest256th.xml b/data/Petaluma/E4EB-rest256th.xml deleted file mode 100644 index d4f699994f7..00000000000 --- a/data/Petaluma/E4EB-rest256th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4EB.xml b/data/Petaluma/E4EB.xml new file mode 100644 index 00000000000..15e8612e1d7 --- /dev/null +++ b/data/Petaluma/E4EB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4EC-rest512th.xml b/data/Petaluma/E4EC-rest512th.xml deleted file mode 100644 index 93d95165482..00000000000 --- a/data/Petaluma/E4EC-rest512th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4EC.xml b/data/Petaluma/E4EC.xml new file mode 100644 index 00000000000..a201693adee --- /dev/null +++ b/data/Petaluma/E4EC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4ED-rest1024th.xml b/data/Petaluma/E4ED-rest1024th.xml deleted file mode 100644 index cab64eb12bf..00000000000 --- a/data/Petaluma/E4ED-rest1024th.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4ED.xml b/data/Petaluma/E4ED.xml new file mode 100644 index 00000000000..7f159a15d96 --- /dev/null +++ b/data/Petaluma/E4ED.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4F2-restQuarterOld.xml b/data/Petaluma/E4F2-restQuarterOld.xml deleted file mode 100644 index b31419f931f..00000000000 --- a/data/Petaluma/E4F2-restQuarterOld.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4F2.xml b/data/Petaluma/E4F2.xml new file mode 100644 index 00000000000..5857ced675b --- /dev/null +++ b/data/Petaluma/E4F2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E4F6-restQuarterZ.xml b/data/Petaluma/E4F6-restQuarterZ.xml deleted file mode 100644 index e42d9d455fd..00000000000 --- a/data/Petaluma/E4F6-restQuarterZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E4F6.xml b/data/Petaluma/E4F6.xml new file mode 100644 index 00000000000..11a055e86d9 --- /dev/null +++ b/data/Petaluma/E4F6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E500-repeat1Bar.xml b/data/Petaluma/E500-repeat1Bar.xml deleted file mode 100644 index 345a788f8a8..00000000000 --- a/data/Petaluma/E500-repeat1Bar.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E500.xml b/data/Petaluma/E500.xml new file mode 100644 index 00000000000..6f24d702962 --- /dev/null +++ b/data/Petaluma/E500.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E501-repeat2Bars.xml b/data/Petaluma/E501-repeat2Bars.xml deleted file mode 100644 index baf2e34d436..00000000000 --- a/data/Petaluma/E501-repeat2Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E501.xml b/data/Petaluma/E501.xml new file mode 100644 index 00000000000..e528002bb5d --- /dev/null +++ b/data/Petaluma/E501.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E502-repeat4Bars.xml b/data/Petaluma/E502-repeat4Bars.xml deleted file mode 100644 index 356eaf45fcd..00000000000 --- a/data/Petaluma/E502-repeat4Bars.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E502.xml b/data/Petaluma/E502.xml new file mode 100644 index 00000000000..2f024728777 --- /dev/null +++ b/data/Petaluma/E502.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E503-repeatBarUpperDot.xml b/data/Petaluma/E503-repeatBarUpperDot.xml deleted file mode 100644 index bc548a190e7..00000000000 --- a/data/Petaluma/E503-repeatBarUpperDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E503.xml b/data/Petaluma/E503.xml new file mode 100644 index 00000000000..f67cd470f55 --- /dev/null +++ b/data/Petaluma/E503.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E504-repeatBarSlash.xml b/data/Petaluma/E504-repeatBarSlash.xml deleted file mode 100644 index 581e8097fcb..00000000000 --- a/data/Petaluma/E504-repeatBarSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E504.xml b/data/Petaluma/E504.xml new file mode 100644 index 00000000000..a0bb4577fc1 --- /dev/null +++ b/data/Petaluma/E504.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E505-repeatBarLowerDot.xml b/data/Petaluma/E505-repeatBarLowerDot.xml deleted file mode 100644 index 0834b61f674..00000000000 --- a/data/Petaluma/E505-repeatBarLowerDot.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E505.xml b/data/Petaluma/E505.xml new file mode 100644 index 00000000000..c98f0e5cee8 --- /dev/null +++ b/data/Petaluma/E505.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E510-ottava.xml b/data/Petaluma/E510-ottava.xml deleted file mode 100644 index d41386beb7e..00000000000 --- a/data/Petaluma/E510-ottava.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E510.xml b/data/Petaluma/E510.xml new file mode 100644 index 00000000000..8eb348b0a8e --- /dev/null +++ b/data/Petaluma/E510.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E511-ottavaAlta.xml b/data/Petaluma/E511-ottavaAlta.xml deleted file mode 100644 index e85f9903932..00000000000 --- a/data/Petaluma/E511-ottavaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E511.xml b/data/Petaluma/E511.xml new file mode 100644 index 00000000000..597914b3919 --- /dev/null +++ b/data/Petaluma/E511.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E512-ottavaBassa.xml b/data/Petaluma/E512-ottavaBassa.xml deleted file mode 100644 index 197d5a63dbd..00000000000 --- a/data/Petaluma/E512-ottavaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E512.xml b/data/Petaluma/E512.xml new file mode 100644 index 00000000000..078556350f0 --- /dev/null +++ b/data/Petaluma/E512.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E513-ottavaBassaBa.xml b/data/Petaluma/E513-ottavaBassaBa.xml deleted file mode 100644 index 029cb29eed9..00000000000 --- a/data/Petaluma/E513-ottavaBassaBa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E513.xml b/data/Petaluma/E513.xml new file mode 100644 index 00000000000..9ce4306bf53 --- /dev/null +++ b/data/Petaluma/E513.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E514-quindicesima.xml b/data/Petaluma/E514-quindicesima.xml deleted file mode 100644 index bf6ff17e303..00000000000 --- a/data/Petaluma/E514-quindicesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E514.xml b/data/Petaluma/E514.xml new file mode 100644 index 00000000000..c0f2950217d --- /dev/null +++ b/data/Petaluma/E514.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E515-quindicesimaAlta.xml b/data/Petaluma/E515-quindicesimaAlta.xml deleted file mode 100644 index cd8c759fccc..00000000000 --- a/data/Petaluma/E515-quindicesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E515.xml b/data/Petaluma/E515.xml new file mode 100644 index 00000000000..ab7457ef670 --- /dev/null +++ b/data/Petaluma/E515.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E516-quindicesimaBassa.xml b/data/Petaluma/E516-quindicesimaBassa.xml deleted file mode 100644 index 1a938a1de15..00000000000 --- a/data/Petaluma/E516-quindicesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E516.xml b/data/Petaluma/E516.xml new file mode 100644 index 00000000000..30e3c3c155c --- /dev/null +++ b/data/Petaluma/E516.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E517-ventiduesima.xml b/data/Petaluma/E517-ventiduesima.xml deleted file mode 100644 index 92f21d7ced6..00000000000 --- a/data/Petaluma/E517-ventiduesima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E517.xml b/data/Petaluma/E517.xml new file mode 100644 index 00000000000..04723187f46 --- /dev/null +++ b/data/Petaluma/E517.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E518-ventiduesimaAlta.xml b/data/Petaluma/E518-ventiduesimaAlta.xml deleted file mode 100644 index 37e0ab5246a..00000000000 --- a/data/Petaluma/E518-ventiduesimaAlta.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E518.xml b/data/Petaluma/E518.xml new file mode 100644 index 00000000000..e6fd8998433 --- /dev/null +++ b/data/Petaluma/E518.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E519-ventiduesimaBassa.xml b/data/Petaluma/E519-ventiduesimaBassa.xml deleted file mode 100644 index 7607caa0ebe..00000000000 --- a/data/Petaluma/E519-ventiduesimaBassa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E519.xml b/data/Petaluma/E519.xml new file mode 100644 index 00000000000..45f7e1ee432 --- /dev/null +++ b/data/Petaluma/E519.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E51A-octaveParensLeft.xml b/data/Petaluma/E51A-octaveParensLeft.xml deleted file mode 100644 index 04623ff6c4e..00000000000 --- a/data/Petaluma/E51A-octaveParensLeft.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E51A.xml b/data/Petaluma/E51A.xml new file mode 100644 index 00000000000..8c76f511ed0 --- /dev/null +++ b/data/Petaluma/E51A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E51B-octaveParensRight.xml b/data/Petaluma/E51B-octaveParensRight.xml deleted file mode 100644 index 09bd81839ef..00000000000 --- a/data/Petaluma/E51B-octaveParensRight.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E51B.xml b/data/Petaluma/E51B.xml new file mode 100644 index 00000000000..b16a44b03ac --- /dev/null +++ b/data/Petaluma/E51B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E51C-ottavaBassaVb.xml b/data/Petaluma/E51C-ottavaBassaVb.xml deleted file mode 100644 index 264f16c99f1..00000000000 --- a/data/Petaluma/E51C-ottavaBassaVb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E51C.xml b/data/Petaluma/E51C.xml new file mode 100644 index 00000000000..c7340146616 --- /dev/null +++ b/data/Petaluma/E51C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E51D-quindicesimaBassaMb.xml b/data/Petaluma/E51D-quindicesimaBassaMb.xml deleted file mode 100644 index f62839cfb91..00000000000 --- a/data/Petaluma/E51D-quindicesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E51D.xml b/data/Petaluma/E51D.xml new file mode 100644 index 00000000000..3efdcc5d6a0 --- /dev/null +++ b/data/Petaluma/E51D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E51E-ventiduesimaBassaMb.xml b/data/Petaluma/E51E-ventiduesimaBassaMb.xml deleted file mode 100644 index 2d3c4fbe560..00000000000 --- a/data/Petaluma/E51E-ventiduesimaBassaMb.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E51E.xml b/data/Petaluma/E51E.xml new file mode 100644 index 00000000000..92f7550d6dc --- /dev/null +++ b/data/Petaluma/E51E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E520-dynamicPiano.xml b/data/Petaluma/E520-dynamicPiano.xml deleted file mode 100644 index 8586554f3a1..00000000000 --- a/data/Petaluma/E520-dynamicPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E520.xml b/data/Petaluma/E520.xml new file mode 100644 index 00000000000..37890419912 --- /dev/null +++ b/data/Petaluma/E520.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E521-dynamicMezzo.xml b/data/Petaluma/E521-dynamicMezzo.xml deleted file mode 100644 index ab03bd2aff6..00000000000 --- a/data/Petaluma/E521-dynamicMezzo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E521.xml b/data/Petaluma/E521.xml new file mode 100644 index 00000000000..ed05057d9a7 --- /dev/null +++ b/data/Petaluma/E521.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E522-dynamicForte.xml b/data/Petaluma/E522-dynamicForte.xml deleted file mode 100644 index 058c4273ef1..00000000000 --- a/data/Petaluma/E522-dynamicForte.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E522.xml b/data/Petaluma/E522.xml new file mode 100644 index 00000000000..d6d1aeee2b7 --- /dev/null +++ b/data/Petaluma/E522.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E523-dynamicRinforzando.xml b/data/Petaluma/E523-dynamicRinforzando.xml deleted file mode 100644 index 5f547de476d..00000000000 --- a/data/Petaluma/E523-dynamicRinforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E523.xml b/data/Petaluma/E523.xml new file mode 100644 index 00000000000..5bfc0d49d84 --- /dev/null +++ b/data/Petaluma/E523.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E524-dynamicSforzando.xml b/data/Petaluma/E524-dynamicSforzando.xml deleted file mode 100644 index d80d5d5ec6a..00000000000 --- a/data/Petaluma/E524-dynamicSforzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E524.xml b/data/Petaluma/E524.xml new file mode 100644 index 00000000000..2e929d56a8d --- /dev/null +++ b/data/Petaluma/E524.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E525-dynamicZ.xml b/data/Petaluma/E525-dynamicZ.xml deleted file mode 100644 index 0609ed7e81c..00000000000 --- a/data/Petaluma/E525-dynamicZ.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E525.xml b/data/Petaluma/E525.xml new file mode 100644 index 00000000000..5cf92abc7b7 --- /dev/null +++ b/data/Petaluma/E525.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E526-dynamicNiente.xml b/data/Petaluma/E526-dynamicNiente.xml deleted file mode 100644 index 327db4e21ec..00000000000 --- a/data/Petaluma/E526-dynamicNiente.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E526.xml b/data/Petaluma/E526.xml new file mode 100644 index 00000000000..54949ab8d44 --- /dev/null +++ b/data/Petaluma/E526.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E527-dynamicPPPPPP.xml b/data/Petaluma/E527-dynamicPPPPPP.xml deleted file mode 100644 index 84370eb41fc..00000000000 --- a/data/Petaluma/E527-dynamicPPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E527.xml b/data/Petaluma/E527.xml new file mode 100644 index 00000000000..8cc3114b079 --- /dev/null +++ b/data/Petaluma/E527.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E528-dynamicPPPPP.xml b/data/Petaluma/E528-dynamicPPPPP.xml deleted file mode 100644 index 227247984fc..00000000000 --- a/data/Petaluma/E528-dynamicPPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E528.xml b/data/Petaluma/E528.xml new file mode 100644 index 00000000000..ee08cdd5e1a --- /dev/null +++ b/data/Petaluma/E528.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E529-dynamicPPPP.xml b/data/Petaluma/E529-dynamicPPPP.xml deleted file mode 100644 index ccd01547e91..00000000000 --- a/data/Petaluma/E529-dynamicPPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E529.xml b/data/Petaluma/E529.xml new file mode 100644 index 00000000000..29dcae8f891 --- /dev/null +++ b/data/Petaluma/E529.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E52A-dynamicPPP.xml b/data/Petaluma/E52A-dynamicPPP.xml deleted file mode 100644 index 435093d4ce0..00000000000 --- a/data/Petaluma/E52A-dynamicPPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E52A.xml b/data/Petaluma/E52A.xml new file mode 100644 index 00000000000..6cda41b7bf6 --- /dev/null +++ b/data/Petaluma/E52A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E52B-dynamicPP.xml b/data/Petaluma/E52B-dynamicPP.xml deleted file mode 100644 index 03a6b8061aa..00000000000 --- a/data/Petaluma/E52B-dynamicPP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E52B.xml b/data/Petaluma/E52B.xml new file mode 100644 index 00000000000..d94d8a3c62d --- /dev/null +++ b/data/Petaluma/E52B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E52C-dynamicMP.xml b/data/Petaluma/E52C-dynamicMP.xml deleted file mode 100644 index d15b49ef313..00000000000 --- a/data/Petaluma/E52C-dynamicMP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E52C.xml b/data/Petaluma/E52C.xml new file mode 100644 index 00000000000..761b9f84524 --- /dev/null +++ b/data/Petaluma/E52C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E52D-dynamicMF.xml b/data/Petaluma/E52D-dynamicMF.xml deleted file mode 100644 index 5e3de403f5d..00000000000 --- a/data/Petaluma/E52D-dynamicMF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E52D.xml b/data/Petaluma/E52D.xml new file mode 100644 index 00000000000..7403b8cae60 --- /dev/null +++ b/data/Petaluma/E52D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E52E-dynamicPF.xml b/data/Petaluma/E52E-dynamicPF.xml deleted file mode 100644 index 15e3f921c17..00000000000 --- a/data/Petaluma/E52E-dynamicPF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E52E.xml b/data/Petaluma/E52E.xml new file mode 100644 index 00000000000..7c1b4849104 --- /dev/null +++ b/data/Petaluma/E52E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E52F-dynamicFF.xml b/data/Petaluma/E52F-dynamicFF.xml deleted file mode 100644 index 5ea3b4e5dc5..00000000000 --- a/data/Petaluma/E52F-dynamicFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E52F.xml b/data/Petaluma/E52F.xml new file mode 100644 index 00000000000..7a79235c07f --- /dev/null +++ b/data/Petaluma/E52F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E530-dynamicFFF.xml b/data/Petaluma/E530-dynamicFFF.xml deleted file mode 100644 index 21a167b128e..00000000000 --- a/data/Petaluma/E530-dynamicFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E530.xml b/data/Petaluma/E530.xml new file mode 100644 index 00000000000..74f76702b58 --- /dev/null +++ b/data/Petaluma/E530.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E531-dynamicFFFF.xml b/data/Petaluma/E531-dynamicFFFF.xml deleted file mode 100644 index b55bc1556ff..00000000000 --- a/data/Petaluma/E531-dynamicFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E531.xml b/data/Petaluma/E531.xml new file mode 100644 index 00000000000..423cd0cd2d5 --- /dev/null +++ b/data/Petaluma/E531.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E532-dynamicFFFFF.xml b/data/Petaluma/E532-dynamicFFFFF.xml deleted file mode 100644 index 09d01131803..00000000000 --- a/data/Petaluma/E532-dynamicFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E532.xml b/data/Petaluma/E532.xml new file mode 100644 index 00000000000..a4136881a2b --- /dev/null +++ b/data/Petaluma/E532.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E533-dynamicFFFFFF.xml b/data/Petaluma/E533-dynamicFFFFFF.xml deleted file mode 100644 index 0e544ed1440..00000000000 --- a/data/Petaluma/E533-dynamicFFFFFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E533.xml b/data/Petaluma/E533.xml new file mode 100644 index 00000000000..6853246142b --- /dev/null +++ b/data/Petaluma/E533.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E534-dynamicFortePiano.xml b/data/Petaluma/E534-dynamicFortePiano.xml deleted file mode 100644 index 894909be119..00000000000 --- a/data/Petaluma/E534-dynamicFortePiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E534.xml b/data/Petaluma/E534.xml new file mode 100644 index 00000000000..b60488eb4e5 --- /dev/null +++ b/data/Petaluma/E534.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E535-dynamicForzando.xml b/data/Petaluma/E535-dynamicForzando.xml deleted file mode 100644 index a1b7cf90e89..00000000000 --- a/data/Petaluma/E535-dynamicForzando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E535.xml b/data/Petaluma/E535.xml new file mode 100644 index 00000000000..934a0733597 --- /dev/null +++ b/data/Petaluma/E535.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E536-dynamicSforzando1.xml b/data/Petaluma/E536-dynamicSforzando1.xml deleted file mode 100644 index 133ac5f82fd..00000000000 --- a/data/Petaluma/E536-dynamicSforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E536.xml b/data/Petaluma/E536.xml new file mode 100644 index 00000000000..76b6ebb8147 --- /dev/null +++ b/data/Petaluma/E536.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E537-dynamicSforzandoPiano.xml b/data/Petaluma/E537-dynamicSforzandoPiano.xml deleted file mode 100644 index 80c516051b2..00000000000 --- a/data/Petaluma/E537-dynamicSforzandoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E537.xml b/data/Petaluma/E537.xml new file mode 100644 index 00000000000..12dfbc59aa5 --- /dev/null +++ b/data/Petaluma/E537.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E538-dynamicSforzandoPianissimo.xml b/data/Petaluma/E538-dynamicSforzandoPianissimo.xml deleted file mode 100644 index 38744eda43a..00000000000 --- a/data/Petaluma/E538-dynamicSforzandoPianissimo.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E538.xml b/data/Petaluma/E538.xml new file mode 100644 index 00000000000..9cdbdd615b6 --- /dev/null +++ b/data/Petaluma/E538.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E539-dynamicSforzato.xml b/data/Petaluma/E539-dynamicSforzato.xml deleted file mode 100644 index ab7b8b07a0a..00000000000 --- a/data/Petaluma/E539-dynamicSforzato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E539.xml b/data/Petaluma/E539.xml new file mode 100644 index 00000000000..a3f3c2bd538 --- /dev/null +++ b/data/Petaluma/E539.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E53A-dynamicSforzatoPiano.xml b/data/Petaluma/E53A-dynamicSforzatoPiano.xml deleted file mode 100644 index ea95244e219..00000000000 --- a/data/Petaluma/E53A-dynamicSforzatoPiano.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E53A.xml b/data/Petaluma/E53A.xml new file mode 100644 index 00000000000..5af00553174 --- /dev/null +++ b/data/Petaluma/E53A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E53B-dynamicSforzatoFF.xml b/data/Petaluma/E53B-dynamicSforzatoFF.xml deleted file mode 100644 index 0327c94b3bb..00000000000 --- a/data/Petaluma/E53B-dynamicSforzatoFF.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E53B.xml b/data/Petaluma/E53B.xml new file mode 100644 index 00000000000..9a178e8235d --- /dev/null +++ b/data/Petaluma/E53B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E53C-dynamicRinforzando1.xml b/data/Petaluma/E53C-dynamicRinforzando1.xml deleted file mode 100644 index e621f444a35..00000000000 --- a/data/Petaluma/E53C-dynamicRinforzando1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E53C.xml b/data/Petaluma/E53C.xml new file mode 100644 index 00000000000..5cbc9cbf51c --- /dev/null +++ b/data/Petaluma/E53C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E53D-dynamicRinforzando2.xml b/data/Petaluma/E53D-dynamicRinforzando2.xml deleted file mode 100644 index 87cf34f63bf..00000000000 --- a/data/Petaluma/E53D-dynamicRinforzando2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E53D.xml b/data/Petaluma/E53D.xml new file mode 100644 index 00000000000..a89fddfe684 --- /dev/null +++ b/data/Petaluma/E53D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E566-ornamentTrill.xml b/data/Petaluma/E566-ornamentTrill.xml deleted file mode 100644 index 71970e93112..00000000000 --- a/data/Petaluma/E566-ornamentTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E566.xml b/data/Petaluma/E566.xml new file mode 100644 index 00000000000..f4490cc963a --- /dev/null +++ b/data/Petaluma/E566.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E567-ornamentTurn.xml b/data/Petaluma/E567-ornamentTurn.xml deleted file mode 100644 index be0f88adfb6..00000000000 --- a/data/Petaluma/E567-ornamentTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E567.xml b/data/Petaluma/E567.xml new file mode 100644 index 00000000000..4566f98f3c8 --- /dev/null +++ b/data/Petaluma/E567.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E568-ornamentTurnInverted.xml b/data/Petaluma/E568-ornamentTurnInverted.xml deleted file mode 100644 index be6a69a5f59..00000000000 --- a/data/Petaluma/E568-ornamentTurnInverted.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E568.xml b/data/Petaluma/E568.xml new file mode 100644 index 00000000000..ff830825fff --- /dev/null +++ b/data/Petaluma/E568.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E569-ornamentTurnSlash.xml b/data/Petaluma/E569-ornamentTurnSlash.xml deleted file mode 100644 index 878a5448d97..00000000000 --- a/data/Petaluma/E569-ornamentTurnSlash.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E569.xml b/data/Petaluma/E569.xml new file mode 100644 index 00000000000..a2e289bd96b --- /dev/null +++ b/data/Petaluma/E569.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E56A-ornamentTurnUp.xml b/data/Petaluma/E56A-ornamentTurnUp.xml deleted file mode 100644 index dc3749f34eb..00000000000 --- a/data/Petaluma/E56A-ornamentTurnUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E56A.xml b/data/Petaluma/E56A.xml new file mode 100644 index 00000000000..de6bf95a711 --- /dev/null +++ b/data/Petaluma/E56A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E56B-ornamentTurnUpS.xml b/data/Petaluma/E56B-ornamentTurnUpS.xml deleted file mode 100644 index 88cb964d6b3..00000000000 --- a/data/Petaluma/E56B-ornamentTurnUpS.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E56B.xml b/data/Petaluma/E56B.xml new file mode 100644 index 00000000000..676f6b54358 --- /dev/null +++ b/data/Petaluma/E56B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E56C-ornamentShortTrill.xml b/data/Petaluma/E56C-ornamentShortTrill.xml deleted file mode 100644 index b30e35b3d40..00000000000 --- a/data/Petaluma/E56C-ornamentShortTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E56C.xml b/data/Petaluma/E56C.xml new file mode 100644 index 00000000000..2f1c7682bb8 --- /dev/null +++ b/data/Petaluma/E56C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E56D-ornamentMordent.xml b/data/Petaluma/E56D-ornamentMordent.xml deleted file mode 100644 index da8917ba41c..00000000000 --- a/data/Petaluma/E56D-ornamentMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E56D.xml b/data/Petaluma/E56D.xml new file mode 100644 index 00000000000..f91f6c84387 --- /dev/null +++ b/data/Petaluma/E56D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E56E-ornamentTremblement.xml b/data/Petaluma/E56E-ornamentTremblement.xml deleted file mode 100644 index 08a5e3315d1..00000000000 --- a/data/Petaluma/E56E-ornamentTremblement.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E56E.xml b/data/Petaluma/E56E.xml new file mode 100644 index 00000000000..e39833e8b17 --- /dev/null +++ b/data/Petaluma/E56E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E56F-ornamentHaydn.xml b/data/Petaluma/E56F-ornamentHaydn.xml deleted file mode 100644 index 0b7201ec408..00000000000 --- a/data/Petaluma/E56F-ornamentHaydn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E56F.xml b/data/Petaluma/E56F.xml new file mode 100644 index 00000000000..66fb1cc4ee0 --- /dev/null +++ b/data/Petaluma/E56F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E583-ornamentVerticalLine.xml b/data/Petaluma/E583-ornamentVerticalLine.xml deleted file mode 100644 index cdca1ce51d5..00000000000 --- a/data/Petaluma/E583-ornamentVerticalLine.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E583.xml b/data/Petaluma/E583.xml new file mode 100644 index 00000000000..de4c292ead4 --- /dev/null +++ b/data/Petaluma/E583.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E587-ornamentSchleifer.xml b/data/Petaluma/E587-ornamentSchleifer.xml deleted file mode 100644 index 96d724e9741..00000000000 --- a/data/Petaluma/E587-ornamentSchleifer.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E587.xml b/data/Petaluma/E587.xml new file mode 100644 index 00000000000..beab4d31d93 --- /dev/null +++ b/data/Petaluma/E587.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B0-ornamentPrecompSlide.xml b/data/Petaluma/E5B0-ornamentPrecompSlide.xml deleted file mode 100644 index 07c73b866ea..00000000000 --- a/data/Petaluma/E5B0-ornamentPrecompSlide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B0.xml b/data/Petaluma/E5B0.xml new file mode 100644 index 00000000000..b980c536567 --- /dev/null +++ b/data/Petaluma/E5B0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B1-ornamentPrecompDescendingSlide.xml b/data/Petaluma/E5B1-ornamentPrecompDescendingSlide.xml deleted file mode 100644 index 8b5fa0edb72..00000000000 --- a/data/Petaluma/E5B1-ornamentPrecompDescendingSlide.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B1.xml b/data/Petaluma/E5B1.xml new file mode 100644 index 00000000000..ca380f659a9 --- /dev/null +++ b/data/Petaluma/E5B1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B2-ornamentPrecompAppoggTrill.xml b/data/Petaluma/E5B2-ornamentPrecompAppoggTrill.xml deleted file mode 100644 index f38478b871a..00000000000 --- a/data/Petaluma/E5B2-ornamentPrecompAppoggTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B2.xml b/data/Petaluma/E5B2.xml new file mode 100644 index 00000000000..a2a4e810799 --- /dev/null +++ b/data/Petaluma/E5B2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B3-ornamentPrecompAppoggTrillSuffix.xml b/data/Petaluma/E5B3-ornamentPrecompAppoggTrillSuffix.xml deleted file mode 100644 index ee45ce19636..00000000000 --- a/data/Petaluma/E5B3-ornamentPrecompAppoggTrillSuffix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B3.xml b/data/Petaluma/E5B3.xml new file mode 100644 index 00000000000..fc5342ec3bf --- /dev/null +++ b/data/Petaluma/E5B3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B4-ornamentPrecompTurnTrillDAnglebert.xml b/data/Petaluma/E5B4-ornamentPrecompTurnTrillDAnglebert.xml deleted file mode 100644 index e5839e0bfda..00000000000 --- a/data/Petaluma/E5B4-ornamentPrecompTurnTrillDAnglebert.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B4.xml b/data/Petaluma/E5B4.xml new file mode 100644 index 00000000000..ecde004b234 --- /dev/null +++ b/data/Petaluma/E5B4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B5-ornamentPrecompSlideTrillDAnglebert.xml b/data/Petaluma/E5B5-ornamentPrecompSlideTrillDAnglebert.xml deleted file mode 100644 index bf305e04bbb..00000000000 --- a/data/Petaluma/E5B5-ornamentPrecompSlideTrillDAnglebert.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B5.xml b/data/Petaluma/E5B5.xml new file mode 100644 index 00000000000..b3d84dc5454 --- /dev/null +++ b/data/Petaluma/E5B5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B6-ornamentPrecompSlideTrillMarpurg.xml b/data/Petaluma/E5B6-ornamentPrecompSlideTrillMarpurg.xml deleted file mode 100644 index cfc842abf45..00000000000 --- a/data/Petaluma/E5B6-ornamentPrecompSlideTrillMarpurg.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B6.xml b/data/Petaluma/E5B6.xml new file mode 100644 index 00000000000..6330cbdaf78 --- /dev/null +++ b/data/Petaluma/E5B6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B7-ornamentPrecompTurnTrillBach.xml b/data/Petaluma/E5B7-ornamentPrecompTurnTrillBach.xml deleted file mode 100644 index ef403350cd6..00000000000 --- a/data/Petaluma/E5B7-ornamentPrecompTurnTrillBach.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B7.xml b/data/Petaluma/E5B7.xml new file mode 100644 index 00000000000..a5c08ddd14f --- /dev/null +++ b/data/Petaluma/E5B7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B8-ornamentPrecompSlideTrillBach.xml b/data/Petaluma/E5B8-ornamentPrecompSlideTrillBach.xml deleted file mode 100644 index 8957e1fdf3b..00000000000 --- a/data/Petaluma/E5B8-ornamentPrecompSlideTrillBach.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B8.xml b/data/Petaluma/E5B8.xml new file mode 100644 index 00000000000..ee8bbd777a6 --- /dev/null +++ b/data/Petaluma/E5B8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5B9-ornamentPrecompSlideTrillMuffat.xml b/data/Petaluma/E5B9-ornamentPrecompSlideTrillMuffat.xml deleted file mode 100644 index 4ffa5d8cadc..00000000000 --- a/data/Petaluma/E5B9-ornamentPrecompSlideTrillMuffat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5B9.xml b/data/Petaluma/E5B9.xml new file mode 100644 index 00000000000..538bede4c2b --- /dev/null +++ b/data/Petaluma/E5B9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml b/data/Petaluma/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml deleted file mode 100644 index dfbf4648741..00000000000 --- a/data/Petaluma/E5BA-ornamentPrecompSlideTrillSuffixMuffat.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5BA.xml b/data/Petaluma/E5BA.xml new file mode 100644 index 00000000000..ac4e527b865 --- /dev/null +++ b/data/Petaluma/E5BA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5BB-ornamentPrecompTrillSuffixDandrieu.xml b/data/Petaluma/E5BB-ornamentPrecompTrillSuffixDandrieu.xml deleted file mode 100644 index 94e9f55c772..00000000000 --- a/data/Petaluma/E5BB-ornamentPrecompTrillSuffixDandrieu.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5BB.xml b/data/Petaluma/E5BB.xml new file mode 100644 index 00000000000..30514c3d25f --- /dev/null +++ b/data/Petaluma/E5BB.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5BC-ornamentPrecompPortDeVoixMordent.xml b/data/Petaluma/E5BC-ornamentPrecompPortDeVoixMordent.xml deleted file mode 100644 index dd98bd54a51..00000000000 --- a/data/Petaluma/E5BC-ornamentPrecompPortDeVoixMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5BC.xml b/data/Petaluma/E5BC.xml new file mode 100644 index 00000000000..0251abfecf1 --- /dev/null +++ b/data/Petaluma/E5BC.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5BD-ornamentPrecompTrillWithMordent.xml b/data/Petaluma/E5BD-ornamentPrecompTrillWithMordent.xml deleted file mode 100644 index 825fcd333a4..00000000000 --- a/data/Petaluma/E5BD-ornamentPrecompTrillWithMordent.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5BD.xml b/data/Petaluma/E5BD.xml new file mode 100644 index 00000000000..182fd6e06ae --- /dev/null +++ b/data/Petaluma/E5BD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5BE-ornamentPrecompCadence.xml b/data/Petaluma/E5BE-ornamentPrecompCadence.xml deleted file mode 100644 index 06481d825af..00000000000 --- a/data/Petaluma/E5BE-ornamentPrecompCadence.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5BE.xml b/data/Petaluma/E5BE.xml new file mode 100644 index 00000000000..59898b6f75a --- /dev/null +++ b/data/Petaluma/E5BE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5BF-ornamentPrecompCadenceWithTurn.xml b/data/Petaluma/E5BF-ornamentPrecompCadenceWithTurn.xml deleted file mode 100644 index 6a7c4a46473..00000000000 --- a/data/Petaluma/E5BF-ornamentPrecompCadenceWithTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5BF.xml b/data/Petaluma/E5BF.xml new file mode 100644 index 00000000000..6d22abd4052 --- /dev/null +++ b/data/Petaluma/E5BF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml b/data/Petaluma/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml deleted file mode 100644 index f6add93d24d..00000000000 --- a/data/Petaluma/E5C0-ornamentPrecompDoubleCadenceLowerPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C0.xml b/data/Petaluma/E5C0.xml new file mode 100644 index 00000000000..92efc8aec2b --- /dev/null +++ b/data/Petaluma/E5C0.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C1-ornamentPrecompCadenceUpperPrefix.xml b/data/Petaluma/E5C1-ornamentPrecompCadenceUpperPrefix.xml deleted file mode 100644 index 3fe9676025e..00000000000 --- a/data/Petaluma/E5C1-ornamentPrecompCadenceUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C1.xml b/data/Petaluma/E5C1.xml new file mode 100644 index 00000000000..958f626fbed --- /dev/null +++ b/data/Petaluma/E5C1.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml b/data/Petaluma/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml deleted file mode 100644 index 2309f193f3c..00000000000 --- a/data/Petaluma/E5C2-ornamentPrecompCadenceUpperPrefixTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C2.xml b/data/Petaluma/E5C2.xml new file mode 100644 index 00000000000..9a6de9afb05 --- /dev/null +++ b/data/Petaluma/E5C2.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml b/data/Petaluma/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml deleted file mode 100644 index ee35c233eb4..00000000000 --- a/data/Petaluma/E5C3-ornamentPrecompDoubleCadenceUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C3.xml b/data/Petaluma/E5C3.xml new file mode 100644 index 00000000000..d6ef04e8d95 --- /dev/null +++ b/data/Petaluma/E5C3.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml b/data/Petaluma/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml deleted file mode 100644 index 11e838c91de..00000000000 --- a/data/Petaluma/E5C4-ornamentPrecompDoubleCadenceUpperPrefixTurn.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C4.xml b/data/Petaluma/E5C4.xml new file mode 100644 index 00000000000..8d873b386af --- /dev/null +++ b/data/Petaluma/E5C4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C5-ornamentPrecompMordentRelease.xml b/data/Petaluma/E5C5-ornamentPrecompMordentRelease.xml deleted file mode 100644 index ddee489bc40..00000000000 --- a/data/Petaluma/E5C5-ornamentPrecompMordentRelease.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C5.xml b/data/Petaluma/E5C5.xml new file mode 100644 index 00000000000..7821cb272e2 --- /dev/null +++ b/data/Petaluma/E5C5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C6-ornamentPrecompMordentUpperPrefix.xml b/data/Petaluma/E5C6-ornamentPrecompMordentUpperPrefix.xml deleted file mode 100644 index 7e7b2b5ec46..00000000000 --- a/data/Petaluma/E5C6-ornamentPrecompMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C6.xml b/data/Petaluma/E5C6.xml new file mode 100644 index 00000000000..62538bb6000 --- /dev/null +++ b/data/Petaluma/E5C6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml b/data/Petaluma/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml deleted file mode 100644 index 6fba4d0842a..00000000000 --- a/data/Petaluma/E5C7-ornamentPrecompInvertedMordentUpperPrefix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C7.xml b/data/Petaluma/E5C7.xml new file mode 100644 index 00000000000..1770a0f2bde --- /dev/null +++ b/data/Petaluma/E5C7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5C8-ornamentPrecompTrillLowerSuffix.xml b/data/Petaluma/E5C8-ornamentPrecompTrillLowerSuffix.xml deleted file mode 100644 index 43affb3ce57..00000000000 --- a/data/Petaluma/E5C8-ornamentPrecompTrillLowerSuffix.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5C8.xml b/data/Petaluma/E5C8.xml new file mode 100644 index 00000000000..6b094cdf3ff --- /dev/null +++ b/data/Petaluma/E5C8.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5E5-brassMuteClosed.xml b/data/Petaluma/E5E5-brassMuteClosed.xml deleted file mode 100644 index 1c3700121c0..00000000000 --- a/data/Petaluma/E5E5-brassMuteClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5E5.xml b/data/Petaluma/E5E5.xml new file mode 100644 index 00000000000..2331b5ae355 --- /dev/null +++ b/data/Petaluma/E5E5.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5E6-brassMuteHalfClosed.xml b/data/Petaluma/E5E6-brassMuteHalfClosed.xml deleted file mode 100644 index d3e576bb86b..00000000000 --- a/data/Petaluma/E5E6-brassMuteHalfClosed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5E6.xml b/data/Petaluma/E5E6.xml new file mode 100644 index 00000000000..f8fad0ea687 --- /dev/null +++ b/data/Petaluma/E5E6.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E5E7-brassMuteOpen.xml b/data/Petaluma/E5E7-brassMuteOpen.xml deleted file mode 100644 index 6977c8ceaf0..00000000000 --- a/data/Petaluma/E5E7-brassMuteOpen.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E5E7.xml b/data/Petaluma/E5E7.xml new file mode 100644 index 00000000000..859977dcadb --- /dev/null +++ b/data/Petaluma/E5E7.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E610-stringsDownBow.xml b/data/Petaluma/E610-stringsDownBow.xml deleted file mode 100644 index 83686c6f59a..00000000000 --- a/data/Petaluma/E610-stringsDownBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E610.xml b/data/Petaluma/E610.xml new file mode 100644 index 00000000000..c27cc13e675 --- /dev/null +++ b/data/Petaluma/E610.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E611-stringsDownBowTurned.xml b/data/Petaluma/E611-stringsDownBowTurned.xml deleted file mode 100644 index ba47f07ca3e..00000000000 --- a/data/Petaluma/E611-stringsDownBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E611.xml b/data/Petaluma/E611.xml new file mode 100644 index 00000000000..22a485aa88c --- /dev/null +++ b/data/Petaluma/E611.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E612-stringsUpBow.xml b/data/Petaluma/E612-stringsUpBow.xml deleted file mode 100644 index 359e4abb463..00000000000 --- a/data/Petaluma/E612-stringsUpBow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E612.xml b/data/Petaluma/E612.xml new file mode 100644 index 00000000000..9ff444328f5 --- /dev/null +++ b/data/Petaluma/E612.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E613-stringsUpBowTurned.xml b/data/Petaluma/E613-stringsUpBowTurned.xml deleted file mode 100644 index 654a4152e83..00000000000 --- a/data/Petaluma/E613-stringsUpBowTurned.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E613.xml b/data/Petaluma/E613.xml new file mode 100644 index 00000000000..bbe25b81533 --- /dev/null +++ b/data/Petaluma/E613.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E614-stringsHarmonic.xml b/data/Petaluma/E614-stringsHarmonic.xml deleted file mode 100644 index b7ac3306da6..00000000000 --- a/data/Petaluma/E614-stringsHarmonic.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E614.xml b/data/Petaluma/E614.xml new file mode 100644 index 00000000000..39894d6a32f --- /dev/null +++ b/data/Petaluma/E614.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E630-pluckedSnapPizzicatoBelow.xml b/data/Petaluma/E630-pluckedSnapPizzicatoBelow.xml deleted file mode 100644 index 4a6f3e0150d..00000000000 --- a/data/Petaluma/E630-pluckedSnapPizzicatoBelow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E630.xml b/data/Petaluma/E630.xml new file mode 100644 index 00000000000..0bf7f685721 --- /dev/null +++ b/data/Petaluma/E630.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E631-pluckedSnapPizzicatoAbove.xml b/data/Petaluma/E631-pluckedSnapPizzicatoAbove.xml deleted file mode 100644 index ffb7f0f8784..00000000000 --- a/data/Petaluma/E631-pluckedSnapPizzicatoAbove.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E631.xml b/data/Petaluma/E631.xml new file mode 100644 index 00000000000..2c4cc9cee05 --- /dev/null +++ b/data/Petaluma/E631.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E632-pluckedBuzzPizzicato.xml b/data/Petaluma/E632-pluckedBuzzPizzicato.xml deleted file mode 100644 index 2655abbaba6..00000000000 --- a/data/Petaluma/E632-pluckedBuzzPizzicato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E632.xml b/data/Petaluma/E632.xml new file mode 100644 index 00000000000..eb68d0f9645 --- /dev/null +++ b/data/Petaluma/E632.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E633-pluckedLeftHandPizzicato.xml b/data/Petaluma/E633-pluckedLeftHandPizzicato.xml deleted file mode 100644 index 7f278fbf1f0..00000000000 --- a/data/Petaluma/E633-pluckedLeftHandPizzicato.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E633.xml b/data/Petaluma/E633.xml new file mode 100644 index 00000000000..668fa46876c --- /dev/null +++ b/data/Petaluma/E633.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E638-pluckedDamp.xml b/data/Petaluma/E638-pluckedDamp.xml deleted file mode 100644 index 0d1672da495..00000000000 --- a/data/Petaluma/E638-pluckedDamp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E638.xml b/data/Petaluma/E638.xml new file mode 100644 index 00000000000..4d8fce5bf0a --- /dev/null +++ b/data/Petaluma/E638.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E645-vocalSprechgesang.xml b/data/Petaluma/E645-vocalSprechgesang.xml deleted file mode 100644 index 4f0c9ce30f1..00000000000 --- a/data/Petaluma/E645-vocalSprechgesang.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E645.xml b/data/Petaluma/E645.xml new file mode 100644 index 00000000000..b05084a66c3 --- /dev/null +++ b/data/Petaluma/E645.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E650-keyboardPedalPed.xml b/data/Petaluma/E650-keyboardPedalPed.xml deleted file mode 100644 index 09000408e46..00000000000 --- a/data/Petaluma/E650-keyboardPedalPed.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E650.xml b/data/Petaluma/E650.xml new file mode 100644 index 00000000000..0abd8c57632 --- /dev/null +++ b/data/Petaluma/E650.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E651-keyboardPedalP.xml b/data/Petaluma/E651-keyboardPedalP.xml deleted file mode 100644 index 6fbfc9f5a6d..00000000000 --- a/data/Petaluma/E651-keyboardPedalP.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E651.xml b/data/Petaluma/E651.xml new file mode 100644 index 00000000000..e3b0e4ebe44 --- /dev/null +++ b/data/Petaluma/E651.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E655-keyboardPedalUp.xml b/data/Petaluma/E655-keyboardPedalUp.xml deleted file mode 100644 index dc52d20bb69..00000000000 --- a/data/Petaluma/E655-keyboardPedalUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E655.xml b/data/Petaluma/E655.xml new file mode 100644 index 00000000000..28992272f28 --- /dev/null +++ b/data/Petaluma/E655.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E659-keyboardPedalSost.xml b/data/Petaluma/E659-keyboardPedalSost.xml deleted file mode 100644 index e0a7ccd42ac..00000000000 --- a/data/Petaluma/E659-keyboardPedalSost.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E659.xml b/data/Petaluma/E659.xml new file mode 100644 index 00000000000..9efc3de2d79 --- /dev/null +++ b/data/Petaluma/E659.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E65A-keyboardPedalS.xml b/data/Petaluma/E65A-keyboardPedalS.xml deleted file mode 100644 index d8215e364d6..00000000000 --- a/data/Petaluma/E65A-keyboardPedalS.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E65A.xml b/data/Petaluma/E65A.xml new file mode 100644 index 00000000000..3ffb34d33c4 --- /dev/null +++ b/data/Petaluma/E65A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E880-tuplet0.xml b/data/Petaluma/E880-tuplet0.xml deleted file mode 100644 index e8271f87a65..00000000000 --- a/data/Petaluma/E880-tuplet0.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E880.xml b/data/Petaluma/E880.xml new file mode 100644 index 00000000000..284a01ac5c3 --- /dev/null +++ b/data/Petaluma/E880.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E881-tuplet1.xml b/data/Petaluma/E881-tuplet1.xml deleted file mode 100644 index 4ff4effd11f..00000000000 --- a/data/Petaluma/E881-tuplet1.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E881.xml b/data/Petaluma/E881.xml new file mode 100644 index 00000000000..9848145dcca --- /dev/null +++ b/data/Petaluma/E881.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E882-tuplet2.xml b/data/Petaluma/E882-tuplet2.xml deleted file mode 100644 index 2958619fa36..00000000000 --- a/data/Petaluma/E882-tuplet2.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E882.xml b/data/Petaluma/E882.xml new file mode 100644 index 00000000000..65e7fb9776d --- /dev/null +++ b/data/Petaluma/E882.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E883-tuplet3.xml b/data/Petaluma/E883-tuplet3.xml deleted file mode 100644 index e48dfb0e5be..00000000000 --- a/data/Petaluma/E883-tuplet3.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E883.xml b/data/Petaluma/E883.xml new file mode 100644 index 00000000000..2c22e5829d3 --- /dev/null +++ b/data/Petaluma/E883.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E884-tuplet4.xml b/data/Petaluma/E884-tuplet4.xml deleted file mode 100644 index bbb531d7645..00000000000 --- a/data/Petaluma/E884-tuplet4.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E884.xml b/data/Petaluma/E884.xml new file mode 100644 index 00000000000..8770c9b0ede --- /dev/null +++ b/data/Petaluma/E884.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E885-tuplet5.xml b/data/Petaluma/E885-tuplet5.xml deleted file mode 100644 index 99c45178f7f..00000000000 --- a/data/Petaluma/E885-tuplet5.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E885.xml b/data/Petaluma/E885.xml new file mode 100644 index 00000000000..5f42d98adee --- /dev/null +++ b/data/Petaluma/E885.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E886-tuplet6.xml b/data/Petaluma/E886-tuplet6.xml deleted file mode 100644 index b200c5e9fdd..00000000000 --- a/data/Petaluma/E886-tuplet6.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E886.xml b/data/Petaluma/E886.xml new file mode 100644 index 00000000000..ad120251dbc --- /dev/null +++ b/data/Petaluma/E886.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E887-tuplet7.xml b/data/Petaluma/E887-tuplet7.xml deleted file mode 100644 index 17a609c889d..00000000000 --- a/data/Petaluma/E887-tuplet7.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E887.xml b/data/Petaluma/E887.xml new file mode 100644 index 00000000000..f9454203688 --- /dev/null +++ b/data/Petaluma/E887.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E888-tuplet8.xml b/data/Petaluma/E888-tuplet8.xml deleted file mode 100644 index 0608d2b1558..00000000000 --- a/data/Petaluma/E888-tuplet8.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E888.xml b/data/Petaluma/E888.xml new file mode 100644 index 00000000000..6132d5ae0cb --- /dev/null +++ b/data/Petaluma/E888.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E889-tuplet9.xml b/data/Petaluma/E889-tuplet9.xml deleted file mode 100644 index ae22879c335..00000000000 --- a/data/Petaluma/E889-tuplet9.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E889.xml b/data/Petaluma/E889.xml new file mode 100644 index 00000000000..bcea5cf17d4 --- /dev/null +++ b/data/Petaluma/E889.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E88A-tupletColon.xml b/data/Petaluma/E88A-tupletColon.xml deleted file mode 100644 index 2409d784f92..00000000000 --- a/data/Petaluma/E88A-tupletColon.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E88A.xml b/data/Petaluma/E88A.xml new file mode 100644 index 00000000000..b0d9c9541b3 --- /dev/null +++ b/data/Petaluma/E88A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E938-mensuralNoteheadSemibrevisBlack.xml b/data/Petaluma/E938-mensuralNoteheadSemibrevisBlack.xml deleted file mode 100644 index cf07560106d..00000000000 --- a/data/Petaluma/E938-mensuralNoteheadSemibrevisBlack.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E938.xml b/data/Petaluma/E938.xml new file mode 100644 index 00000000000..b930c986864 --- /dev/null +++ b/data/Petaluma/E938.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E939-mensuralNoteheadSemibrevisVoid.xml b/data/Petaluma/E939-mensuralNoteheadSemibrevisVoid.xml deleted file mode 100644 index b45f0675fd2..00000000000 --- a/data/Petaluma/E939-mensuralNoteheadSemibrevisVoid.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E939.xml b/data/Petaluma/E939.xml new file mode 100644 index 00000000000..1423ea61a3c --- /dev/null +++ b/data/Petaluma/E939.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E93C-mensuralNoteheadMinimaWhite.xml b/data/Petaluma/E93C-mensuralNoteheadMinimaWhite.xml deleted file mode 100644 index ac943dc3621..00000000000 --- a/data/Petaluma/E93C-mensuralNoteheadMinimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E93C.xml b/data/Petaluma/E93C.xml new file mode 100644 index 00000000000..0a528eb9d30 --- /dev/null +++ b/data/Petaluma/E93C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E93D-mensuralNoteheadSemiminimaWhite.xml b/data/Petaluma/E93D-mensuralNoteheadSemiminimaWhite.xml deleted file mode 100644 index 9bbc8dab90d..00000000000 --- a/data/Petaluma/E93D-mensuralNoteheadSemiminimaWhite.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E93D.xml b/data/Petaluma/E93D.xml new file mode 100644 index 00000000000..4bc3e5c8b33 --- /dev/null +++ b/data/Petaluma/E93D.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E93E-mensuralCombStemUp.xml b/data/Petaluma/E93E-mensuralCombStemUp.xml deleted file mode 100644 index b3f2e5f6aa8..00000000000 --- a/data/Petaluma/E93E-mensuralCombStemUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E93E.xml b/data/Petaluma/E93E.xml new file mode 100644 index 00000000000..4e5fcbe4288 --- /dev/null +++ b/data/Petaluma/E93E.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E93F-mensuralCombStemDown.xml b/data/Petaluma/E93F-mensuralCombStemDown.xml deleted file mode 100644 index 7f158813bca..00000000000 --- a/data/Petaluma/E93F-mensuralCombStemDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E93F.xml b/data/Petaluma/E93F.xml new file mode 100644 index 00000000000..fd01e3a5f20 --- /dev/null +++ b/data/Petaluma/E93F.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E949-mensuralCombStemUpFlagSemiminima.xml b/data/Petaluma/E949-mensuralCombStemUpFlagSemiminima.xml deleted file mode 100644 index efb43cf565e..00000000000 --- a/data/Petaluma/E949-mensuralCombStemUpFlagSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E949.xml b/data/Petaluma/E949.xml new file mode 100644 index 00000000000..0ebd82b9e4c --- /dev/null +++ b/data/Petaluma/E949.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E94A-mensuralCombStemDownFlagSemiminima.xml b/data/Petaluma/E94A-mensuralCombStemDownFlagSemiminima.xml deleted file mode 100644 index ed7b25dd8c4..00000000000 --- a/data/Petaluma/E94A-mensuralCombStemDownFlagSemiminima.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E94A.xml b/data/Petaluma/E94A.xml new file mode 100644 index 00000000000..ae1f94a046d --- /dev/null +++ b/data/Petaluma/E94A.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E94B-mensuralCombStemUpFlagFusa.xml b/data/Petaluma/E94B-mensuralCombStemUpFlagFusa.xml deleted file mode 100644 index b18018df0cd..00000000000 --- a/data/Petaluma/E94B-mensuralCombStemUpFlagFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E94B.xml b/data/Petaluma/E94B.xml new file mode 100644 index 00000000000..a880ac235b4 --- /dev/null +++ b/data/Petaluma/E94B.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/E94C-mensuralCombStemDownFlagFusa.xml b/data/Petaluma/E94C-mensuralCombStemDownFlagFusa.xml deleted file mode 100644 index 6a1ddaaa664..00000000000 --- a/data/Petaluma/E94C-mensuralCombStemDownFlagFusa.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/E94C.xml b/data/Petaluma/E94C.xml new file mode 100644 index 00000000000..7b25e47a03f --- /dev/null +++ b/data/Petaluma/E94C.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/EAA4-wiggleTrill.xml b/data/Petaluma/EAA4-wiggleTrill.xml deleted file mode 100644 index 641b12e58c2..00000000000 --- a/data/Petaluma/EAA4-wiggleTrill.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/EAA4.xml b/data/Petaluma/EAA4.xml new file mode 100644 index 00000000000..78bab80c589 --- /dev/null +++ b/data/Petaluma/EAA4.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/EAA9-wiggleArpeggiatoUp.xml b/data/Petaluma/EAA9-wiggleArpeggiatoUp.xml deleted file mode 100644 index 1a7353aa075..00000000000 --- a/data/Petaluma/EAA9-wiggleArpeggiatoUp.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/EAA9.xml b/data/Petaluma/EAA9.xml new file mode 100644 index 00000000000..3e8971981c3 --- /dev/null +++ b/data/Petaluma/EAA9.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/EAAA-wiggleArpeggiatoDown.xml b/data/Petaluma/EAAA-wiggleArpeggiatoDown.xml deleted file mode 100644 index 81f41a743d3..00000000000 --- a/data/Petaluma/EAAA-wiggleArpeggiatoDown.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/EAAA.xml b/data/Petaluma/EAAA.xml new file mode 100644 index 00000000000..f4c376e924f --- /dev/null +++ b/data/Petaluma/EAAA.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/EAAD-wiggleArpeggiatoUpArrow.xml b/data/Petaluma/EAAD-wiggleArpeggiatoUpArrow.xml deleted file mode 100644 index be06ab229b7..00000000000 --- a/data/Petaluma/EAAD-wiggleArpeggiatoUpArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/EAAD.xml b/data/Petaluma/EAAD.xml new file mode 100644 index 00000000000..f51ecae2c17 --- /dev/null +++ b/data/Petaluma/EAAD.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/EAAE-wiggleArpeggiatoDownArrow.xml b/data/Petaluma/EAAE-wiggleArpeggiatoDownArrow.xml deleted file mode 100644 index 10006b42d52..00000000000 --- a/data/Petaluma/EAAE-wiggleArpeggiatoDownArrow.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/EAAE.xml b/data/Petaluma/EAAE.xml new file mode 100644 index 00000000000..03248967aca --- /dev/null +++ b/data/Petaluma/EAAE.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/Petaluma/EAAF-wiggleGlissando.xml b/data/Petaluma/EAAF-wiggleGlissando.xml deleted file mode 100644 index fd2a327bec0..00000000000 --- a/data/Petaluma/EAAF-wiggleGlissando.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/data/Petaluma/EAAF.xml b/data/Petaluma/EAAF.xml new file mode 100644 index 00000000000..849eaf602a0 --- /dev/null +++ b/data/Petaluma/EAAF.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/data/text/VerovioText-1.0.xml b/data/text/VerovioText-1.0.xml index 580193a475e..d0df9ec77ea 100644 --- a/data/text/VerovioText-1.0.xml +++ b/data/text/VerovioText-1.0.xml @@ -1,86 +1,83 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/woff.xml b/data/woff.xml index 5f06c67d5e4..2b5daa1c7b1 100644 --- a/data/woff.xml +++ b/data/woff.xml @@ -1,7 +1,7 @@