From 6d628417a23d80f27ab076c07c2a796e490be95c Mon Sep 17 00:00:00 2001 From: Sema Date: Wed, 11 Oct 2023 00:52:23 -0400 Subject: [PATCH] Added umpProgram() --- README.md | 4 ++-- javascript/JZZ.js | 13 +++++++++++-- minified/JZZ.js | 2 +- package.json | 4 ++-- test/common.js | 10 +++++++++- web-midi-api/package.json | 2 +- 6 files changed, 26 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 5ec6927..b504dbb 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ by running `npm remove midi-test --save-dev`. ```html // the latest version, or - // any particular version + // any particular version //... ``` @@ -76,7 +76,7 @@ by running `npm remove midi-test --save-dev`. ```html // the latest version, or - // any particular version + // any particular version //... ``` diff --git a/javascript/JZZ.js b/javascript/JZZ.js index 2b7a9d8..ae4f0de 100644 --- a/javascript/JZZ.js +++ b/javascript/JZZ.js @@ -14,7 +14,7 @@ })(this, function() { var _scope = typeof window === 'undefined' ? global : window; - var _version = '1.7.1'; + var _version = '1.7.2'; var i, j, k, m, n; /* istanbul ignore next */ @@ -1899,7 +1899,7 @@ return _helperSX.sxScaleTuning2.call(this, a, v, c); }, sxGM: function(gm) { if (typeof gm == 'undefined') gm = 1; return [0xF0, 0x7E, this._sxid, 0x09, gm ? gm == 2 ? 3 : 1 : 2, 0xf7]; }, sxGS: function(arg) { var arr = typeof arg == 'undefined' ? [0x40, 0, 0x7F, 0] : arg instanceof Array ? arg : arguments; - var c = 0; var a = [0xF0, 0x41, this._sxid, 0x42, 0x12]; + var c = 0; var a = [0xf0, 0x41, this._sxid, 0x42, 0x12]; for (var i = 0; i < arr.length; i++) { var x = _7b(arr[i]); a.push(x); c += x; } c %= 128; a.push(c ? 128 - c : 0); a.push(0xf7); return a; }, sxXG: function(arg) { var arr = typeof arg == 'undefined' ? [0, 0, 0x7E, 0] : arg instanceof Array ? arg : arguments; @@ -3055,6 +3055,11 @@ v = v || 0; t = t || 0; a = a || 0; v = _16b(v); a = _16b(a); return [0x40 + _4b(g), 0x80 + _ch(c), _7bn(n), _8b(t), v >> 8, v & 255, a >> 8, a & 255]; + }, + umpProgram: function(g, c, n, msb, lsb) { + return typeof msb == 'undefined' && typeof lsb == 'undefined' ? + [0x40 + _4b(g), 0xc0 + _ch(c), 0, 0, _7bn(n), 0, 0, 0] : + [0x40 + _4b(g), 0xc0 + _ch(c), 0, 1, _7bn(n), 0, _7bn(msb), _7bn(lsb)]; } }; var _helperGCX = { @@ -3271,6 +3276,9 @@ UMP.prototype.getTimeSignature = function() { if (this.isTimeSignature()) return [this[4], 1 << this[5]]; }; + UMP.prototype.getTicksPQN = function() { + if (this.isTicksPQN()) return (this[2] << 8) + this[3]; + }; UMP.prototype.getDelta = function() { if (this.isDelta()) return ((this[1] & 15) << 16) + (this[2] << 8) + this[3]; }; @@ -3281,6 +3289,7 @@ UMP.prototype.isTimeSignature = function() { return (this[0] >> 4) == 13 && (this[1] >> 4) == 1 && this[2] == 0 && this[3] == 1; }; + UMP.prototype.isTicksPQN = function() { return this[0] == 0 && (this[1] >> 4) == 3; }; UMP.prototype.isDelta = function() { return this[0] == 0 && (this[1] >> 4) == 4; }; UMP.prototype.isStartClip = function() { return this.match([0xf0, 0x20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); }; UMP.prototype.isEndClip = function() { return this.match([0xf0, 0x21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); }; diff --git a/minified/JZZ.js b/minified/JZZ.js index 008790f..12b3b5b 100644 --- a/minified/JZZ.js +++ b/minified/JZZ.js @@ -1 +1 @@ -!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define("JZZ",[],n):(t=t||window).JZZ&&t.JZZ.MIDI||(t.JZZ=n())}(this,function(){var o,L,n,i,t="undefined"==typeof window?global:window,D="1.7.1",q=Date.now||function(){return(new Date).getTime()},G=q(),j="undefined"!=typeof performance&&performance.now?function(){return performance.now()}:function(){return q()-G},z=function(t){setTimeout(t,0)};function U(){}function a(t){return"function"==typeof t}function e(){(this._orig=this)._ready=!1,this._queue=[],this._log=[]}function V(t,n){this._bad?a(n)&&n.apply(this,[new Error(this._err())]):a(t)&&t.apply(this,[this])}function W(t,n){this._bad?t._crash(this._err()):setTimeout(function(){t._resume()},n)}function s(t){this._bad&&t._break(this._err()),t._resume()}function Z(t,e,r){t[r]=function(){var t=arguments,n=e._image();return this._push(s,[n]),n[r].apply(n,t)}}function J(t){this._bad||(a(t)?t.apply(this):console.log(t))}function X(t){this._bad&&(a(t)?t.apply(this):console.log(t))}function H(t){this._bad?t._crash(this._err()):(this._break("Closed"),t._resume())}function Q(t){if(t.length){var n,e=t.shift();t.length&&(n=this)._slip(X,[function(){Q.apply(n,[t])}]);try{this._repair(),e.apply(this)}catch(t){this._break(t.toString())}}else this._break()}function c(t,n){for(var e=0;e>1&3],(1&t[7])<<4|t[6],t[5]<<4|t[4],t[3]<<4|t[2],t[1]<<4|t[0]]}function Lt(t){for(var n,e=[],r=0;r=this.type&&(this.frame=this.type-1),this},m.prototype.setHour=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||24<=t)throw RangeError("Bad SMPTE hours value: "+t);return this.hour=t,this},m.prototype.setMinute=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||60<=t)throw RangeError("Bad SMPTE minutes value: "+t);return this.minute=t,kt.apply(this),this},m.prototype.setSecond=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||60<=t)throw RangeError("Bad SMPTE seconds value: "+t);return this.second=t,kt.apply(this),this},m.prototype.setFrame=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||t>=this.type)throw RangeError("Bad SMPTE frame number: "+t);return this.frame=t,kt.apply(this),this},m.prototype.setQuarter=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||8<=t)throw RangeError("Bad SMPTE quarter frame: "+t);return this.quarter=t,this},m.prototype.incrFrame=function(){return this.frame++,this.frame>=this.type&&(this.frame=0,this.second++,60<=this.second&&(this.second=0,this.minute++,60<=this.minute&&(this.minute=0,this.hour=23<=this.hour?0:this.hour+1))),kt.apply(this),this},m.prototype.decrFrame=function(){return!this.second&&2==this.frame&&29.97==this.type&&this.minute%10&&(this.frame=0),this.frame--,this.frame<0&&(this.frame=29.97==this.type?29:this.type-1,this.second--,this.second<0&&(this.second=59,this.minute--,this.minute<0&&(this.minute=59,this.hour=this.hour?this.hour-1:23))),this},m.prototype.incrQF=function(){return this.backwards=!1,this.quarter=this.quarter+1&7,0!=this.quarter&&4!=this.quarter||this.incrFrame(),this},m.prototype.decrQF=function(){return this.backwards=!0,this.quarter=this.quarter+7&7,3!=this.quarter&&7!=this.quarter||this.decrFrame(),this},m.prototype.read=function(t){return 240==(t=t instanceof _?t:_.apply(null,arguments))[0]&&127==t[1]&&1==t[3]&&1==t[4]&&247==t[9]?(this.type=[24,25,29.97,30][t[5]>>5&3],this.hour=31&t[5],this.minute=t[6],this.second=t[7],this.frame=t[8],this.quarter=0,this._=void 0,this._b=void 0,!(this._f=void 0)):241==t[0]&&void 0!==t[1]&&(n=t[1]>>4,e=15&t[1],0==n?7==this._&&(7==this._f&&(this.reset(Rt(this._a)),this.incrFrame()),this.incrFrame()):3==n?4==this._&&this.decrFrame():4==n?3==this._&&this.incrFrame():7==n&&0===this._&&(0===this._b&&(this.reset(Rt(this._a)),this.decrFrame()),this.decrFrame()),this._a||(this._a=[]),this._a[n]=e,this._f=this._f===n-1||0==n?n:void 0,this._b=this._b===1+n||7==n?n:void 0,this._=n,this.quarter=n,!0);var n,e},m.prototype.toString=function(){return Lt([this.hour,this.minute,this.second,this.frame])},g.SMPTE=m,r.prototype.SMPTE=m,_.prototype=[],_.prototype.constructor=_;var v={};function Dt(t){if(t!=parseFloat(t))throw TypeError("Not a number: "+t)}function qt(){}_.noteValue=function(t){return void 0===t?void 0:v[t.toString().toLowerCase()]},_.programValue=function(t){return t},_.octaveValue=function(t){var n=v[t.toString().toLowerCase()];return void 0===(n=void 0===n?v[t.toString().toLowerCase()+"1"]:n)?void 0:n%12},_.freq=function(t,n){return Dt(n=void 0===n?440:n),t!=parseFloat(t)&&(t=M(t)),n*Math.pow(2,(t-69)/12)},_.shift=function(t,n){return void 0===n&&(n=440),Dt(t),Dt(n),12*Math.log2(t/n)},_.midi=function(t,n){return t!=parseFloat(t)?M(t):_.shift(t,n)+69},_.to7b=function(t){return Dt(t),t<=0?0:1<=t?127:Math.floor(128*t)},_.to14b=function(t){return Dt(t),t<=0?0:1<=t?16383:Math.floor(16384*t)},_.to21b=function(t){return void 0===t?2097151:(Dt(t),t<=0?0:(t=(Math.floor(t)<<14)+_.to14b(t-Math.floor(t)))<2097151?t:2097150)},(qt.prototype=_)._sxid=127,_.sxId=function(t){if((t=void 0===t?_._sxid:t)==this._sxid)return this;t=C(t);var n=new qt;return n._ch=this._ch,n._sxid=t,n},_.ch=function(t){if(t==this._ch||void 0===t&&void 0===this._ch)return this;var n=new qt;return void 0!==t&&(t=y(t)),n._ch=t,n._sxid=this._sxid,n};var Gt={c:0,d:2,e:4,f:5,g:7,a:9,b:11,h:11};for(u(Gt,function(t){for(i=0;i<12&&!(127<(n=Gt[t]+12*i));i++)v[t+i]=n,0<(v[t+"♮"+i]=n)&&(v[t+"b"+i]=n-1,v[t+"♭"+i]=n-1,v[t+"bb"+i]=n-2,v[t+"♭♭"+i]=n-2,v[t+"𝄫"+i]=n-2),n<127&&(v[t+"#"+i]=n+1,v[t+"♯"+i]=n+1,v[t+"##"+i]=n+2,v[t+"♯♯"+i]=n+2,v[t+"𝄪"+i]=n+2)}),i=0;i<128;i++)v[i]=i;function jt(t){throw RangeError("Bad MIDI value: "+t)}function zt(t){throw TypeError("Invalid value: "+t)}function y(t){return _t(t),parseInt(t)}function b(t){if(t!=parseInt(t)||t<0||15>7}function Zt(t){return[t>>14,t>>7&127,127&t]}function Jt(t,n){if(t!=parseFloat(t)&&zt(void 0===n?t:n),t<0||1>12&15,t>>8&15,t>>4&15,15&t])}function tn(t){return Dt(t),Math.round(1e3*t+1024)}var nn={mtc:function(t){return[241,function(t){var n;switch(!t.backwards&&4<=t.quarter?t.decrFrame():t.backwards&&t.quarter<4&&t.incrFrame(),t.quarter>>1){case 0:n=t.frame;break;case 1:n=t.second;break;case 2:n=t.minute;break;default:n=t.hour}return 1&t.quarter?n>>=4:n&=15,7==t.quarter&&(25==t.type?n|=2:29.97==t.type?n|=4:30==t.type&&(n|=6)),!t.backwards&&4<=t.quarter?t.incrFrame():t.backwards&&t.quarter<4&&t.decrFrame(),n|t.quarter<<4}(t)]},songPosition:function(t,n){return void 0===n?[242,x(t),S(t)]:[242,C(n),C(t)]},songSelect:function(t){return[243,C(t)]},tune:function(){return[246]},clock:function(){return[248]},start:function(){return[250]},continue:function(){return[251]},stop:function(){return[252]},active:function(){return[254]},reset:function(){return[255]}},w={sxIdRequest:function(){return[240,126,this._sxid,6,1,247]},sxTuningDumpRequest:function(t,n){return void 0===n?[240,126,this._sxid,8,0,C(t),247]:[240,126,this._sxid,8,3,C(t),C(n),247]},sxFullFrame:function(t){return[240,127,this._sxid,1,1,25==(n=t).type?32|n.hour:29.97==n.type?64|n.hour:30==n.type?96|n.hour:n.hour,t.getMinute(),t.getSecond(),t.getFrame(),247];var n},sxMasterVolume:function(t,n){return void 0===n?[240,127,this._sxid,4,1,x(t),S(t),247]:[240,127,this._sxid,4,1,C(n),C(t),247]},sxMasterVolumeF:function(t){return w.sxMasterVolume.call(this,_.to14b(Jt(t)))},sxMasterFineTuning:function(t,n){return void 0===n?[240,127,this._sxid,4,3,x(t),S(t),247]:[240,127,this._sxid,4,3,C(n),C(t),247]},sxMasterFineTuningF:function(t){return w.sxMasterFineTuning.call(this,_.to14b(Jt((t%1+1)/2,t)))},sxMasterCoarseTuning:function(t){return[240,127,this._sxid,4,4,0,C(t),247]},sxMasterCoarseTuningF:function(t){return w.sxMasterCoarseTuning.call(this,t-t%1+64)},sxNoteTuning:function(t,n,e,r){return n==parseInt(n)?[240,Xt(r),this._sxid,8,7,C(t),C(n)].concat(Ht(e),[247]):[240,127,this._sxid,8,2,C(t)].concat(Ht(n),[247])},sxNoteTuningF:function(t,n,e,r){return n==parseInt(n)?w.sxNoteTuning.call(this,t,n,Qt(e),r):w.sxNoteTuning.call(this,t,Qt(n))},sxNoteTuningHZ:function(t,n,e,r){return n==parseInt(n)?w.sxNoteTuning.call(this,t,n,Kt(e),r):w.sxNoteTuning.call(this,t,Kt(n))},sxScaleTuning1:function(t,n,e){return t==parseInt(t)?[240,Xt(e),this._sxid,8,8].concat(Zt(Wt(t)),function(t){var n=[];if(!(t instanceof Array)||12!=t.length)throw TypeError("Expected an array of size 12");for(var e=0;e<12;e++)n.push(C(t[e]));return n}(n),[247]):w.sxScaleTuning1.call(this,65535,t,n)},sxScaleTuning1F:function(t,n,e){if(t!=parseInt(t))return w.sxScaleTuning1F.call(this,65535,t,n);for(var r=[],i=0;i>8)+String.fromCharCode(255&t)}else if(0==(t=""+t).length)t="\0\0";else if(1==t.length)t="\0"+t;else if(2>16)+String.fromCharCode(t>>8&255)+String.fromCharCode(255&t));throw RangeError("Out of range"+_n(fn(t)))},smfBPM:function(t){return rn.smfTempo(Math.round(6e7/t))},smfSMPTE:function(t){if(t instanceof m)return A(84,String.fromCharCode(t.hour)+String.fromCharCode(t.minute)+String.fromCharCode(t.second)+String.fromCharCode(t.frame)+String.fromCharCode(t.quarter%4*25));if(5==(""+t).length)return A(84,t);var n=t instanceof Array?t:Array.prototype.slice.call(arguments);return n.splice(0,0,30),rn.smfSMPTE(new m(n))},smfTimeSignature:function(t,n,e,r){var i,o,s,u,a=(""+t).match(/^\s*(\d+)\s*\/\s*(\d+)\s*$/);if(a){if(i=parseInt(a[1]),o=parseInt(a[2]),0>=1;s;s>>=1)o++;return s=n==parseInt(n)?n:24,u=e==parseInt(e)?e:8,A(88,String.fromCharCode(i)+String.fromCharCode(o)+String.fromCharCode(s)+String.fromCharCode(u))}if(4==(""+t).length)return A(88,t)}else if(t==parseInt(t)&&n==parseInt(n)){if(0>=1;s;s>>=1)o++;return s=e==parseInt(e)?e:24,u=r==parseInt(r)?r:8,A(88,String.fromCharCode(i)+String.fromCharCode(o)+String.fromCharCode(s)+String.fromCharCode(u))}if(4==(""+t).length)return A(88,t);t=t+"/"+n}else if(4==(""+t).length)return A(88,t);throw RangeError("Wrong time signature"+_n(fn(""+t)))},smfKeySignature:function(t){var n,e=(t=""+t).match(/^\s*([A-H][b#]?)\s*(|maj|major|dur|m|min|minor|moll)\s*$/i);if(e&&(n={CB:0,GB:1,DB:2,AB:3,EB:4,BB:5,F:6,C:7,G:8,D:9,A:10,E:11,B:12,H:12,"F#":13,"C#":14,"G#":15,"D#":16,"A#":17}[e[1].toUpperCase()],e={"":0,MAJ:0,MAJOR:0,DUR:0,M:1,MIN:1,MINOR:1,MOLL:1}[e[2].toUpperCase()],void 0!==n&&void 0!==e&&(e&&(n-=3),-7<=(n-=7)&&n<0?t=String.fromCharCode(256+n)+String.fromCharCode(e):0<=n&&n<=7&&(t=String.fromCharCode(n)+String.fromCharCode(e)))),2==t.length&&t.charCodeAt(1)<=1&&(t.charCodeAt(0)<=7||t.charCodeAt(0)<=255&&249<=t.charCodeAt(0)))return A(89,t);throw RangeError("Incorrect key signature"+_n(t))},smfSequencer:function(t){return A(127,fn(t))}},on={};function sn(t,n){_[t]=function(){return new _(n.apply(this,arguments))},on[t]=function(){return this.send(n.apply(this,arguments))}}function un(n){u(on,function(t){n.prototype[t]=on[t]})}u(nn,function(t){sn(t,nn[t])}),u(w,function(t){sn(t,w[t])}),u(rn,function(t){var n;n=rn[t=t],_[t]=function(){return n.apply(this,arguments)},on[t]=function(){return this.send(n.apply(this,arguments))}}),u(en,function(t){var r;r=en[t=t],_[t]=function(){for(var t=[],n=r.apply(this,arguments),e=0;e>4;if(12==o)t._bm=this._cc[i].bm,t._bl=this._cc[i].bl,g.MIDI.programName&&t.label(g.MIDI.programName(t[1],t._bm,t._bl));else if(11==o)switch(t[1]){case 0:this._cc[i].bm=t[2];break;case 32:this._cc[i].bl=t[2];break;case 98:this._cc[i].nl=t[2],this._cc[i].rn="n";break;case 99:this._cc[i].nm=t[2],this._cc[i].rn="n";break;case 100:this._cc[i].rl=t[2],this._cc[i].rn="r";break;case 101:this._cc[i].rm=t[2],this._cc[i].rn="r";break;case 6:case 38:case 96:case 97:"r"==this._cc[i].rn&&(t._rm=this._cc[i].rm,t._rl=this._cc[i].rl,t.label((r=this._cc[i].rm,e=this._cc[i].rl,r=void 0===r?"??":pn(r),e=void 0===e?"??":pn(e),"RPN "+r+" "+e+((r={"0000":"Pitch Bend Sensitivity","0001":"Channel Fine Tune","0002":"Channel Coarse Tune","0003":"Select Tuning Program","0004":"Select Tuning Bank","0005":"Vibrato Depth Range","7f7f":"NONE"}[r+""+e])?": "+r:"")))),"n"==this._cc[i].rn&&(t._nm=this._cc[i].rm,t._nl=this._cc[i].nl,t.label((e=this._cc[i].nm,r=this._cc[i].nl,"NRPN "+(void 0===e?"??":pn(e))+" "+(void 0===r?"??":pn(r)))))}else t.isFullSysEx()&&(127==t[1]?4==t[3]?(n={1:"Master Volume",2:"Master Balance",3:"Master Fine Tuning",4:"Master Coarse Tuning"}[t[4]])&&t.label(n):8==t[3]&&(n={2:"Note Tuning",7:"Note Tuning, Bank",8:"Scale Tuning, 1 byte format",9:"Scale Tuning, 2 byte format"}[t[4]])&&t.label(n):126==t[1]?6==t[3]?1==t[4]?t.label("Device ID Request"):2==t[4]&&t.label("Device ID Response"):8==t[3]?(n={0:"Bulk Tuning Dump Request",1:"Bulk Tuning Dump",3:"Bulk Tuning Dump Request, Bank",4:"Bulk Tuning Dump, Bank",5:"Scale Tuning Dump, 1 byte format",6:"Scale Tuning Dump, 2 byte format",7:"Note Tuning, Bank",8:"Scale Tuning, 1 byte format",9:"Scale Tuning, 2 byte format"}[t[4]])&&t.label(n):9==t[3]&&(1==t[4]?(t.label("GM1 System On"),this._clear(),this._gm="1"):2==t[4]?(t.label("GM System Off"),this._clear(),this._gm="0"):3==t[4]&&(t.label("GM2 System On"),this._clear(),this._gm="2")):67==t[1]?16==(240&t[2])&&76==t[3]&&(0==t[4]&&0==t[5]&&126==t[6]&&0==t[7]?(t.label("XG System On"),this._clear(),this._gm="Y"):0==t[4]&&0==t[5]&&0==t[6]?t.label("XG Master Tuning"):0==t[4]&&0==t[5]&&4==t[6]?t.label("XG Master Volume"):0==t[4]&&0==t[5]&&6==t[6]?t.label("XG Master Transpose"):8==t[4]&&t[5]<16&&65<=t[6]&&t[6]<=76?t.label("XG Scale Tuning"):t.label("XG Parameter")):65==t[1]&&66==t[3]&&18==t[4]&&(64==t[5]&&(0==t[6]?127==t[7]&&0==t[8]&&65==t[9]?(t.label("GS Reset"),this._clear(),this._gm="R"):0==t[7]?t.label("GS Master Tuning"):4==t[7]?t.label("GS Master Volume"):5==t[7]?t.label("GS Master Transpose"):t.label("GS Parameter"):16==(240&t[6])&&21==t[7]?t.label("GS Drum Part Change"):16==(240&t[6])&&64<=t[7]&&t[7]<=75?t.label("GS Scale Tuning"):t.label("GS Parameter")),65==t[5]&&t.label("GS Parameter")));return t}function bn(){var t=new p;return t._clear=vn,t._read=yn,t._receive=function(t){this._emit(this._read(t))},t._clear(),t._resume(),t}function B(){var t=this instanceof B?this:new B;return t.reset(),arguments.length&&B.prototype.setup.apply(t,arguments),t}function E(n){var e=this instanceof E?this:new E;if(n instanceof E)return e._from=n._from.slice(),u(n,function(t){"_from"!=t&&(e[t]=n[t])}),e;e._from=[];for(var t=(n=void 0===n?[0,0,0,0]:n)instanceof Array?n:arguments,r=e.length=0;r>4])throw RangeError("Wrong UMP size");return e}function Cn(){}_.prototype.getChannel=function(){if(32==this.ff&&1==this.dd.length&&this.dd.charCodeAt(0)<16)return this.dd.charCodeAt(0);var t=this[0];return void 0===t||t<128||239>4,0<(t=15&t)&&t<8&&n<7?(t=["C","D","E","F","G","A","B"][t-1]+["bbb","bb","b","","#","##","###"][n],34>4;return(e={8:"Note Off",10:"Aftertouch",12:"Program Change",13:"Channel Aftertouch",14:"Pitch Wheel"}[n])?e:9==n?this[2]?"Note On":"Note Off":11!=n?t:(e={0:"Bank Select MSB",1:"Modulation Wheel MSB",2:"Breath Controller MSB",4:"Foot Controller MSB",5:"Portamento Time MSB",6:"Data Entry MSB",7:"Channel Volume MSB",8:"Balance MSB",10:"Pan MSB",11:"Expression Controller MSB",12:"Effect Control 1 MSB",13:"Effect Control 2 MSB",16:"General Purpose Controller 1 MSB",17:"General Purpose Controller 2 MSB",18:"General Purpose Controller 3 MSB",19:"General Purpose Controller 4 MSB",31:"Karaoke",32:"Bank Select LSB",33:"Modulation Wheel LSB",34:"Breath Controller LSB",36:"Foot Controller LSB",37:"Portamento Time LSB",38:"Data Entry LSB",39:"Channel Volume LSB",40:"Balance LSB",42:"Pan LSB",43:"Expression Controller LSB",44:"Effect control 1 LSB",45:"Effect control 2 LSB",48:"General Purpose Controller 1 LSB",49:"General Purpose Controller 2 LSB",50:"General Purpose Controller 3 LSB",51:"General Purpose Controller 4 LSB",64:"Damper Pedal",65:"Portamento",66:"Sostenuto",67:"Soft Pedal",68:"Legato",69:"Hold 2",70:"Sound Variation",71:"Filter Resonance",72:"Release Time",73:"Attack Time",74:"Brightness",75:"Decay Time",76:"Vibrato Rate",77:"Vibrato Depth",78:"Vibrato Delay",79:"Sound Controller 10",80:"General Purpose Controller 5",81:"General Purpose Controller 6",82:"General Purpose Controller 7",83:"General Purpose Controller 8",84:"Portamento Control",88:"High Resolution Velocity Prefix",91:"Effects 1 Depth",92:"Effects 2 Depth",93:"Effects 3 Depth",94:"Effects 4 Depth",95:"Effects 5 Depth",96:"Data Increment",97:"Data Decrement",98:"Non-Registered Parameter Number LSB",99:"Non-Registered Parameter Number MSB",100:"Registered Parameter Number LSB",101:"Registered Parameter Number MSB",120:"All Sound Off",121:"Reset All Controllers",122:"Local Control On/Off",123:"All Notes Off",124:"Omni Mode Off",125:"Omni Mode On",126:"Mono Mode On",127:"Poly Mode On"}[this[1]],64<=this[1]&&this[1]<=69&&(e+=this[2]<64?" Off":" On"),e||"Undefined")},_.prototype._stamp=function(t){return this._from.push(t._orig||t),this},_.prototype._unstamp=function(t){return void 0===t?this._from=[]:(t._orig&&(t=t._orig),-1<(t=this._from.indexOf(t))&&this._from.splice(t,1)),this},_.prototype._stamped=function(t){t._orig&&(t=t._orig);for(var n=0;nthis[e].notes.length&&(i=this[n=e].notes.length),r=0;r>4,1==t||2==t||3==t||4==t||5==t||13==t?15&this[0]:void 0};var Mn=[0,0,0,0,0,0,0,0,0,0,0,0,0],xn={noop:function(){return[0,0,0,0]},umpClock:function(t){return[0,16,(t=Wt(t))>>8,255&t]},umpTimestamp:function(t){return[0,32,(t=Wt(t))>>8,255&t]},umpTicksPQN:function(t){return[0,48,(t=Wt(t))>>8,255&t]},umpDelta:function(t){return[0,64+((t=function(t){if(t!=parseInt(t)||t<0||1048575>16),t>>8&255,255&t]},umpStartClip:function(){return[240,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},umpEndClip:function(){return[240,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},Sn={umpTempo:function(t,n){return[208+b(t),16,0,0,n>>24,n>>16&255,n>>8&255,255&n,0,0,0,0,0,0,0,0]},umpBPM:function(t,n){return Sn.umpTempo(t,Math.round(6e9/n))},umpTimeSignature:function(t,n,e){var r,i,o,s=(""+n).match(/^\s*(\d+)\s*\/\s*(\d+)\s*$/);if(s?(r=parseInt(s[1]),i=parseInt(s[2])):n==parseInt(n)&&e==parseInt(e)&&(r=parseInt(n),i=parseInt(e)),0>=1;i;i>>=1)o++;if((i=Math.round(32*r/(1<>8,255&r,o>>8,255&o]},umpNoteOff:function(t,n,e,r,i,o){return i=i||0,o=o||0,r=Wt(r=r||0),o=Wt(o),[64+b(t),128+y(n),M(e),Ut(i),r>>8,255&r,o>>8,255&o]}},O={umpCustomText:function(t,n,e,r,i,o){var s,u=[];for(o=g.lib.toUTF8(""+o),s=0;s>4==13&&this[1]>>4==1&&0==this[2]&&0==this[3]},E.prototype.isTimeSignature=function(){return this[0]>>4==13&&this[1]>>4==1&&0==this[2]&&1==this[3]},E.prototype.isDelta=function(){return 0==this[0]&&this[1]>>4==4},E.prototype.isStartClip=function(){return this.match([240,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0])},E.prototype.isEndClip=function(){return this.match([240,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0])},E.prototype.isNoteOn=function(){var t=(this[0]||0)>>4,n=(this[1]||0)>>4;return 4==t?9==n:2==t&&(9==n&&!!this[3])},E.prototype.isNoteOff=function(){var t=(this[0]||0)>>4,n=(this[1]||0)>>4;return 4==t?8==n:2==t&&(8==n||9==n&&!this[3])},E.prototype.toString=_.prototype.toString,E.prototype._str=function(){var t=this._string();return t?dn(this)+" -- "+t:dn(this)},E.prototype._string=function(){var t,n,e=this[0]>>4;return 1==e||2==e?new _(this.slice(1))._string():(0==e?n=["NOOP","JR Clock","JR Timestamp","Ticks Per Quarter Note","Delta Ticks"][t=this[1]>>4]:3==e?n="SysEx":4==e?n={0:"Registered Per-Note Controller",1:"Assignable Per-Note Controller",2:"Registered Controller",3:"Assignable Controller",4:"Relative Registered Controller",5:"Relative Assignable Controller",6:"Per-Note Pitch Bend",8:"Note Off",9:"Note On",10:"Poly Pressure",11:"Control Change",12:"Program Change",13:"Channel Pressure",14:"Pitch Bend",15:"Per-Note Management"}[t=this[1]>>4]:5==e?n="Data":13==e&&(0==(t=this[2])?(n={0:"Tempo ",1:"Time Signature ",2:"Metronome",5:"Key Signature",6:"Chord Name"}[t=this[3]],0==t?n+=this.getBPM()+" BPM":1==t&&(n+=this.getTimeSignature().join("/"))):1==t?n={0:"Metadata",1:"Project Name",2:"Composition Name",3:"Clip Name",4:"Copyright",5:"Composer Name",6:"Lyricist Name",7:"Arranger Name",8:"Publisher Name",9:"Primary Performer Name",10:"Accompanying Performer Name",11:"Recording Date",12:"Recording Location"}[t=this[3]]||"Unknown Text":2==t&&(n={0:"Text",1:"Lyrics",2:"Lyrics Language",3:"Ruby",4:"Ruby Language"}[t=this[3]]||"Unknown Text")),15==e?{32:"Start of Clip",33:"End of Clip"}[this[1]]:n)},E.prototype._stamp=_.prototype._stamp,E.prototype._unstamp=_.prototype._unstamp,E.prototype._stamped=_.prototype._stamped,E.prototype.match=_.prototype.match,g.UMP=E,g.MIDI2=r.prototype.UMP=E,r.prototype.MIDI2=E,g.lib={},g.lib.now=j,g.lib.schedule=z;var Pn,F,Fn=[],Nn=0;try{function kn(){for(var t=Fn.length,n=0;n>2,e=(3&o)<<6|(s=Dn.indexOf(t.charAt(a++))),u+=String.fromCharCode(r<<2|i>>4),64!=o&&(u+=String.fromCharCode(n)),64!=s&&(u+=String.fromCharCode(e));return u},g.lib.toBase64=function(t){var n,e,r,i,o=0,s=0,u="",a=[];if(!t)return t;for(;n=(i=t.charCodeAt(o++)<<16|t.charCodeAt(o++)<<8|t.charCodeAt(o++))>>12&63,e=i>>6&63,r=63&i,a[s++]=Dn.charAt(i>>18&63)+Dn.charAt(n)+Dn.charAt(e)+Dn.charAt(r),o=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;n+=63&e,r+=String.fromCharCode(n)}else if(224==(240&n)){if(n=(15&n)<<12,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(n+=(63&e)<<6,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;n+=63&e,r+=String.fromCharCode(n)}else if(240==(248&n)){if(n=(7&n)<<18,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(n+=(63&e)<<12,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(n+=(63&e)<<6,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(1114111<(n+=63&e))return t;n-=65536,r=(r+=String.fromCharCode(55296+(n>>10)))+String.fromCharCode(56320+(1023&n))}}return r},g.lib.toUTF8=function(t){t=void 0===t?"":""+t;for(var n,e="",r=0;r>6)))+String.fromCharCode(128+(63&n)):n<65536?(e=(e+=String.fromCharCode(224+(n>>12)))+String.fromCharCode(128+(n>>6&63)))+String.fromCharCode(128+(63&n)):(e=(e=(e+=String.fromCharCode(240+(n>>18)))+String.fromCharCode(128+(n>>12&63)))+String.fromCharCode(128+(n>>6&63)))+String.fromCharCode(128+(63&n));return e},[]),k={},R={},qn=t.Promise;function Gn(t,n,e){this.name=t,this.message=n,this.code=e}function jn(t,n){this.bubbles=!1,this.cancelBubble=!1,this.cancelable=!1,this.currentTarget=n,this.defaultPrevented=!1,this.eventPhase=0,this.path=[],this.port=t,this.returnValue=!0,this.srcElement=n,this.target=n,this.timeStamp=j(),this.type="statechange"}function zn(t,n){this.bubbles=!1,this.cancelBubble=!1,this.cancelable=!1,this.currentTarget=t,this.data=n,this.defaultPrevented=!1,this.eventPhase=0,this.path=[],this.receivedTime=j(),this.returnValue=!0,this.srcElement=t,this.target=t,this.timeStamp=this.receivedTime,this.type="midimessage"}function Un(t,n){t&&(t.onstatechange&&t.onstatechange(new jn(t,t)),n.onstatechange&&n.onstatechange(new jn(t,n)))}function Vn(e,r){var i=this,o=!1,n=null,s=null;this.type="input",this.id=r.id,this.name=r.name,this.manufacturer=r.man,this.version=r.ver,Object.defineProperty(this,"state",{get:function(){return r.connected?"connected":"disconnected"},enumerable:!0}),Object.defineProperty(this,"connection",{get:function(){return o?r.proxy?"open":"pending":"closed"},enumerable:!0}),Object.defineProperty(this,"onmidimessage",{get:function(){return s},set:function(t){a(t)?(s=t,o||i.open().then(U,U)):s=null},enumerable:!0}),Object.defineProperty(this,"onstatechange",{get:function(){return n},set:function(t){n=a(t)?t:null},enumerable:!0}),this.open=function(){return new qn(function(t,n){o?t(i):r.open().then(function(){o||(o=!0,Un(i,e)),t(i)},function(){n(new Gn("InvalidAccessError","Port is not available",15))})})},this.close=function(){return new qn(function(t){o&&(o=!1,r.close(),Un(i,e)),t(i)})},Object.freeze(this)}function Wn(t){for(var n,e;t.length;){for(n=0;nt.length)return;for(n=1;n>1&3],(1&t[7])<<4|t[6],t[5]<<4|t[4],t[3]<<4|t[2],t[1]<<4|t[0]]}function Lt(t){for(var n,e=[],r=0;r=this.type&&(this.frame=this.type-1),this},m.prototype.setHour=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||24<=t)throw RangeError("Bad SMPTE hours value: "+t);return this.hour=t,this},m.prototype.setMinute=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||60<=t)throw RangeError("Bad SMPTE minutes value: "+t);return this.minute=t,kt.apply(this),this},m.prototype.setSecond=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||60<=t)throw RangeError("Bad SMPTE seconds value: "+t);return this.second=t,kt.apply(this),this},m.prototype.setFrame=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||t>=this.type)throw RangeError("Bad SMPTE frame number: "+t);return this.frame=t,kt.apply(this),this},m.prototype.setQuarter=function(t){if((t=void 0===t?0:t)!=parseInt(t)||t<0||8<=t)throw RangeError("Bad SMPTE quarter frame: "+t);return this.quarter=t,this},m.prototype.incrFrame=function(){return this.frame++,this.frame>=this.type&&(this.frame=0,this.second++,60<=this.second&&(this.second=0,this.minute++,60<=this.minute&&(this.minute=0,this.hour=23<=this.hour?0:this.hour+1))),kt.apply(this),this},m.prototype.decrFrame=function(){return!this.second&&2==this.frame&&29.97==this.type&&this.minute%10&&(this.frame=0),this.frame--,this.frame<0&&(this.frame=29.97==this.type?29:this.type-1,this.second--,this.second<0&&(this.second=59,this.minute--,this.minute<0&&(this.minute=59,this.hour=this.hour?this.hour-1:23))),this},m.prototype.incrQF=function(){return this.backwards=!1,this.quarter=this.quarter+1&7,0!=this.quarter&&4!=this.quarter||this.incrFrame(),this},m.prototype.decrQF=function(){return this.backwards=!0,this.quarter=this.quarter+7&7,3!=this.quarter&&7!=this.quarter||this.decrFrame(),this},m.prototype.read=function(t){return 240==(t=t instanceof _?t:_.apply(null,arguments))[0]&&127==t[1]&&1==t[3]&&1==t[4]&&247==t[9]?(this.type=[24,25,29.97,30][t[5]>>5&3],this.hour=31&t[5],this.minute=t[6],this.second=t[7],this.frame=t[8],this.quarter=0,this._=void 0,this._b=void 0,!(this._f=void 0)):241==t[0]&&void 0!==t[1]&&(n=t[1]>>4,e=15&t[1],0==n?7==this._&&(7==this._f&&(this.reset(Rt(this._a)),this.incrFrame()),this.incrFrame()):3==n?4==this._&&this.decrFrame():4==n?3==this._&&this.incrFrame():7==n&&0===this._&&(0===this._b&&(this.reset(Rt(this._a)),this.decrFrame()),this.decrFrame()),this._a||(this._a=[]),this._a[n]=e,this._f=this._f===n-1||0==n?n:void 0,this._b=this._b===1+n||7==n?n:void 0,this._=n,this.quarter=n,!0);var n,e},m.prototype.toString=function(){return Lt([this.hour,this.minute,this.second,this.frame])},g.SMPTE=m,r.prototype.SMPTE=m,_.prototype=[],_.prototype.constructor=_;var v={};function Dt(t){if(t!=parseFloat(t))throw TypeError("Not a number: "+t)}function qt(){}_.noteValue=function(t){return void 0===t?void 0:v[t.toString().toLowerCase()]},_.programValue=function(t){return t},_.octaveValue=function(t){var n=v[t.toString().toLowerCase()];return void 0===(n=void 0===n?v[t.toString().toLowerCase()+"1"]:n)?void 0:n%12},_.freq=function(t,n){return Dt(n=void 0===n?440:n),t!=parseFloat(t)&&(t=M(t)),n*Math.pow(2,(t-69)/12)},_.shift=function(t,n){return void 0===n&&(n=440),Dt(t),Dt(n),12*Math.log2(t/n)},_.midi=function(t,n){return t!=parseFloat(t)?M(t):_.shift(t,n)+69},_.to7b=function(t){return Dt(t),t<=0?0:1<=t?127:Math.floor(128*t)},_.to14b=function(t){return Dt(t),t<=0?0:1<=t?16383:Math.floor(16384*t)},_.to21b=function(t){return void 0===t?2097151:(Dt(t),t<=0?0:(t=(Math.floor(t)<<14)+_.to14b(t-Math.floor(t)))<2097151?t:2097150)},(qt.prototype=_)._sxid=127,_.sxId=function(t){if((t=void 0===t?_._sxid:t)==this._sxid)return this;t=C(t);var n=new qt;return n._ch=this._ch,n._sxid=t,n},_.ch=function(t){if(t==this._ch||void 0===t&&void 0===this._ch)return this;var n=new qt;return void 0!==t&&(t=y(t)),n._ch=t,n._sxid=this._sxid,n};var Gt={c:0,d:2,e:4,f:5,g:7,a:9,b:11,h:11};for(u(Gt,function(t){for(i=0;i<12&&!(127<(n=Gt[t]+12*i));i++)v[t+i]=n,0<(v[t+"♮"+i]=n)&&(v[t+"b"+i]=n-1,v[t+"♭"+i]=n-1,v[t+"bb"+i]=n-2,v[t+"♭♭"+i]=n-2,v[t+"𝄫"+i]=n-2),n<127&&(v[t+"#"+i]=n+1,v[t+"♯"+i]=n+1,v[t+"##"+i]=n+2,v[t+"♯♯"+i]=n+2,v[t+"𝄪"+i]=n+2)}),i=0;i<128;i++)v[i]=i;function jt(t){throw RangeError("Bad MIDI value: "+t)}function zt(t){throw TypeError("Invalid value: "+t)}function y(t){return _t(t),parseInt(t)}function b(t){if(t!=parseInt(t)||t<0||15>7}function Zt(t){return[t>>14,t>>7&127,127&t]}function Jt(t,n){if(t!=parseFloat(t)&&zt(void 0===n?t:n),t<0||1>12&15,t>>8&15,t>>4&15,15&t])}function tn(t){return Dt(t),Math.round(1e3*t+1024)}var nn={mtc:function(t){return[241,function(t){var n;switch(!t.backwards&&4<=t.quarter?t.decrFrame():t.backwards&&t.quarter<4&&t.incrFrame(),t.quarter>>1){case 0:n=t.frame;break;case 1:n=t.second;break;case 2:n=t.minute;break;default:n=t.hour}return 1&t.quarter?n>>=4:n&=15,7==t.quarter&&(25==t.type?n|=2:29.97==t.type?n|=4:30==t.type&&(n|=6)),!t.backwards&&4<=t.quarter?t.incrFrame():t.backwards&&t.quarter<4&&t.decrFrame(),n|t.quarter<<4}(t)]},songPosition:function(t,n){return void 0===n?[242,x(t),S(t)]:[242,C(n),C(t)]},songSelect:function(t){return[243,C(t)]},tune:function(){return[246]},clock:function(){return[248]},start:function(){return[250]},continue:function(){return[251]},stop:function(){return[252]},active:function(){return[254]},reset:function(){return[255]}},w={sxIdRequest:function(){return[240,126,this._sxid,6,1,247]},sxTuningDumpRequest:function(t,n){return void 0===n?[240,126,this._sxid,8,0,C(t),247]:[240,126,this._sxid,8,3,C(t),C(n),247]},sxFullFrame:function(t){return[240,127,this._sxid,1,1,25==(n=t).type?32|n.hour:29.97==n.type?64|n.hour:30==n.type?96|n.hour:n.hour,t.getMinute(),t.getSecond(),t.getFrame(),247];var n},sxMasterVolume:function(t,n){return void 0===n?[240,127,this._sxid,4,1,x(t),S(t),247]:[240,127,this._sxid,4,1,C(n),C(t),247]},sxMasterVolumeF:function(t){return w.sxMasterVolume.call(this,_.to14b(Jt(t)))},sxMasterFineTuning:function(t,n){return void 0===n?[240,127,this._sxid,4,3,x(t),S(t),247]:[240,127,this._sxid,4,3,C(n),C(t),247]},sxMasterFineTuningF:function(t){return w.sxMasterFineTuning.call(this,_.to14b(Jt((t%1+1)/2,t)))},sxMasterCoarseTuning:function(t){return[240,127,this._sxid,4,4,0,C(t),247]},sxMasterCoarseTuningF:function(t){return w.sxMasterCoarseTuning.call(this,t-t%1+64)},sxNoteTuning:function(t,n,e,r){return n==parseInt(n)?[240,Xt(r),this._sxid,8,7,C(t),C(n)].concat(Ht(e),[247]):[240,127,this._sxid,8,2,C(t)].concat(Ht(n),[247])},sxNoteTuningF:function(t,n,e,r){return n==parseInt(n)?w.sxNoteTuning.call(this,t,n,Qt(e),r):w.sxNoteTuning.call(this,t,Qt(n))},sxNoteTuningHZ:function(t,n,e,r){return n==parseInt(n)?w.sxNoteTuning.call(this,t,n,Kt(e),r):w.sxNoteTuning.call(this,t,Kt(n))},sxScaleTuning1:function(t,n,e){return t==parseInt(t)?[240,Xt(e),this._sxid,8,8].concat(Zt(Wt(t)),function(t){var n=[];if(!(t instanceof Array)||12!=t.length)throw TypeError("Expected an array of size 12");for(var e=0;e<12;e++)n.push(C(t[e]));return n}(n),[247]):w.sxScaleTuning1.call(this,65535,t,n)},sxScaleTuning1F:function(t,n,e){if(t!=parseInt(t))return w.sxScaleTuning1F.call(this,65535,t,n);for(var r=[],i=0;i>8)+String.fromCharCode(255&t)}else if(0==(t=""+t).length)t="\0\0";else if(1==t.length)t="\0"+t;else if(2>16)+String.fromCharCode(t>>8&255)+String.fromCharCode(255&t));throw RangeError("Out of range"+_n(fn(t)))},smfBPM:function(t){return rn.smfTempo(Math.round(6e7/t))},smfSMPTE:function(t){if(t instanceof m)return A(84,String.fromCharCode(t.hour)+String.fromCharCode(t.minute)+String.fromCharCode(t.second)+String.fromCharCode(t.frame)+String.fromCharCode(t.quarter%4*25));if(5==(""+t).length)return A(84,t);var n=t instanceof Array?t:Array.prototype.slice.call(arguments);return n.splice(0,0,30),rn.smfSMPTE(new m(n))},smfTimeSignature:function(t,n,e,r){var i,o,s,u,a=(""+t).match(/^\s*(\d+)\s*\/\s*(\d+)\s*$/);if(a){if(i=parseInt(a[1]),o=parseInt(a[2]),0>=1;s;s>>=1)o++;return s=n==parseInt(n)?n:24,u=e==parseInt(e)?e:8,A(88,String.fromCharCode(i)+String.fromCharCode(o)+String.fromCharCode(s)+String.fromCharCode(u))}if(4==(""+t).length)return A(88,t)}else if(t==parseInt(t)&&n==parseInt(n)){if(0>=1;s;s>>=1)o++;return s=e==parseInt(e)?e:24,u=r==parseInt(r)?r:8,A(88,String.fromCharCode(i)+String.fromCharCode(o)+String.fromCharCode(s)+String.fromCharCode(u))}if(4==(""+t).length)return A(88,t);t=t+"/"+n}else if(4==(""+t).length)return A(88,t);throw RangeError("Wrong time signature"+_n(fn(""+t)))},smfKeySignature:function(t){var n,e=(t=""+t).match(/^\s*([A-H][b#]?)\s*(|maj|major|dur|m|min|minor|moll)\s*$/i);if(e&&(n={CB:0,GB:1,DB:2,AB:3,EB:4,BB:5,F:6,C:7,G:8,D:9,A:10,E:11,B:12,H:12,"F#":13,"C#":14,"G#":15,"D#":16,"A#":17}[e[1].toUpperCase()],e={"":0,MAJ:0,MAJOR:0,DUR:0,M:1,MIN:1,MINOR:1,MOLL:1}[e[2].toUpperCase()],void 0!==n&&void 0!==e&&(e&&(n-=3),-7<=(n-=7)&&n<0?t=String.fromCharCode(256+n)+String.fromCharCode(e):0<=n&&n<=7&&(t=String.fromCharCode(n)+String.fromCharCode(e)))),2==t.length&&t.charCodeAt(1)<=1&&(t.charCodeAt(0)<=7||t.charCodeAt(0)<=255&&249<=t.charCodeAt(0)))return A(89,t);throw RangeError("Incorrect key signature"+_n(t))},smfSequencer:function(t){return A(127,fn(t))}},on={};function sn(t,n){_[t]=function(){return new _(n.apply(this,arguments))},on[t]=function(){return this.send(n.apply(this,arguments))}}function un(n){u(on,function(t){n.prototype[t]=on[t]})}u(nn,function(t){sn(t,nn[t])}),u(w,function(t){sn(t,w[t])}),u(rn,function(t){var n;n=rn[t=t],_[t]=function(){return n.apply(this,arguments)},on[t]=function(){return this.send(n.apply(this,arguments))}}),u(en,function(t){var r;r=en[t=t],_[t]=function(){for(var t=[],n=r.apply(this,arguments),e=0;e>4;if(12==o)t._bm=this._cc[i].bm,t._bl=this._cc[i].bl,g.MIDI.programName&&t.label(g.MIDI.programName(t[1],t._bm,t._bl));else if(11==o)switch(t[1]){case 0:this._cc[i].bm=t[2];break;case 32:this._cc[i].bl=t[2];break;case 98:this._cc[i].nl=t[2],this._cc[i].rn="n";break;case 99:this._cc[i].nm=t[2],this._cc[i].rn="n";break;case 100:this._cc[i].rl=t[2],this._cc[i].rn="r";break;case 101:this._cc[i].rm=t[2],this._cc[i].rn="r";break;case 6:case 38:case 96:case 97:"r"==this._cc[i].rn&&(t._rm=this._cc[i].rm,t._rl=this._cc[i].rl,t.label((r=this._cc[i].rm,e=this._cc[i].rl,r=void 0===r?"??":pn(r),e=void 0===e?"??":pn(e),"RPN "+r+" "+e+((r={"0000":"Pitch Bend Sensitivity","0001":"Channel Fine Tune","0002":"Channel Coarse Tune","0003":"Select Tuning Program","0004":"Select Tuning Bank","0005":"Vibrato Depth Range","7f7f":"NONE"}[r+""+e])?": "+r:"")))),"n"==this._cc[i].rn&&(t._nm=this._cc[i].rm,t._nl=this._cc[i].nl,t.label((e=this._cc[i].nm,r=this._cc[i].nl,"NRPN "+(void 0===e?"??":pn(e))+" "+(void 0===r?"??":pn(r)))))}else t.isFullSysEx()&&(127==t[1]?4==t[3]?(n={1:"Master Volume",2:"Master Balance",3:"Master Fine Tuning",4:"Master Coarse Tuning"}[t[4]])&&t.label(n):8==t[3]&&(n={2:"Note Tuning",7:"Note Tuning, Bank",8:"Scale Tuning, 1 byte format",9:"Scale Tuning, 2 byte format"}[t[4]])&&t.label(n):126==t[1]?6==t[3]?1==t[4]?t.label("Device ID Request"):2==t[4]&&t.label("Device ID Response"):8==t[3]?(n={0:"Bulk Tuning Dump Request",1:"Bulk Tuning Dump",3:"Bulk Tuning Dump Request, Bank",4:"Bulk Tuning Dump, Bank",5:"Scale Tuning Dump, 1 byte format",6:"Scale Tuning Dump, 2 byte format",7:"Note Tuning, Bank",8:"Scale Tuning, 1 byte format",9:"Scale Tuning, 2 byte format"}[t[4]])&&t.label(n):9==t[3]&&(1==t[4]?(t.label("GM1 System On"),this._clear(),this._gm="1"):2==t[4]?(t.label("GM System Off"),this._clear(),this._gm="0"):3==t[4]&&(t.label("GM2 System On"),this._clear(),this._gm="2")):67==t[1]?16==(240&t[2])&&76==t[3]&&(0==t[4]&&0==t[5]&&126==t[6]&&0==t[7]?(t.label("XG System On"),this._clear(),this._gm="Y"):0==t[4]&&0==t[5]&&0==t[6]?t.label("XG Master Tuning"):0==t[4]&&0==t[5]&&4==t[6]?t.label("XG Master Volume"):0==t[4]&&0==t[5]&&6==t[6]?t.label("XG Master Transpose"):8==t[4]&&t[5]<16&&65<=t[6]&&t[6]<=76?t.label("XG Scale Tuning"):t.label("XG Parameter")):65==t[1]&&66==t[3]&&18==t[4]&&(64==t[5]&&(0==t[6]?127==t[7]&&0==t[8]&&65==t[9]?(t.label("GS Reset"),this._clear(),this._gm="R"):0==t[7]?t.label("GS Master Tuning"):4==t[7]?t.label("GS Master Volume"):5==t[7]?t.label("GS Master Transpose"):t.label("GS Parameter"):16==(240&t[6])&&21==t[7]?t.label("GS Drum Part Change"):16==(240&t[6])&&64<=t[7]&&t[7]<=75?t.label("GS Scale Tuning"):t.label("GS Parameter")),65==t[5]&&t.label("GS Parameter")));return t}function bn(){var t=new p;return t._clear=vn,t._read=yn,t._receive=function(t){this._emit(this._read(t))},t._clear(),t._resume(),t}function B(){var t=this instanceof B?this:new B;return t.reset(),arguments.length&&B.prototype.setup.apply(t,arguments),t}function E(n){var e=this instanceof E?this:new E;if(n instanceof E)return e._from=n._from.slice(),u(n,function(t){"_from"!=t&&(e[t]=n[t])}),e;e._from=[];for(var t=(n=void 0===n?[0,0,0,0]:n)instanceof Array?n:arguments,r=e.length=0;r>4])throw RangeError("Wrong UMP size");return e}function Cn(){}_.prototype.getChannel=function(){if(32==this.ff&&1==this.dd.length&&this.dd.charCodeAt(0)<16)return this.dd.charCodeAt(0);var t=this[0];return void 0===t||t<128||239>4,0<(t=15&t)&&t<8&&n<7?(t=["C","D","E","F","G","A","B"][t-1]+["bbb","bb","b","","#","##","###"][n],34>4;return(e={8:"Note Off",10:"Aftertouch",12:"Program Change",13:"Channel Aftertouch",14:"Pitch Wheel"}[n])?e:9==n?this[2]?"Note On":"Note Off":11!=n?t:(e={0:"Bank Select MSB",1:"Modulation Wheel MSB",2:"Breath Controller MSB",4:"Foot Controller MSB",5:"Portamento Time MSB",6:"Data Entry MSB",7:"Channel Volume MSB",8:"Balance MSB",10:"Pan MSB",11:"Expression Controller MSB",12:"Effect Control 1 MSB",13:"Effect Control 2 MSB",16:"General Purpose Controller 1 MSB",17:"General Purpose Controller 2 MSB",18:"General Purpose Controller 3 MSB",19:"General Purpose Controller 4 MSB",31:"Karaoke",32:"Bank Select LSB",33:"Modulation Wheel LSB",34:"Breath Controller LSB",36:"Foot Controller LSB",37:"Portamento Time LSB",38:"Data Entry LSB",39:"Channel Volume LSB",40:"Balance LSB",42:"Pan LSB",43:"Expression Controller LSB",44:"Effect control 1 LSB",45:"Effect control 2 LSB",48:"General Purpose Controller 1 LSB",49:"General Purpose Controller 2 LSB",50:"General Purpose Controller 3 LSB",51:"General Purpose Controller 4 LSB",64:"Damper Pedal",65:"Portamento",66:"Sostenuto",67:"Soft Pedal",68:"Legato",69:"Hold 2",70:"Sound Variation",71:"Filter Resonance",72:"Release Time",73:"Attack Time",74:"Brightness",75:"Decay Time",76:"Vibrato Rate",77:"Vibrato Depth",78:"Vibrato Delay",79:"Sound Controller 10",80:"General Purpose Controller 5",81:"General Purpose Controller 6",82:"General Purpose Controller 7",83:"General Purpose Controller 8",84:"Portamento Control",88:"High Resolution Velocity Prefix",91:"Effects 1 Depth",92:"Effects 2 Depth",93:"Effects 3 Depth",94:"Effects 4 Depth",95:"Effects 5 Depth",96:"Data Increment",97:"Data Decrement",98:"Non-Registered Parameter Number LSB",99:"Non-Registered Parameter Number MSB",100:"Registered Parameter Number LSB",101:"Registered Parameter Number MSB",120:"All Sound Off",121:"Reset All Controllers",122:"Local Control On/Off",123:"All Notes Off",124:"Omni Mode Off",125:"Omni Mode On",126:"Mono Mode On",127:"Poly Mode On"}[this[1]],64<=this[1]&&this[1]<=69&&(e+=this[2]<64?" Off":" On"),e||"Undefined")},_.prototype._stamp=function(t){return this._from.push(t._orig||t),this},_.prototype._unstamp=function(t){return void 0===t?this._from=[]:(t._orig&&(t=t._orig),-1<(t=this._from.indexOf(t))&&this._from.splice(t,1)),this},_.prototype._stamped=function(t){t._orig&&(t=t._orig);for(var n=0;nthis[e].notes.length&&(i=this[n=e].notes.length),r=0;r>4,1==t||2==t||3==t||4==t||5==t||13==t?15&this[0]:void 0};var Mn=[0,0,0,0,0,0,0,0,0,0,0,0,0],xn={noop:function(){return[0,0,0,0]},umpClock:function(t){return[0,16,(t=Wt(t))>>8,255&t]},umpTimestamp:function(t){return[0,32,(t=Wt(t))>>8,255&t]},umpTicksPQN:function(t){return[0,48,(t=Wt(t))>>8,255&t]},umpDelta:function(t){return[0,64+((t=function(t){if(t!=parseInt(t)||t<0||1048575>16),t>>8&255,255&t]},umpStartClip:function(){return[240,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0]},umpEndClip:function(){return[240,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0]}},Sn={umpTempo:function(t,n){return[208+b(t),16,0,0,n>>24,n>>16&255,n>>8&255,255&n,0,0,0,0,0,0,0,0]},umpBPM:function(t,n){return Sn.umpTempo(t,Math.round(6e9/n))},umpTimeSignature:function(t,n,e){var r,i,o,s=(""+n).match(/^\s*(\d+)\s*\/\s*(\d+)\s*$/);if(s?(r=parseInt(s[1]),i=parseInt(s[2])):n==parseInt(n)&&e==parseInt(e)&&(r=parseInt(n),i=parseInt(e)),0>=1;i;i>>=1)o++;if((i=Math.round(32*r/(1<>8,255&r,o>>8,255&o]},umpNoteOff:function(t,n,e,r,i,o){return i=i||0,o=o||0,r=Wt(r=r||0),o=Wt(o),[64+b(t),128+y(n),M(e),Ut(i),r>>8,255&r,o>>8,255&o]},umpProgram:function(t,n,e,r,i){return void 0===r&&void 0===i?[64+b(t),192+y(n),0,0,M(e),0,0,0]:[64+b(t),192+y(n),0,1,M(e),0,M(r),M(i)]}},P={umpCustomText:function(t,n,e,r,i,o){var s,u=[];for(o=g.lib.toUTF8(""+o),s=0;s>4==13&&this[1]>>4==1&&0==this[2]&&0==this[3]},E.prototype.isTimeSignature=function(){return this[0]>>4==13&&this[1]>>4==1&&0==this[2]&&1==this[3]},E.prototype.isTicksPQN=function(){return 0==this[0]&&this[1]>>4==3},E.prototype.isDelta=function(){return 0==this[0]&&this[1]>>4==4},E.prototype.isStartClip=function(){return this.match([240,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0])},E.prototype.isEndClip=function(){return this.match([240,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0])},E.prototype.isNoteOn=function(){var t=(this[0]||0)>>4,n=(this[1]||0)>>4;return 4==t?9==n:2==t&&(9==n&&!!this[3])},E.prototype.isNoteOff=function(){var t=(this[0]||0)>>4,n=(this[1]||0)>>4;return 4==t?8==n:2==t&&(8==n||9==n&&!this[3])},E.prototype.toString=_.prototype.toString,E.prototype._str=function(){var t=this._string();return t?dn(this)+" -- "+t:dn(this)},E.prototype._string=function(){var t,n,e=this[0]>>4;return 1==e||2==e?new _(this.slice(1))._string():(0==e?n=["NOOP","JR Clock","JR Timestamp","Ticks Per Quarter Note","Delta Ticks"][t=this[1]>>4]:3==e?n="SysEx":4==e?n={0:"Registered Per-Note Controller",1:"Assignable Per-Note Controller",2:"Registered Controller",3:"Assignable Controller",4:"Relative Registered Controller",5:"Relative Assignable Controller",6:"Per-Note Pitch Bend",8:"Note Off",9:"Note On",10:"Poly Pressure",11:"Control Change",12:"Program Change",13:"Channel Pressure",14:"Pitch Bend",15:"Per-Note Management"}[t=this[1]>>4]:5==e?n="Data":13==e&&(0==(t=this[2])?(n={0:"Tempo ",1:"Time Signature ",2:"Metronome",5:"Key Signature",6:"Chord Name"}[t=this[3]],0==t?n+=this.getBPM()+" BPM":1==t&&(n+=this.getTimeSignature().join("/"))):1==t?n={0:"Metadata",1:"Project Name",2:"Composition Name",3:"Clip Name",4:"Copyright",5:"Composer Name",6:"Lyricist Name",7:"Arranger Name",8:"Publisher Name",9:"Primary Performer Name",10:"Accompanying Performer Name",11:"Recording Date",12:"Recording Location"}[t=this[3]]||"Unknown Text":2==t&&(n={0:"Text",1:"Lyrics",2:"Lyrics Language",3:"Ruby",4:"Ruby Language"}[t=this[3]]||"Unknown Text")),15==e?{32:"Start of Clip",33:"End of Clip"}[this[1]]:n)},E.prototype._stamp=_.prototype._stamp,E.prototype._unstamp=_.prototype._unstamp,E.prototype._stamped=_.prototype._stamped,E.prototype.match=_.prototype.match,g.UMP=E,g.MIDI2=r.prototype.UMP=E,r.prototype.MIDI2=E,g.lib={},g.lib.now=j,g.lib.schedule=z;var On,F,Fn=[],Nn=0;try{function kn(){for(var t=Fn.length,n=0;n>2,e=(3&o)<<6|(s=Dn.indexOf(t.charAt(a++))),u+=String.fromCharCode(r<<2|i>>4),64!=o&&(u+=String.fromCharCode(n)),64!=s&&(u+=String.fromCharCode(e));return u},g.lib.toBase64=function(t){var n,e,r,i,o=0,s=0,u="",a=[];if(!t)return t;for(;n=(i=t.charCodeAt(o++)<<16|t.charCodeAt(o++)<<8|t.charCodeAt(o++))>>12&63,e=i>>6&63,r=63&i,a[s++]=Dn.charAt(i>>18&63)+Dn.charAt(n)+Dn.charAt(e)+Dn.charAt(r),o=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;n+=63&e,r+=String.fromCharCode(n)}else if(224==(240&n)){if(n=(15&n)<<12,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(n+=(63&e)<<6,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;n+=63&e,r+=String.fromCharCode(n)}else if(240==(248&n)){if(n=(7&n)<<18,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(n+=(63&e)<<12,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(n+=(63&e)<<6,++i>=t.length)return t;if(128!=(192&(e=t.charCodeAt(i))))return t;if(1114111<(n+=63&e))return t;n-=65536,r=(r+=String.fromCharCode(55296+(n>>10)))+String.fromCharCode(56320+(1023&n))}}return r},g.lib.toUTF8=function(t){t=void 0===t?"":""+t;for(var n,e="",r=0;r>6)))+String.fromCharCode(128+(63&n)):n<65536?(e=(e+=String.fromCharCode(224+(n>>12)))+String.fromCharCode(128+(n>>6&63)))+String.fromCharCode(128+(63&n)):(e=(e=(e+=String.fromCharCode(240+(n>>18)))+String.fromCharCode(128+(n>>12&63)))+String.fromCharCode(128+(n>>6&63)))+String.fromCharCode(128+(63&n));return e},[]),k={},R={},qn=t.Promise;function Gn(t,n,e){this.name=t,this.message=n,this.code=e}function jn(t,n){this.bubbles=!1,this.cancelBubble=!1,this.cancelable=!1,this.currentTarget=n,this.defaultPrevented=!1,this.eventPhase=0,this.path=[],this.port=t,this.returnValue=!0,this.srcElement=n,this.target=n,this.timeStamp=j(),this.type="statechange"}function zn(t,n){this.bubbles=!1,this.cancelBubble=!1,this.cancelable=!1,this.currentTarget=t,this.data=n,this.defaultPrevented=!1,this.eventPhase=0,this.path=[],this.receivedTime=j(),this.returnValue=!0,this.srcElement=t,this.target=t,this.timeStamp=this.receivedTime,this.type="midimessage"}function Un(t,n){t&&(t.onstatechange&&t.onstatechange(new jn(t,t)),n.onstatechange&&n.onstatechange(new jn(t,n)))}function Vn(e,r){var i=this,o=!1,n=null,s=null;this.type="input",this.id=r.id,this.name=r.name,this.manufacturer=r.man,this.version=r.ver,Object.defineProperty(this,"state",{get:function(){return r.connected?"connected":"disconnected"},enumerable:!0}),Object.defineProperty(this,"connection",{get:function(){return o?r.proxy?"open":"pending":"closed"},enumerable:!0}),Object.defineProperty(this,"onmidimessage",{get:function(){return s},set:function(t){a(t)?(s=t,o||i.open().then(U,U)):s=null},enumerable:!0}),Object.defineProperty(this,"onstatechange",{get:function(){return n},set:function(t){n=a(t)?t:null},enumerable:!0}),this.open=function(){return new qn(function(t,n){o?t(i):r.open().then(function(){o||(o=!0,Un(i,e)),t(i)},function(){n(new Gn("InvalidAccessError","Port is not available",15))})})},this.close=function(){return new qn(function(t){o&&(o=!1,r.close(),Un(i,e)),t(i)})},Object.freeze(this)}function Wn(t){for(var n,e;t.length;){for(n=0;nt.length)return;for(n=1;n