User Tools

Site Tools


openstagecontrol

This is an old revision of the document!


grandma msc

/*
sysex = f0 7f 70 02 01 01 31 2e 30 30 30 f7
univeral sysex = 127
device id = 112
msc = 2
command format = 1
command = 1
fader = 49
fader page = 46
fine value = 48
coarse value = 48

sysex = f0 7f 70 02 01 0a 30 2e 30 30 30 f7
univeral sysex = 127
device id = 112
msc = 2
command format = 1
command = 10
fader = 48
fader page = 46
fine value = 48
coarse value = 48

f0 7f usiversal sysex
70 device id
02 msc
01 command format (01 = general lighting)
0a command
30 2e 30 30 30 data
f7 end

=========== go 2.0 exec 2.1 ===========
0 f0 (240)
1 7f (127) universal sysex
2 7f (127) device id
3 02 (2) msc
4 01 (1) command format
5 01 (1) command
6 32 (50) ascii 2
7 2e (46) ascii .
8 30 (48) ascii 0
9 30 (48) ascii 0
10 30 (48) ascii 0
11 00 (0) ascii null
12 32 (50) ascii 2
13 2e (46) ascii .
14 31 (49) ascii 1
15 f7 (247)

=========== go 1.0 exec 2.1 ===========
0 f0 (240)
1 7f (127) universal sysex
2 7f (127) device id
3 02 (2) msc
4 01 (1) command format
5 01 (1) command (1 = goto)
6 31 (49) ascii 1
7 2e (46) ascii .
8 30 (48) ascii 0
9 30 (48) ascii 0
10 30 (48) ascii 0
11 00 (0) ascii null
12 32 (50) ascii 2
13 2e (46) ascii .
14 31 (49) ascii 1
15 f7 (247)

=========== goto 1.0 exec 2.1 ===========
0 f0 (240)
1 7f (127) universal sysex
2 7f (127) device id
3 02 (2) msc
4 01 (1) command format
5 01 (1) command (1 = goto)
6 31 (49) ascii 1
7 2e (46) .
8 30 (48) ascii 0
9 30 (48) ascii 0
10 30 (48) ascii 0
11 00 (0) ascii null
12 32 (50) ascii 2
13 2e (46) .
14 31 (49) ascii 1
15 f7 (247)

=========== off exec 2.1 ==============
0 f0 (240)
1 7f (127) universal sysex
2 7f (127) device id (127)
3 02 (2) msc
4 01 (1) command format (01 = general lighting)
5 0a (10) command (10)
6 30 (48) ascii 0
7 2e (46) .
8 30 (48) ascii 0
9 30 (48) ascii 0
10 30 (48) ascii 0
11 00 (0) ascii null
12 32 (50) ascii 2
13 2e (46) .
14 31 (49) ascii 1
15 f7 (247)

========= fader move ===============
0 f0
1 7f universal sysex
2 70 device id
3 02 msc
4 01 command format (01 = general lighting)
5 06 command (06 = set)
6 00 fader 1
7 01 page 1
8 7f 127 fine
9 7f 127 coarse
10 f7

fader value :
fader @45% =
45 * 1.28 = 57.6
coarse = 57
06 * 128 = 76.8
fine = 76
inverse =
Math.floor((new_fine_value + coarse_value) / 1.28)

osc address : /sysex
osc target : midi:gma_in
*/

INPUT_MIDI_DEVICE_NAME = 'gma_out';
OUTPUT_MIDI_DEVICE_NAME = 'gma_in';
DEBUG = true;

function faderToHex(fader_value) {
  var temp_coarse = fader_value * 1.28;
  var coarse = Math.floor(temp_coarse);
  var coarse_hex = coarse.toString(16);
  if (coarse < 16) coarse_hex = "0"+ coarse_hex;

  var coarse_decimals = (temp_coarse %1).toFixed(2);
  var temp_fine = coarse_decimals * 128;
  var fine = Math.floor(temp_fine);
  var fine_hex = fine.toString(16);
  if (fine < 16) fine_hex = "0"+ fine_hex;

  return {
    'coarse': coarse_hex,
    'fine': fine_hex
  }
}

function hexToFader(coarse, fine) {
  return Math.floor(((fine / 128) + coarse) / 1.28);
}

function moveOSCFader(host, port, address, args) {
  if (!(host === 'midi' && address === '/sysex' && port === INPUT_MIDI_DEVICE_NAME)) return;

  // hexadecimal string value
  
  var sysex_string = args[0].value
  if (DEBUG) console.log("sysex = " + sysex_string);

  // convert string to array of integers
  var ints = sysex_string.split(" ").map(x=>parseInt(x, 16))

  // parse items
  var [
    sysex_start,
    universal_sysex,
    device_id,
    msc,
    command_format,
    command,
    fader,
    fader_page,
    fine_value,
    coarse_value,
    sysex_end
  ] = ints;

  // if command = set
  if (command == 6) {
    var fader_percent = hexToFader(coarse_value, fine_value);
    if (DEBUG) console.log("fader percent = "+ fader_percent);
    receive("/fader_"+fader,fader_percent);
  }
  return true;
}

function moveMaFader(host, port, address, args) {
  if (host !== 'midi' || port !== OUTPUT_MIDI_DEVICE_NAME || address == '/note') return
  var fader_id = parseInt(address.substr(7)),
      fader_value = Math.ceil(args[0].value),
      outArgs = [];

  var fader_id_hex = fader_id.toString(16);
  if (fader_id < 16) fader_id_hex = "0"+ fader_id_hex;

  var hex_values = faderToHex(fader_value);
  var sysex = 'f0 7f 70 02 01 06 '+ fader_id_hex+ ' 01 '+ hex_values.fine+ ' '+ hex_values.coarse+ ' f7';

  send('midi', OUTPUT_MIDI_DEVICE_NAME, '/sysex', sysex);
  return true;
}

module.exports = {
    
  oscInFilter: (data)=>{
    if (DEBUG) console.log("in data : "+ JSON.stringify(data, null, 2));
    var {host, port, address, args} = data;
    if (moveOSCFader(host, port, address, args)) return;
    return data
  },

  oscOutFilter: (data)=>{
    var {host, port, address, args} = data;
    if (moveMaFader(host, port, address, args)) return;
    return data;
  }
  
}

faders
{
  "createdWith": "Open Stage Control",
  "version": "1.22.0",
  "type": "session",
  "content": {
    "type": "root",
    "lock": false,
    "id": "root",
    "visible": true,
    "interaction": true,
    "comments": "",
    "width": "auto",
    "height": "auto",
    "colorText": "auto",
    "colorWidget": "auto",
    "alphaFillOn": "auto",
    "borderRadius": "auto",
    "padding": "auto",
    "html": "",
    "css": "",
    "colorBg": "auto",
    "layout": "default",
    "justify": "start",
    "gridTemplate": "",
    "contain": true,
    "scroll": true,
    "innerPadding": true,
    "verticalTabs": false,
    "hideMenu": false,
    "variables": "@{parent.variables}",
    "traversing": false,
    "value": "",
    "default": "",
    "linkId": "",
    "address": "auto",
    "preArgs": "",
    "typeTags": "",
    "decimals": 2,
    "target": "",
    "ignoreDefaults": false,
    "bypass": false,
    "onCreate": "",
    "onValue": "",
    "widgets": [
      {
        "type": "fader",
        "top": 120,
        "left": 10,
        "lock": false,
        "id": "fader_1",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 70,
        "lock": false,
        "id": "fader_2",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 130,
        "lock": false,
        "id": "fader_3",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 190,
        "lock": false,
        "id": "fader_4",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 250,
        "lock": false,
        "id": "fader_5",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 310,
        "lock": false,
        "id": "fader_6",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 370,
        "lock": false,
        "id": "fader_7",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 430,
        "lock": false,
        "id": "fader_8",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 490,
        "lock": false,
        "id": "fader_9",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 120,
        "left": 550,
        "lock": false,
        "id": "fader_10",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 10,
        "lock": false,
        "id": "fader_11",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 70,
        "lock": false,
        "id": "fader_12",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 130,
        "lock": false,
        "id": "fader_13",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 190,
        "lock": false,
        "id": "fader_14",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 250,
        "lock": false,
        "id": "fader_15",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 310,
        "lock": false,
        "id": "fader_16",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 370,
        "lock": false,
        "id": "fader_17",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 430,
        "lock": false,
        "id": "fader_18",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 490,
        "lock": false,
        "id": "fader_19",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "fader",
        "top": 480,
        "left": 550,
        "lock": false,
        "id": "fader_20",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": "auto",
        "height": "auto",
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "<div>@{this.value}</div>",
        "css": "",
        "design": "compact",
        "knobSize": "auto",
        "horizontal": false,
        "pips": false,
        "dashed": false,
        "gradient": [],
        "snap": false,
        "spring": false,
        "doubleTap": false,
        "range": {
          "min": 0,
          "max": 100
        },
        "logScale": false,
        "sensitivity": 1,
        "steps": "",
        "origin": "auto",
        "value": "",
        "default": "",
        "linkId": "",
        "address": "auto",
        "preArgs": "",
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": "",
        "onTouch": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 550,
        "lock": false,
        "id": "b_10",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          10
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 10,
        "lock": false,
        "id": "b_1",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          1
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 10,
        "lock": false,
        "id": "b_11",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          11
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 70,
        "lock": false,
        "id": "b_2",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          2
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 130,
        "lock": false,
        "id": "b_3",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          3
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 70,
        "lock": false,
        "id": "b_12",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          12
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 130,
        "lock": false,
        "id": "b_13",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          13
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 310,
        "lock": false,
        "id": "b_6",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          6
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 310,
        "lock": false,
        "id": "b_16",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          16
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 370,
        "lock": false,
        "id": "b_17",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          17
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 370,
        "lock": false,
        "id": "b_7",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          7
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 250,
        "lock": false,
        "id": "b_5",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          5
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 250,
        "lock": false,
        "id": "b_15",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          15
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 190,
        "lock": false,
        "id": "b_14",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          14
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 190,
        "lock": false,
        "id": "b_4",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          4
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 490,
        "lock": false,
        "id": "b_19",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          19
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 430,
        "lock": false,
        "id": "b_18",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          18
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 430,
        "lock": false,
        "id": "b_8",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          8
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 40,
        "left": 490,
        "lock": false,
        "id": "b_9",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          9
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 90,
        "left": 550,
        "lock": false,
        "id": "b_20",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          20
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 10,
        "lock": false,
        "id": "b_21",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          21
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 70,
        "lock": false,
        "id": "b_22",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          22
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 130,
        "lock": false,
        "id": "b_23",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          23
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 190,
        "lock": false,
        "id": "b_24",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          24
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 250,
        "lock": false,
        "id": "b_25",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          25
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 310,
        "lock": false,
        "id": "b_26",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          26
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 370,
        "lock": false,
        "id": "b_27",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          27
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 430,
        "lock": false,
        "id": "b_28",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          28
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 490,
        "lock": false,
        "id": "b_29",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          29
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 330,
        "left": 550,
        "lock": false,
        "id": "b_30",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          30
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 550,
        "lock": false,
        "id": "b_40",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          40
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 10,
        "lock": false,
        "id": "b_31",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          31
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 10,
        "lock": false,
        "id": "b_41",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          41
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 70,
        "lock": false,
        "id": "b_32",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          32
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 70,
        "lock": false,
        "id": "b_42",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          42
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 130,
        "lock": false,
        "id": "b_33",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          33
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 130,
        "lock": false,
        "id": "b_43",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          43
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 190,
        "lock": false,
        "id": "b_34",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          34
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 190,
        "lock": false,
        "id": "b_44",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          44
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 250,
        "lock": false,
        "id": "b_35",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          35
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 250,
        "lock": false,
        "id": "b_45",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          45
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 310,
        "lock": false,
        "id": "b_46",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          46
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 310,
        "lock": false,
        "id": "b_36",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          36
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 370,
        "lock": false,
        "id": "b_37",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          37
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 370,
        "lock": false,
        "id": "b_47",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          47
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 430,
        "lock": false,
        "id": "b_48",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          48
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 430,
        "lock": false,
        "id": "b_38",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          38
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 400,
        "left": 490,
        "lock": false,
        "id": "b_39",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          39
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 490,
        "lock": false,
        "id": "b_49",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          49
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 490,
        "lock": false,
        "id": "b_59",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          59
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 430,
        "lock": false,
        "id": "b_58",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          58
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 370,
        "lock": false,
        "id": "b_57",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          57
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 310,
        "lock": false,
        "id": "b_56",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          56
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 250,
        "lock": false,
        "id": "b_55",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          55
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 190,
        "lock": false,
        "id": "b_54",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          54
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 130,
        "lock": false,
        "id": "b_53",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          53
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 70,
        "lock": false,
        "id": "b_52",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          52
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 10,
        "lock": false,
        "id": "b_51",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          51
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 450,
        "left": 550,
        "lock": false,
        "id": "b_50",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          50
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      },
      {
        "type": "button",
        "top": 690,
        "left": 550,
        "lock": false,
        "id": "b_60",
        "visible": true,
        "interaction": true,
        "comments": "",
        "width": 50,
        "height": 40,
        "expand": "false",
        "colorText": "auto",
        "colorWidget": "auto",
        "colorStroke": "auto",
        "colorFill": "auto",
        "alphaStroke": "auto",
        "alphaFillOff": "auto",
        "alphaFillOn": "auto",
        "lineWidth": "auto",
        "borderRadius": "auto",
        "padding": "auto",
        "html": "",
        "css": "",
        "colorTextOn": "auto",
        "label": "auto",
        "vertical": false,
        "wrap": false,
        "on": 127,
        "off": 0,
        "mode": "push",
        "doubleTap": false,
        "decoupled": false,
        "value": "",
        "default": "",
        "linkId": "",
        "address": "/note",
        "preArgs": [
          1,
          60
        ],
        "typeTags": "",
        "decimals": 2,
        "target": "midi:gma_in",
        "ignoreDefaults": false,
        "bypass": false,
        "onCreate": "",
        "onValue": ""
      }
    ],
    "tabs": []
  }
}

openstagecontrol.1675257896.txt.gz · Last modified: by ssm2017