Ability to import/export user-defined motions as (JSON?) files

Just like with user-defined chord sets, I’d like the ability to be able to import and export user-defined motion patterns. Perhaps this could be a new feature of the MIDI Editor.

In the meantime, would you folks be open to exposing the JSON data used to define the motions as separate files on the file system (instead of embedding them within the Scaler 3 executable and blowing up the size of that file)? Functionality could be added to read such user-created content from a folder on the user’s hard drive. Is that reasonable and doable?

The current format for a song set looks like something folks could edit in a text editor; something along these lines might be the right way to go:

{
  "name": "Horror 1",
  "type": "song",
  "category": "Default",
  "source": "Scaler",
  "folder": "Song Sets",
  "subfolder": "Cinematic",
  "voicings": [
    {
      "intervals": [
        0,
        7,
        12,
        14
      ]
    },
    {
      "intervals": [
        0,
        7,
        12,
        15
      ]
    },
    {
      "intervals": [
        -4,
        -1,
        2,
        11
      ]
    },
    {
      "intervals": [
        -4,
        -1,
        2,
        14
      ]
    },
    {
      "intervals": [
        0,
        7,
        12,
        14
      ]
    },
    {
      "intervals": [
        0,
        7,
        12,
        15
      ]
    },
    {
      "intervals": [
        -2,
        1,
        5,
        13
      ]
    },
    {
      "intervals": [
        -3,
        0,
        4,
        12
      ]
    }
  ],
  "uuid": "1ca7e2f5-f5cd-45ba-895e-8e195a95721a"
}