// Bach - Toccata and Fugue in D minor, BWV 565
// Converted from MIDI for dittytoy.net
ditty.bpm = 60;
// Organ synth - additive synthesis with multiple harmonics
const organ = synth.def(class {
constructor(options) {
this.phases = [0, 0, 0, 0, 0, 0];
this.harmonics = [1, 2, 3, 4, 6, 8];
this.amps = [0.35, 0.25, 0.15, 0.1, 0.08, 0.07];
}
process(note, env, tick, options) {
const hz = midi_to_hz(note);
let out = 0;
for (let i = 0; i < 6; i++) {
this.phases[i] += hz * this.harmonics[i] * ditty.dt;
while (this.phases[i] >= 1) this.phases[i] -= 1;
out += Math.sin(this.phases[i] * Math.PI * 2) * this.amps[i];
}
return out * env.value;
}
}, {amp: 0.45, env: adsr, attack: 0.01, decay: 0.05, sustain: 0.95, release: 0.3, duration: 1});
// Reverb filter for church acoustic
class Delayline {
constructor(n) { this.n=~~n; this.p=0; this.lastOut=0; this.data=new Float32Array(n); }
process(x) { this.lastOut=this.data[this.p]; this.data[this.p]=x; if(++this.p>=this.n)this.p=0; return this.lastOut; }
tap(o) { var x=this.p-o-1; x%=this.n; if(x<0)x+=this.n; return this.data[x]; }
}
const rev = filter.def(class {
constructor(opt) {
this.lastReturn=0; this.density=opt.density;
this.delaylines=[]; [263,863,1319,1433,439,359,887,1399,233,1367,4253,2903].forEach(n=>this.delaylines.push(new Delayline(n)));
this.tap=[111,2250,311,1150,511,50,4411,540];
this.dry=1-opt.mix; this.wet=opt.mix*0.25;
}
allpass(dl,x,k) { var i=x-dl.lastOut*k; var y=dl.lastOut+k*i; dl.process(i); return y; }
process(input) {
var inv=input[0]+input[1];
var v=this.lastReturn, dls=this.delaylines;
v=this.allpass(dls[0],v+inv,.5); v=this.allpass(dls[1],v,.5); dls[2].process(v); v=dls[2].lastOut*this.density;
v=this.allpass(dls[3],v+inv,.5); v=this.allpass(dls[4],v,.5); dls[5].process(v); v=dls[5].lastOut*this.density;
v=this.allpass(dls[6],v+inv,.5); v=this.allpass(dls[7],v,.5); dls[8].process(v); v=dls[8].lastOut*this.density;
v=this.allpass(dls[9],v+inv,.5); v=this.allpass(dls[10],v,.5); dls[11].process(v); v=dls[11].lastOut*this.density;
this.lastReturn=v;
var ret=[0,0];
ret[0]+=dls[2].tap(this.tap[0]); ret[1]+=dls[2].tap(this.tap[1]);
ret[0]+=dls[5].tap(this.tap[2]); ret[1]+=dls[5].tap(this.tap[3]);
ret[0]+=dls[8].tap(this.tap[4]); ret[1]+=dls[8].tap(this.tap[5]);
ret[0]+=dls[11].tap(this.tap[6]); ret[1]+=dls[11].tap(this.tap[7]);
return [ret[0]*this.wet+input[0]*this.dry, ret[1]*this.wet+input[1]*this.dry];
}
}, {mix: 0.75, density: 0.7});
const sharedRev = rev.createShared({mix: 0.75, density: 0.7});
// Parse encoded voice data: "sleep,midi,dur;sleep,midi,dur;..." or "sleep,0,count,m1,d1,m2,d2,...;..."
function parseVoice(str) {
const events = [];
const parts = str.split(';');
for (const p of parts) {
const nums = p.split(',').map(Number);
const sleep = nums[0] / 48;
if (nums[1] === 0) {
const count = nums[2];
const chord = [];
for (let i = 0; i < count; i++) {
chord.push({note: nums[3+i*2], dur: nums[4+i*2]/48});
}
events.push({sleep, chord});
} else {
events.push({sleep, chord: [{note: nums[1], dur: nums[2]/48}]});
}
}
return events;
}
const RH1="0,0,2,69,24,81,24;30,0,2,67,3,79,3;3,0,2,65,3,77,3;3,0,2,64,3,76,3;3,0,2,62,3,74,3;3,0,2,61,6,73,6;6,0,2,62,12,74,12;48,69,24;30,64,6;6,65,6;6,61,6;6,62,12;192,0,3,58,96,61,96,64,96;96,0,2,57,48,62,48;132,61,12;12,62,8;8,64,8;8,61,8;8,62,8;8,64,8;8,61,8;8,62,8;8,64,8;8,61,8;8,62,12;12,64,12;12,65,8;8,67,8;8,64,8;8,65,8;8,67,8;8,64,8;8,65,8;8,67,8;8,64,8;8,65,12;12,67,12;12,69,8;8,70,8;8,67,8;8,69,8;8,70,8;8,67,8;8,69,8;8,70,8;8,67,8;8,69,12;108,73,12;12,74,8;8,76,8;8,73,8;8,74,8;8,76,8;8,73,8;8,74,8;8,76,8;8,73,8;8,74,12;12,76,12;12,77,8;8,79,8;8,76,8;8,77,8;8,79,8;8,76,8;8,77,8;8,79,8;8,76,8;8,77,12;12,79,12;12,81,8;8,82,8;8,79,8;8,81,8;8,82,8;8,79,8;8,81,8;8,82,8;8,79,8;8,81,12;108,81,12;12,79,8;8,82,8;8,76,8;8,79,8;8,82,8;8,76,8;8,77,8;8,81,8;8,74,8;8,77,8;8,81,8;8,74,8;8,76,8;8,79,8;8,72,8;8,76,8;8,79,8;8,72,8;8,74,8;8,77,8;8,70,8;8,74,8;8,77,8;8,70,8;8,72,8;8,76,8;8,69,8;8,72,8;8,76,8;8,69,8;8,70,8;8,74,8;8,67,8;8,70,8;8,74,8;8,67,8;8,69,8;8,72,8;8,65,8;8,69,8;8,72,8;8,65,8;8,67,8;8,70,8;8,64,8;8,67,8;8,70,8;8,64,8;8,65,8;8,69,8;8,62,8;8,65,8;8,69,8;8,62,8;8,64,8;8,67,8;8,61,8;8,64,8;8,67,8;8,61,8;56,0,4,61,96,64,96,67,96,70,102;102,69,6;6,67,6;6,65,6;6,64,6;6,62,6;6,61,6;6,59,6;6,61,12;12,57,12;12,61,12;12,64,6;6,67,6;6,65,36;36,64,12;12,0,2,62,48,65,48;84,69,12;12,74,12;12,76,12;12,77,12;12,74,12;12,76,12;12,77,12;12,79,12;12,76,12;12,77,12;12,79,12;12,81,12;12,77,12;12,79,12;12,81,12;12,82,12;12,79,12;12,81,12;12,77,12;12,79,12;12,76,12;12,77,12;12,74,12;12,76,12;12,73,12;12,74,12;12,69,12;12,70,12;12,67,12;12,69,12;12,65,12;12,67,12;12,64,12;12,65,12;12,62,12;12,67,12;12,64,12;12,65,12;12,62,12;12,64,12;12,61,12;12,62,12;12,57,12;12,58,12;12,55,12;12,57,12;12,53,12;12,55,12;12,52,12;12,53,12;12,50,12;12,55,12;12,52,12;12,53,12;12,50,12;12,52,12;12,49,12;12,50,24;24,62,6;6,65,6;6,70,6;6,65,6;6,60,6;6,64,6;6,69,6;6,64,6;12,62,6;6,67,6;6,62,6;12,61,6;6,64,6;6,69,6;6,62,12;12,0,2,65,12,70,12;24,0,2,64,12,69,12;24,0,2,62,12,67,12;12,0,3,61,24,64,24,69,24;24,62,6;6,65,6;6,70,6;6,65,6;6,60,6;6,64,6;6,69,6;6,64,6;12,62,6;6,67,6;6,62,6;12,61,6;6,64,6;6,69,6;6,62,12;12,0,2,65,12,70,12;24,0,2,64,12,69,12;24,0,2,62,12,67,12;12,0,3,61,48,64,48,69,54;54,67,6;6,65,6;6,64,6;6,62,6;6,61,6;6,59,6;6,61,6;6,57,6;6,59,6;6,61,6;6,62,6;6,64,6;6,65,6;6,67,6;6,69,6;6,67,6;6,65,6;6,64,6;6,65,6;6,62,6;6,65,6;6,69,6;6,73,6;6,74,6;6,69,6;6,71,6;6,73,6;6,74,6;6,76,6;6,77,3;3,79,3;3,81,6;6,82,24;24,74,12;12,0,2,77,12,82,12;12,69,12;12,0,2,76,12,81,12;12,70,12;12,0,2,74,12,79,12;12,0,4,64,24,73,24,76,24,81,24;24,74,6;6,77,6;6,82,6;6,77,6;6,72,6;6,76,6;6,81,6;6,76,6;6,70,6;6,74,6;6,79,6;6,74,6;6,69,6;6,73,6;6,76,6;6,81,6;6,74,12;12,0,2,77,12,82,12;12,69,12;12,0,2,76,12,81,12;12,70,12;12,0,2,74,12,79,12;12,0,4,64,24,73,24,76,24,81,24;24,0,2,65,24,71,24;24,0,2,69,48,73,36;36,71,12;12,69,12;12,73,12;12,76,6;6,79,6;6,82,12;12,81,6;6,79,6;6,77,6;6,76,6;6,77,6;6,76,6;6,74,6;6,73,6;6,74,6;6,72,6;6,70,6;6,69,6;6,67,6;6,65,6;6,64,6;6,62,6;6,0,3,70,96,73,104,76,96;104,76,8;8,73,8;8,70,8;8,73,8;8,70,8;8,73,8;8,76,8;8,73,8;8,70,8;8,73,8;8,70,8;8,73,8;8,76,8;8,73,8;8,70,8;8,73,8;8,70,8;8,73,8;8,76,8;8,73,8;8,70,8;8,73,8;8,70,8;8,67,8;8,70,8;8,67,8;8,64,8;8,67,8;8,64,8;8,67,8;8,70,8;8,67,8;8,64,8;8,67,8;8,70,8;8,67,8;8,70,8;8,67,8;8,64,8;8,67,8;8,64,8;8,67,8;8,70,8;8,67,8;8,64,8;8,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,58,8;8,61,8;8,58,8;8,61,8;8,64,8;8,61,8;8,58,8;8,61,8;8,58,8;8,61,8;8,64,8;8,61,8;8,58,8;8,61,8;8,58,8;8,61,8;8,64,8;8,61,8;8,58,8;8,61,8;8,58,8;8,61,8;8,64,8;8,61,8;8,64,8;8,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,67,8;8,64,8;8,67,8;8,70,8;8,67,8;8,70,8;8,67,8;8,70,8;8,67,8;8,70,8;8,67,8;8,70,8;8,67,8;8,70,8;8,73,8;8,70,8;8,73,8;8,76,8;8,73,8;8,76,8;8,73,8;8,76,8;8,73,8;8,76,8;8,73,8;8,76,8;8,0,6,61,48,64,48,69,48,73,48,76,48,81,48;48,0,6,62,48,65,48,69,48,74,48,77,48,81,48;48,0,5,62,48,67,48,70,48,74,48,79,48;96,0,6,61,48,64,48,69,48,73,48,76,48,79,48;180,0,3,64,12,69,12,73,12;12,0,4,62,24,65,24,69,24,74,24;24,0,2,62,48,65,24;24,64,48;24,61,24;24,62,96;492,74,12;12,72,12;12,74,12;12,70,12;12,74,12;12,69,12;12,74,12;12,67,12;12,74,12;12,66,12;12,74,12;12,67,12;12,74,12;12,69,12;12,74,12;12,70,12;12,74,12;12,62,12;12,74,12;12,64,12;12,74,12;12,66,12;12,74,12;12,67,12;12,74,12;12,66,12;12,74,12;12,67,12;12,74,12;12,69,12;12,74,12;12,70,24;24,74,24;24,70,24;24,74,24;24,75,24;24,67,24;24,75,24;24,67,24;24,72,24;24,69,24;24,72,24;24,69,24;24,74,24;24,65,24;24,74,24;24,65,24;24,70,24;24,67,24;24,70,24;24,67,24;24,73,24;24,64,24;24,73,24;24,64,24;24,69,24;24,65,24;24,69,24;24,65,24;24,67,24;24,61,24;24,67,24;24,61,24;24,65,24;24,62,24;24,65,24;24,62,24;24,64,24;24,58,24;24,64,24;24,58,24;36,81,12;12,79,12;12,81,12;12,77,12;12,81,12;12,76,12;12,81,12;12,74,12;12,81,12;12,73,12;12,81,12;12,74,12;12,81,12;12,76,12;12,81,12;12,77,12;12,81,12;12,69,12;12,81,12;12,71,12;12,81,12;12,73,12;12,81,12;12,74,12;12,81,12;12,73,12;12,81,12;12,74,12;12,81,12;12,76,12;12,81,12;12,77,12;12,81,12;12,76,12;12,81,12;12,74,12;12,81,12;12,72,12;12,81,12;12,70,12;12,81,12;12,72,12;12,81,12;12,74,12;12,79,12;12,70,12;12,79,12;12,76,12;12,79,12;12,74,12;12,79,12;12,72,12;12,79,12;12,70,12;12,79,12;12,69,12;12,79,12;12,70,12;12,79,12;12,72,12;12,77,12;12,69,12;12,77,12;12,74,12;12,77,12;12,72,12;12,77,12;12,70,12;12,77,12;12,69,12;12,77,12;12,67,12;12,77,12;12,69,12;12,77,12;12,70,12;12,76,12;12,67,12;12,76,12;12,73,12;12,76,12;12,70,12;12,76,12;12,69,12;12,76,12;12,67,12;12,76,12;12,65,12;12,76,12;12,67,12;12,76,12;12,69,12;12,74,12;12,65,12;12,74,12;12,64,12;12,76,12;12,64,12;12,76,12;12,65,12;12,74,12;12,65,12;12,74,12;12,70,12;12,73,12;12,70,12;12,73,12;12,69,12;12,74,12;12,65,12;12,74,12;12,64,12;12,76,12;12,64,12;12,76,12;12,65,12;12,74,12;12,65,12;12,74,12;24,74,12;12,73,12;12,74,12;12,71,12;12,74,12;12,73,12;12,71,12;12,73,48;12,69,12;12,67,12;12,69,12;12,64,12;12,67,12;12,65,12;12,64,12;12,65,48;12,74,12;12,73,12;12,74,12;12,0,2,62,48,77,12;12,74,12;12,73,12;12,71,12;12,0,2,57,12,73,48;12,69,12;12,67,12;12,69,12;12,0,2,61,12,76,72;12,67,12;12,65,12;12,64,12;12,65,48;24,74,48;24,64,48;24,73,24;24,0,2,62,24,72,48;24,69,48;24,70,48;24,67,72;24,69,48;48,0,2,66,48,69,48;48,0,2,65,48,67,48;48,0,2,63,72,67,48;48,66,24;24,0,2,62,24,69,48;24,66,24;24,0,2,72,48,75,24;24,74,48;24,70,12;12,69,12;12,70,24;24,0,2,70,24,79,48;24,69,48;24,78,24;24,0,2,74,24,79,48;24,72,24;24,70,24;24,0,2,69,24,74,24;24,0,2,70,24,74,24;24,0,2,66,24,74,24;24,0,2,67,24,74,24;24,0,2,66,24,74,24;24,0,2,67,24,74,24;24,0,2,69,24,74,24;24,0,2,70,24,74,24;24,0,2,69,24,74,24;24,0,2,70,24,74,24;24,0,2,66,24,74,24;24,0,2,67,12,74,12;12,0,2,70,12,79,12;12,0,2,69,12,77,12;12,0,2,70,12,79,12;12,0,2,67,12,76,12;12,0,2,69,12,77,12;12,0,2,65,12,74,12;12,0,2,67,12,76,12;12,0,2,64,12,72,12;12,0,2,72,12,81,12;12,0,2,70,12,79,12;12,0,2,72,12,81,12;12,0,2,69,12,77,12;12,0,2,70,12,79,12;12,0,2,67,12,76,12;12,0,2,69,12,77,12;12,0,2,65,12,74,12;12,0,2,74,12,82,12;12,0,2,72,12,81,12;12,0,2,74,12,82,12;12,0,2,70,12,79,12;12,0,2,72,12,81,12;12,0,2,69,12,77,12;12,0,2,70,12,79,12;12,0,2,67,12,76,12;12,0,2,76,12,84,12;12,0,2,74,12,82,12;12,0,2,76,12,84,12;12,0,2,72,12,81,12;12,0,2,74,12,82,12;12,0,2,70,12,79,12;12,0,2,72,12,81,12;12,0,2,69,24,77,12;12,75,12;12,0,2,65,24,74,12;12,72,12;12,0,2,70,12,74,12;12,0,2,69,12,72,12;12,0,2,67,12,70,12;12,0,2,65,12,69,12;12,0,2,67,12,70,12;12,0,2,70,12,74,12;12,0,2,67,12,70,12;12,0,2,65,12,69,12;12,0,2,64,12,67,12;12,0,2,67,12,70,12;12,0,2,64,12,67,12;12,0,2,62,12,65,12;12,0,2,60,12,64,12;12,0,2,62,12,65,12;12,0,2,64,12,67,12;12,0,2,65,12,69,12;12,0,2,67,24,70,12;12,74,12;12,0,2,64,24,72,12;12,70,12;12,0,2,65,48,69,48;48,72,24;24,70,24;24,69,24;24,67,24;24,69,24;24,70,24;24,72,24;24,64,24;24,65,24;24,67,24;24,69,24;24,67,24;24,69,24;24,70,24;24,72,12;12,70,12;12,69,12;12,67,12;12,65,12;12,63,12;12,62,12;12,60,12;12,0,2,58,24,74,12;12,72,12;12,70,12;12,69,12;12,67,12;12,65,12;12,64,12;12,62,12;12,0,2,60,24,76,12;12,74,12;12,72,12;12,70,12;12,69,12;12,67,12;12,65,12;12,64,12;12,0,2,62,24,77,12;12,76,12;12,74,12;12,72,12;12,70,12;12,69,12;12,67,12;12,65,12;12,0,2,64,24,79,12;12,77,12;12,76,12;12,74,12;12,72,12;12,70,12;12,69,12;12,67,12;12,0,2,65,24,81,12;12,77,12;12,76,12;12,77,12;12,72,24;12,77,12;12,76,12;12,77,12;12,0,2,65,24,81,12;12,77,12;12,76,12;12,77,12;12,72,24;12,77,12;12,76,12;12,77,12;12,0,2,64,24,79,12;12,76,12;12,74,12;12,76,12;12,72,24;12,76,12;12,74,12;12,76,12;12,0,2,64,24,79,12;12,76,12;12,74,12;12,76,12;12,72,24;12,76,12;12,74,12;12,76,12;12,0,2,65,24,81,12;12,77,12;12,76,12;12,77,12;12,72,24;12,77,12;12,76,12;12,77,12;12,0,2,65,24,81,12;12,77,12;12,76,12;12,77,12;12,72,24;12,77,12;12,76,12;12,77,12;12,0,2,64,24,79,12;12,76,12;12,74,12;12,76,12;12,72,24;12,76,12;12,74,12;12,76,12;12,0,2,64,24,79,12;12,76,12;12,74,12;12,76,12;12,72,24;12,76,12;12,74,12;12,76,12;12,0,2,62,24,77,12;12,79,12;12,77,12;12,76,12;12,74,12;12,72,12;12,71,12;12,69,12;12,71,12;12,67,12;12,71,12;12,74,12;12,77,12;12,81,12;12,77,12;12,74,12;12,71,12;12,67,12;12,71,12;12,74,12;12,77,12;12,81,12;12,77,12;12,74,12;12,70,12;12,67,12;12,70,12;12,72,12;12,76,12;12,79,12;12,76,12;12,72,12;12,70,12;12,67,12;12,70,12;12,72,12;12,76,12;12,79,12;12,76,12;12,72,12;12,69,12;12,65,12;12,69,12;12,72,12;12,74,12;12,77,12;12,74,12;12,70,12;12,69,12;12,65,12;12,69,12;12,72,12;12,74,12;12,77,12;12,74,12;12,70,12;12,67,12;12,64,12;12,67,12;12,70,12;12,73,12;12,76,12;12,73,12;12,70,12;12,67,12;12,64,12;12,67,12;12,70,12;12,73,12;12,76,12;12,73,12;12,70,12;24,81,12;12,79,12;12,81,12;12,77,12;12,81,12;12,76,12;12,81,12;12,74,12;12,81,12;12,73,12;12,81,12;12,74,12;12,81,12;12,76,12;12,81,12;12,77,12;12,81,12;12,69,12;12,81,12;12,71,12;12,81,12;12,73,12;12,81,12;12,74,12;12,81,12;12,73,12;12,81,12;12,74,24;24,76,24;24,74,24;24,0,2,69,24,72,24;24,0,2,67,24,70,24;24,0,2,66,24,69,24;24,0,2,67,24,70,12;12,69,12;12,67,12;12,65,12;12,64,12;12,62,12;12,61,12;12,59,12;1020,62,12;12,65,12;12,62,12;72,62,12;12,65,12;12,62,12;264,62,12;12,65,12;12,62,12;72,62,12;12,65,12;12,62,12;72,61,12;12,64,12;12,61,12;12,58,12;60,61,12;12,64,12;12,61,12;12,58,12;60,62,12;12,65,12;12,62,12;36,62,12;12,58,12;420,65,12;12,64,12;12,62,12;12,69,12;60,76,12;12,74,12;12,73,12;12,74,12;12,75,6;6,74,6;6,72,6;6,70,6;6,69,6;6,67,6;6,66,24;24,69,48;48,67,24;24,72,24;24,71,24;24,75,24;24,74,24;24,75,24;24,71,24;24,72,24;24,71,24;24,72,24;24,74,24;24,75,24;24,74,24;24,75,24;24,77,24;24,79,396;396,79,12;12,77,12;12,79,12;12,75,12;12,77,12;12,74,12;12,75,12;12,72,12;12,77,12;12,75,12;12,77,12;12,74,12;12,75,12;12,72,12;12,74,12;12,70,12;12,75,12;12,74,12;12,75,12;12,72,12;12,74,12;12,70,12;12,72,12;12,69,12;12,74,12;12,72,12;12,74,12;12,70,12;12,72,12;12,69,12;12,70,12;12,67,12;12,70,12;12,69,12;12,70,12;12,72,12;12,70,12;12,69,12;12,67,12;12,66,24;24,69,24;24,74,12;12,67,12;12,72,12;12,66,12;12,70,12;12,67,12;12,74,12;12,69,12;12,70,12;12,67,12;12,69,12;12,66,12;12,67,12;12,74,12;12,66,12;12,74,12;12,67,12;12,74,12;12,69,12;12,74,12;12,70,12;12,67,12;12,74,12;12,69,12;12,70,12;12,67,12;12,72,12;12,69,12;12,74,12;12,72,12;12,70,12;12,69,12;12,70,12;12,69,12;12,70,12;12,67,12;12,69,12;12,70,12;12,72,12;12,74,12;12,75,12;12,74,12;12,72,12;12,74,12;12,70,12;12,72,12;12,69,12;12,70,12;12,67,24;24,71,24;24,72,12;12,75,12;12,77,12;12,79,12;12,80,12;12,79,12;12,77,12;12,79,12;12,75,12;12,77,12;12,74,12;12,75,12;12,72,24;24,70,24;24,69,24;24,70,48;48,69,48;48,67,48;48,66,24;24,65,24;24,63,48;48,62,12;12,70,12;12,69,12;12,70,12;12,69,12;12,67,12;12,66,12;12,75,12;12,74,12;12,72,12;12,70,12;12,81,12;12,79,12;12,78,12;12,79,36;36,77,12;12,75,12;12,77,12;12,74,12;12,75,12;12,73,48;12,70,12;12,69,12;12,67,12;12,0,2,69,48,74,48;48,0,2,66,48,72,48;48,0,2,67,12,70,48;12,65,12;12,63,12;12,62,12;12,0,2,61,24,69,24;24,0,2,64,24,73,24;24,0,2,65,24,74,24;24,0,2,67,24,76,24;24,0,2,69,12,77,48;12,67,12;12,0,2,69,12,74,72;12,65,12;12,76,96;48,73,48;48,0,2,69,12,74,72;12,70,12;12,67,12;12,69,12;12,65,24;24,0,2,69,24,77,24;24,0,2,67,24,79,24;24,0,2,69,24,74,24;24,0,2,67,24,73,24;24,0,2,65,24,74,24;24,0,2,67,24,76,24;24,0,2,65,24,74,24;24,0,2,64,24,73,24;24,0,2,69,24,74,24;24,0,2,70,24,76,24;24,0,2,69,24,74,24;24,0,2,67,24,73,24;24,0,2,65,24,74,24;24,0,2,69,24,76,24;24,0,2,76,24,79,24;24,0,2,74,24,77,24;24,0,2,69,24,74,24;24,0,2,67,24,70,24;24,0,2,67,24,76,24;24,0,2,69,24,74,24;24,0,2,65,24,74,24;24,73,48;48,74,24;24,76,24;24,77,24;24,76,24;24,77,24;24,73,24;24,74,24;24,73,24;24,74,24;24,76,24;24,77,24;24,76,24;24,77,24;24,79,24;24,81,12;12,82,12;12,79,12;12,81,12;12,77,12;12,79,12;12,76,12;12,77,12;12,74,12;12,69,12;12,73,12;12,69,12;12,74,12;12,69,12;12,76,12;12,69,12;12,77,12;12,69,12;12,76,12;12,69,12;12,77,12;12,69,12;12,79,12;12,69,12;12,81,12;12,69,12;12,76,12;12,69,12;12,77,12;12,69,12;12,79,12;12,69,12;12,81,48;396,76,12;12,74,12;12,73,12;12,74,24;36,77,12;12,76,12;12,77,12;12,79,12;12,81,12;12,82,12;12,81,12;12,79,12;12,81,12;12,77,24;24,76,24;24,74,12;12,76,12;12,77,12;12,75,12;12,74,12;12,72,12;12,70,12;12,69,12;12,67,12;12,69,12;12,70,12;12,72,12;12,69,48;72,72,48;48,70,24;48,79,24;24,75,12;12,77,12;12,74,12;12,75,12;12,72,12;12,70,12;12,69,12;12,67,12;12,69,48;432,60,12;12,63,12;12,60,12;12,58,12;60,60,12;12,63,12;12,60,12;12,58,12;60,67,12;12,70,12;12,67,12;12,62,12;60,67,12;12,70,12;12,67,12;12,62,12;60,66,12;12,69,12;12,66,12;12,63,12;60,66,12;12,69,12;12,66,12;12,63,12;12,62,24;48,0,2,67,24,74,24;24,0,2,66,24,72,24;24,0,2,67,48,70,48;48,0,2,67,24,72,24;24,0,2,71,24,74,24;24,0,2,72,48,75,48;48,0,2,72,24,77,24;24,0,2,76,24,79,24;24,0,2,77,48,81,48;48,0,2,70,24,77,24;24,0,2,69,24,75,24;24,0,2,70,24,74,12;12,75,12;12,74,12;12,72,12;12,70,12;12,72,12;12,70,12;12,69,12;12,67,12;12,72,12;12,70,12;12,69,12;12,67,12;12,69,12;12,67,12;12,66,12;12,67,12;12,65,12;12,64,12;12,62,12;12,61,24;24,64,24;24,65,12;12,67,12;12,69,12;12,71,12;12,73,12;12,74,12;12,76,12;12,77,12;12,79,24;24,77,12;12,76,12;12,74,24;24,73,24;24,74,24;24,76,24;24,77,24;24,79,24;24,81,24;24,73,24;24,74,24;24,76,24;24,77,24;24,76,24;24,77,24;24,74,24;24,76,24;24,0,2,69,24,74,24;24,0,2,70,24,74,24;24,0,2,69,24,73,24;24,0,2,69,24,74,24;24,0,2,74,24,77,24;24,0,2,74,24,76,48;24,72,24;24,0,3,65,96,70,96,74,96;102,77,6;6,79,6;6,81,6;6,82,6;6,69,6;6,70,6;6,72,6;6,74,6;6,72,6;6,74,6;6,75,6;6,77,6;6,65,6;6,67,6;6,69,6;6,70,6;6,69,6;6,70,6;6,72,6;6,74,6;6,69,6;6,67,6;6,65,6;6,63,6;6,67,6;6,69,6;6,70,6;6,72,6;6,67,6;6,65,6;6,63,6;6,62,6;6,65,6;6,67,6;6,69,6;6,70,6;30,60,6;6,62,6;6,63,6;6,65,6;78,58,6;6,60,6;6,62,6;6,63,6;30,60,6;6,62,6;6,64,6;6,66,6;6,63,6;6,62,6;6,60,6;6,58,6;6,66,6;6,67,6;6,69,6;6,70,24;6,72,6;6,74,6;6,67,6;6,0,4,64,144,67,144,70,144,76,144;144,0,3,65,48,69,48,74,144;48,0,3,62,96,65,96,71,96;264,0,4,64,24,68,24,71,24,74,24;24,0,3,64,192,69,72,72,96;72,67,12;12,65,12;12,72,96;102,67,6;6,65,6;6,67,6;6,64,6;6,64,6;6,62,6;6,64,6;6,60,6;6,69,6;6,67,6;6,69,6;6,65,6;6,65,6;6,64,6;6,65,6;6,62,6;6,71,6;6,69,6;6,71,6;6,67,6;6,67,6;6,65,6;6,67,6;6,64,6;6,72,6;6,71,6;6,72,6;6,69,6;6,74,6;6,72,6;6,74,6;6,71,6;6,76,6;6,74,6;6,76,6;6,72,6;6,77,6;6,76,6;6,77,6;6,74,6;6,79,6;6,77,6;6,79,6;6,76,6;6,72,6;6,71,6;6,72,6;6,69,6;6,74,6;6,72,6;6,74,6;6,71,6;6,68,6;6,66,6;6,68,6;6,64,6;6,72,6;6,71,6;6,72,6;6,69,6;6,65,6;6,64,6;6,65,6;6,62,6;6,71,6;6,69,6;6,71,6;6,60,6;6,69,6;6,67,6;6,69,6;6,59,6;6,68,6;6,66,6;6,68,6;6,64,6;30,62,6;6,60,6;6,59,6;12,64,6;6,62,6;6,60,6;12,65,6;6,64,6;6,62,6;12,67,6;6,65,6;6,64,6;6,62,6;6,69,6;6,67,6;6,65,6;6,64,6;6,67,6;6,69,6;6,71,6;6,72,48;24,0,3,60,24,64,24,67,24;24,0,3,64,24,69,24,73,24;30,61,6;6,64,6;6,69,6;6,73,24;24,0,3,64,24,69,24,73,24;24,0,3,65,24,69,24,74,24;30,62,6;6,65,6;6,69,6;6,74,24;24,0,3,65,24,69,24,74,24;24,0,3,62,24,67,24,71,24;36,62,6;6,67,6;6,71,24;24,0,3,62,24,67,24,71,24;24,0,3,64,24,67,24,72,24;30,60,6;6,64,6;6,67,6;6,72,24;24,0,3,64,24,67,24,72,24;24,0,3,60,24,65,24,69,24;36,60,6;6,65,6;6,69,24;24,0,3,60,24,65,24,69,24;24,0,3,62,24,65,24,70,24;36,62,6;6,65,6;6,70,24;24,0,3,62,24,65,24,70,24;24,0,3,64,24,67,24,70,24;42,61,6;6,70,24;24,0,4,61,24,64,24,67,24,70,24;24,0,3,62,24,66,24,69,24;36,62,6;6,66,6;6,69,24;24,0,3,62,24,66,24,69,72;24,0,2,58,96,62,96;48,67,96;48,0,2,61,48,64,48;48,0,2,62,96,65,48;48,64,96;48,60,96;48,62,288;48,58,48;48,57,192";
const LH="96,57,24;30,52,6;6,53,6;6,49,6;6,50,12;48,0,2,45,24,57,24;30,0,2,43,3,55,3;3,0,2,41,3,53,3;3,0,2,40,3,52,3;3,0,2,38,3,50,3;3,0,2,37,6,49,6;6,0,2,38,12,50,12;96,0,3,49,96,52,96,55,108;96,50,48;12,52,12;12,54,24;108,49,12;12,50,8;8,52,8;8,49,8;8,50,8;8,52,8;8,49,8;8,50,8;8,52,8;8,49,8;8,50,12;12,52,12;12,53,8;8,55,8;8,52,8;8,53,8;8,55,8;8,52,8;8,53,8;8,55,8;8,52,8;8,53,12;12,55,12;12,57,8;8,58,8;8,55,8;8,57,8;8,58,8;8,55,8;8,57,8;8,58,8;8,55,8;8,57,12;108,61,12;12,62,8;8,64,8;8,61,8;8,62,8;8,64,8;8,61,8;8,62,8;8,64,8;8,61,8;8,62,12;12,64,12;12,65,8;8,67,8;8,64,8;8,65,8;8,67,8;8,64,8;8,65,8;8,67,8;8,64,8;8,65,12;12,67,12;12,69,8;8,70,8;8,67,8;8,69,8;8,70,8;8,67,8;8,69,8;8,70,8;8,67,8;8,69,12;108,69,12;12,67,8;8,70,8;8,64,8;8,67,8;8,70,8;8,64,8;8,65,8;8,69,8;8,62,8;8,65,8;8,69,8;8,62,8;8,64,8;8,67,8;8,60,8;8,64,8;8,67,8;8,60,8;8,62,8;8,65,8;8,58,8;8,62,8;8,65,8;8,58,8;8,60,8;8,64,8;8,57,8;8,60,8;8,64,8;8,57,8;8,58,8;8,62,8;8,55,8;8,58,8;8,62,8;8,55,8;8,57,8;8,60,8;8,53,8;8,57,8;8,60,8;8,53,8;8,55,8;8,58,8;8,52,8;8,55,8;8,58,8;8,52,8;8,53,8;8,57,8;8,50,8;8,53,8;8,57,8;8,50,8;8,52,8;8,55,8;8,49,8;8,52,8;8,55,8;8,49,8;56,0,4,49,96,52,96,55,96,58,96;240,50,48;102,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,6;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,6;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,6;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,12;12,69,6;78,58,6;24,57,6;48,57,12;24,58,12;24,52,24;72,58,6;24,57,6;48,57,12;24,58,12;24,52,48;552,0,2,59,24,62,24;24,0,2,57,48,64,48;192,0,3,61,96,64,104,67,96;104,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,67,8;8,64,8;8,61,8;8,64,8;8,61,8;8,58,8;8,61,8;8,58,8;8,55,8;8,58,8;8,55,8;8,58,8;8,61,8;8,58,8;8,55,8;8,58,8;8,55,8;8,58,8;8,61,8;8,58,8;8,55,8;8,58,8;8,55,8;8,58,8;8,61,8;8,58,8;8,55,8;8,58,8;8,55,8;8,52,8;8,55,8;8,52,8;8,49,8;8,52,8;8,49,8;8,52,8;8,55,8;8,52,8;8,49,8;8,52,8;8,49,8;8,52,8;8,55,8;8,52,8;8,49,8;8,52,8;8,49,8;8,52,8;8,55,8;8,52,8;8,49,8;8,52,8;8,49,8;8,52,8;8,55,8;8,52,8;8,55,8;8,58,8;8,55,8;8,52,8;8,55,8;8,52,8;8,55,8;8,58,8;8,55,8;8,52,8;8,55,8;8,52,8;8,55,8;8,58,8;8,55,8;8,52,8;8,55,8;8,52,8;8,55,8;8,58,8;8,55,8;8,52,8;8,55,8;8,52,8;8,55,8;8,52,8;8,55,8;8,58,8;8,61,8;8,58,8;8,61,8;8,58,8;8,61,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,61,8;8,64,8;8,61,8;8,57,48;48,57,48;324,57,12;12,57,24;24,57,60;60,55,36;12,0,2,50,96,57,96;24,53,12;12,52,12;12,53,48;60,69,12;12,67,12;12,69,12;12,65,12;12,69,12;12,64,12;12,69,12;12,62,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,64,12;12,69,12;12,65,12;12,69,12;12,57,12;12,69,12;12,59,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,64,12;12,69,12;12,65,24;24,66,24;24,67,24;24,60,24;24,58,24;24,57,24;24,58,24;24,60,24;24,62,24;24,54,24;24,55,24;24,57,24;24,58,24;24,57,24;24,58,24;24,54,24;24,55,12;12,67,12;12,55,12;12,67,12;12,62,12;12,67,12;12,62,12;12,67,12;12,60,12;12,63,12;12,60,12;12,63,12;12,60,12;12,63,12;12,60,12;12,63,12;12,60,12;12,65,12;12,60,12;12,65,12;12,60,12;12,65,12;12,60,12;12,65,12;12,58,12;12,62,12;12,58,12;12,62,12;12,58,12;12,62,12;12,58,12;12,62,12;12,58,12;12,64,12;12,58,12;12,64,12;12,58,12;12,64,12;12,58,12;12,64,12;12,57,12;12,61,12;12,57,12;12,61,12;12,57,12;12,61,12;12,57,12;12,61,12;12,53,12;12,62,12;12,53,12;12,62,12;12,53,12;12,62,12;12,53,12;12,62,12;12,52,12;12,58,12;12,52,12;12,58,12;12,52,12;12,58,12;12,52,12;12,58,12;12,50,12;12,57,12;12,50,12;12,57,12;12,50,12;12,57,12;12,50,12;12,57,12;12,52,12;12,55,12;12,52,12;12,55,12;12,52,12;12,55,12;12,52,12;12,55,12;12,0,2,53,24,57,24;24,0,2,52,24,57,24;24,0,2,50,24,57,24;24,0,2,55,24,57,24;24,0,2,53,24,57,24;24,0,2,52,24,57,24;24,0,2,53,24,57,24;24,0,2,49,24,57,24;24,0,2,50,24,57,24;24,0,2,49,24,57,24;24,0,2,50,24,57,24;24,0,2,52,24,57,24;24,0,2,53,24,57,24;24,0,2,52,24,57,24;24,0,2,53,24,57,24;24,0,2,49,24,57,24;24,0,2,50,48,57,48;48,0,2,53,48,62,48;48,0,2,55,48,62,48;96,0,2,48,48,60,48;48,0,2,52,48,60,48;48,0,2,53,48,60,48;96,0,2,46,48,58,48;48,0,2,50,48,58,48;48,0,2,52,48,58,48;96,0,2,45,48,57,48;48,0,2,49,48,57,48;48,0,2,50,48,57,48;72,0,2,53,24,62,24;24,0,2,58,24,61,24;24,0,2,58,24,61,24;24,0,2,57,24,62,24;24,0,2,57,24,62,24;24,0,2,55,48,64,48;72,0,2,57,24,62,24;24,0,2,58,24,61,24;24,0,2,58,24,61,24;24,0,2,57,24,62,24;24,0,2,57,24,62,24;24,0,2,56,48,64,48;396,62,12;12,61,12;12,62,12;12,57,12;12,57,12;12,55,12;12,57,12;12,54,12;12,62,12;12,61,12;12,62,12;12,55,12;12,65,12;12,63,12;12,62,12;12,61,12;12,64,12;12,57,12;12,61,12;12,50,12;12,63,12;12,62,12;12,60,12;12,59,12;12,62,12;12,55,12;12,59,12;12,48,12;12,62,12;12,60,12;12,58,12;12,57,12;12,60,12;12,54,12;12,57,12;12,50,12;12,60,12;12,58,12;12,57,12;12,58,12;12,69,12;12,67,12;12,66,12;12,67,12;12,58,12;12,57,12;12,55,12;12,62,48;72,62,24;24,62,24;24,62,24;24,62,24;24,60,24;24,58,24;24,62,24;24,62,24;24,60,24;24,58,24;24,62,24;24,62,24;24,60,24;24,58,48;684,60,12;12,58,12;12,60,12;12,57,12;12,60,12;12,55,12;12,60,12;12,53,12;12,60,12;12,52,12;12,60,12;12,53,12;12,60,12;12,55,12;12,60,12;12,57,12;12,60,12;12,48,12;12,60,12;12,50,12;12,60,12;12,52,12;12,60,12;12,53,12;12,60,12;12,52,12;12,60,12;12,53,12;12,60,12;12,55,12;12,60,12;12,57,48;2112,69,24;24,73,24;24,74,24;24,67,24;24,65,24;24,69,24;24,71,24;24,73,24;24,74,24;24,73,24;24,74,24;24,76,24;24,77,24;24,76,24;24,77,24;12,69,12;12,0,2,67,12,73,24;12,69,12;24,66,12;12,64,12;12,66,12;24,62,12;12,60,12;12,62,12;12,58,12;12,60,12;12,58,12;12,57,12;12,55,12;12,53,12;12,52,12;12,50,12;12,49,12;12,45,12;12,49,12;12,52,12;12,55,12;12,58,12;12,55,12;12,52,12;12,49,12;12,45,12;12,49,12;12,52,12;12,55,12;12,58,12;12,55,12;12,52,12;12,50,12;12,45,12;12,50,12;12,53,12;12,57,12;12,62,12;12,57,12;12,53,12;12,50,12;12,45,12;12,50,12;12,53,12;12,57,12;12,62,12;12,57,12;12,53,12;12,49,12;12,45,12;12,49,12;12,52,12;12,55,12;12,58,12;12,55,12;12,52,12;12,49,12;12,45,12;12,49,12;12,52,12;12,55,12;12,58,12;12,55,12;12,52,12;12,50,12;12,45,12;12,50,12;12,53,12;12,57,12;12,62,12;12,57,12;12,53,12;12,50,12;12,45,12;12,50,12;12,53,12;12,57,12;12,62,12;12,57,12;12,53,12;12,52,12;12,49,12;12,52,12;12,55,12;12,58,12;12,61,12;12,58,12;12,55,12;12,52,12;12,49,12;12,52,12;12,55,12;12,58,12;12,61,12;12,58,12;12,55,12;12,53,12;12,50,12;12,53,12;12,57,12;48,57,12;12,53,12;12,50,12;12,53,12;12,57,12;48,57,12;12,52,12;12,49,12;12,52,12;12,55,12;12,58,12;12,61,12;12,58,12;12,55,12;12,52,12;12,49,12;12,52,12;12,55,12;12,58,12;12,61,12;12,58,12;12,55,12;12,53,12;12,50,12;12,53,12;12,57,12;48,57,12;12,53,12;12,50,12;12,53,12;12,57,12;48,57,12;12,55,12;12,52,12;12,55,12;12,58,12;60,55,12;12,52,12;12,55,12;12,58,12;60,57,12;12,53,12;12,57,12;12,61,12;48,57,12;12,58,12;36,55,12;12,53,12;12,57,12;12,53,12;12,50,12;12,45,12;12,50,12;12,45,12;12,41,12;12,38,12;12,50,12;12,49,12;12,47,12;12,49,12;12,58,12;12,57,12;12,55,12;12,53,12;12,55,12;12,53,12;12,52,12;12,50,12;12,58,12;12,57,12;12,55,12;12,53,12;12,55,12;12,53,12;12,52,12;12,50,12;12,52,6;6,53,6;6,55,6;6,57,6;6,59,6;6,61,6;6,62,12;48,57,12;12,59,6;6,61,6;6,62,6;6,64,6;6,65,6;6,67,6;6,69,12;12,67,12;12,65,12;12,64,12;12,65,24;60,63,12;12,62,12;12,60,12;12,58,24;24,59,24;24,60,24;24,67,24;24,67,300;300,67,12;12,65,12;12,67,12;12,63,12;12,67,12;12,62,12;12,67,12;12,60,12;12,67,12;12,59,12;12,67,12;12,60,12;12,67,12;12,62,12;12,67,12;12,63,12;12,67,12;12,55,12;12,67,12;12,57,12;12,67,12;12,59,12;12,67,12;12,60,12;12,67,12;12,59,12;12,67,12;12,60,12;12,67,12;12,62,12;12,62,12;12,63,24;24,62,24;24,67,12;12,68,12;12,65,12;12,67,12;12,63,24;24,60,24;24,65,12;12,67,12;12,63,12;12,65,12;12,62,24;24,58,24;24,63,12;12,65,12;12,62,12;12,63,12;12,60,24;24,66,24;24,67,12;12,69,12;12,65,12;12,67,12;12,63,12;12,67,12;12,66,12;12,67,12;12,69,12;12,67,12;12,66,12;12,64,12;24,62,12;12,60,12;12,62,12;12,58,12;12,62,12;12,57,12;12,62,12;12,55,12;12,62,12;12,54,12;12,62,12;12,55,12;12,62,12;12,57,12;12,62,12;12,58,12;12,62,12;12,50,12;12,62,12;12,52,12;12,62,12;12,54,12;12,62,12;12,55,12;12,62,12;12,54,12;12,62,12;12,55,12;12,62,12;12,57,12;12,62,12;12,58,24;24,57,24;24,55,96;96,54,48;48,55,24;24,57,24;24,58,12;12,57,12;12,55,12;12,53,12;12,51,24;24,63,24;24,62,48;48,60,24;24,62,24;24,63,12;12,65,12;12,62,12;12,63,12;12,60,12;12,63,12;12,62,12;12,65,12;12,67,12;12,65,12;12,63,12;12,65,12;12,62,12;12,58,12;12,63,12;12,62,12;12,61,12;12,57,12;12,62,12;12,60,12;12,59,12;12,55,12;12,60,12;12,58,12;12,57,12;12,53,12;12,58,12;12,62,12;12,60,12;12,62,12;12,60,12;12,58,12;12,57,12;12,60,12;12,58,12;12,57,12;12,55,12;12,60,12;12,58,12;12,57,12;12,58,12;12,60,12;12,58,12;12,57,12;12,55,12;12,57,12;12,53,12;12,55,12;12,52,48;48,54,48;12,63,12;12,62,12;12,60,12;12,0,2,50,48,62,12;12,60,12;12,58,12;12,57,12;12,55,48;48,57,12;12,58,12;12,57,12;12,55,12;12,53,12;12,55,12;12,52,12;12,57,12;12,50,48;48,67,12;12,69,12;12,67,12;12,69,12;12,70,12;12,69,12;12,67,12;12,69,12;12,65,12;12,67,12;12,64,12;12,65,12;12,62,12;12,60,12;12,58,12;12,57,12;12,58,12;12,57,12;12,55,12;12,53,12;12,52,12;12,53,12;12,52,12;12,50,12;12,49,12;12,45,12;12,50,12;12,45,12;12,52,12;12,45,12;12,53,12;12,45,12;12,55,12;12,45,12;12,53,12;12,45,12;12,52,12;12,45,12;12,50,12;12,45,12;12,49,12;12,57,12;12,45,12;12,57,12;12,50,12;12,57,12;12,53,12;12,62,12;12,53,12;12,62,12;12,52,12;12,61,12;12,53,12;12,62,12;12,50,12;12,62,12;12,0,2,57,216,64,12;12,69,12;12,67,12;12,69,12;12,65,12;12,69,12;12,64,12;12,69,12;12,62,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,64,12;12,69,12;12,65,12;12,69,12;12,57,600;12,69,12;12,59,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,64,12;12,69,12;12,65,24;24,64,24;24,62,24;24,67,24;24,65,24;24,64,24;24,65,24;24,61,24;24,62,24;24,61,24;24,62,24;24,59,24;24,61,24;24,67,24;24,65,24;24,62,24;24,61,48;396,67,12;12,65,12;12,64,12;12,65,12;12,61,12;12,62,72;72,61,48;48,62,12;12,69,12;12,71,12;12,73,12;12,74,24;24,72,24;24,65,72;72,63,36;36,60,12;12,57,12;12,53,12;12,57,12;12,60,12;12,63,12;12,60,12;12,62,12;12,58,12;12,55,12;12,50,12;12,55,12;12,58,12;12,62,12;12,67,12;12,60,12;12,62,12;12,58,12;12,60,12;12,57,12;12,55,12;12,54,12;12,52,12;12,54,12;12,50,12;12,54,12;12,55,12;12,57,12;12,62,12;12,57,12;12,55,12;12,54,12;12,50,12;12,54,12;12,55,12;12,57,12;12,62,12;12,57,12;12,54,12;12,55,12;12,50,12;12,55,12;12,57,12;12,58,12;12,62,12;12,58,12;12,57,12;12,55,12;12,50,12;12,55,12;12,57,12;12,58,12;12,62,12;12,60,12;12,58,12;12,57,12;12,54,12;12,57,12;12,58,12;60,57,12;12,54,12;12,57,12;12,58,12;60,57,12;12,58,12;12,62,12;12,66,12;60,58,12;12,55,12;12,58,12;12,62,12;60,60,12;12,57,12;12,60,12;12,63,12;60,60,12;12,57,12;12,60,12;12,63,12;60,54,24;48,55,24;24,57,24;24,58,48;48,63,24;24,59,24;24,55,48;48,60,24;24,58,24;24,57,48;48,58,24;24,60,24;24,62,12;12,67,12;12,65,12;12,63,12;12,62,12;12,63,12;12,62,12;12,60,12;12,58,12;12,63,12;12,62,12;12,60,12;12,58,12;12,60,12;12,58,12;12,57,12;12,58,12;12,57,12;12,55,12;12,53,12;12,52,24;24,55,24;24,57,12;12,59,12;12,61,12;12,62,12;12,64,12;12,65,12;12,67,12;12,69,12;12,70,24;24,69,12;12,67,12;12,65,12;12,69,12;12,64,12;12,69,12;12,62,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,64,12;12,69,12;12,65,12;12,69,12;12,57,12;12,69,12;12,59,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,61,12;12,69,12;12,62,12;12,69,12;12,59,12;12,69,12;12,61,24;24,62,24;24,67,24;24,64,24;24,65,24;24,69,24;24,70,24;24,69,24;24,0,3,53,96,58,96,62,96;318,57,6;6,58,6;6,60,6;6,62,6;30,53,6;6,55,6;6,57,6;6,58,6;6,57,6;6,58,6;6,60,6;6,62,6;6,60,6;6,58,6;6,57,6;6,55,6;30,62,6;6,60,6;6,58,6;6,57,6;96,61,144;144,62,48;48,59,96;264,0,3,52,24,56,24,59,24;24,0,3,52,192,57,96,60,192;96,55,96;558,60,6;6,59,6;6,57,6;6,56,6;24,57,6;24,59,6;24,60,6;96,55,24;24,57,24;24,57,6;48,57,24;24,57,24;24,57,6;48,57,24;24,59,24;24,55,6;6,59,6;42,55,24;24,55,24;24,55,6;48,55,24;24,57,24;24,53,6;6,57,6;42,53,24;24,53,24;24,53,6;6,58,6;42,53,24;24,52,24;24,52,6;6,55,6;6,58,6;36,52,24;24,54,24;24,50,6;6,57,6;42,54,24;24,55,96;96,58,48;48,57,48;48,57,96;96,53,48;48,55,48;48,53,192";
const v3="288,38,192;1536,38,144;288,38,48;888,50,24;24,48,24;24,46,24;24,45,24;120,50,24;24,48,24;24,46,24;24,45,48;264,50,24;24,48,24;24,46,24;24,45,24;120,50,24;24,48,24;24,46,24;24,45,24;24,44,24;24,43,48;192,55,96;1056,55,48;48,53,48;48,58,72;72,57,12;12,55,12;12,57,36;36,52,12;12,53,12;12,50,12;12,52,12;12,49,12;12,50,12;12,47,12;12,49,12;12,45,12;12,46,12;12,44,12;12,45,12;12,55,12;12,53,24;24,50,24;24,45,48;48,38,96;4236,50,12;12,48,12;12,50,12;12,46,12;12,50,12;12,45,12;12,50,12;12,43,12;12,50,12;12,42,12;12,50,12;12,43,12;12,50,12;12,45,12;12,50,12;12,46,12;12,50,12;12,38,12;12,50,12;12,40,12;12,50,12;12,42,12;12,50,12;12,43,12;12,50,12;12,42,12;12,50,12;12,43,12;12,50,12;12,45,12;12,50,12;12,46,48;72,47,24;24,48,48;72,49,24;24,50,48;72,50,24;24,52,48;72,52,24;24,53,24;24,45,24;24,46,24;24,50,24;24,43,48;72,46,48;48,45,24;24,43,24;24,48,24;24,41,48;5580,55,12;12,53,12;12,55,12;12,51,12;12,55,12;12,50,12;12,55,12;12,48,12;12,55,12;12,47,12;12,55,12;12,48,12;12,55,12;12,50,12;12,55,12;12,51,12;12,55,12;12,43,12;12,55,12;12,45,12;12,55,12;12,47,12;12,55,12;12,48,12;12,55,12;12,47,12;12,55,12;12,48,12;12,55,12;12,50,12;12,55,12;12,51,24;24,50,24;24,48,24;24,47,24;24,48,24;24,50,24;24,51,24;24,53,24;24,55,24;24,47,24;24,48,24;24,50,24;24,51,24;24,50,24;24,51,24;24,53,24;24,55,24;24,47,24;24,48,24;24,50,24;24,51,24;24,45,24;24,46,24;24,48,24;24,50,24;24,43,24;24,45,24;24,46,24;24,48,24;24,50,24;24,55,24;24,50,24;24,51,24;24,46,24;24,45,24;24,48,24;24,50,432;456,43,24;24,48,24;24,45,24;24,50,24;24,38,24;24,43,48;72,43,24;24,48,72;72,47,24;24,48,48;2412,57,12;12,55,12;12,57,12;12,53,12;12,57,12;12,52,12;12,57,12;12,50,12;12,57,12;12,49,12;12,57,12;12,50,12;12,57,12;12,52,12;12,57,12;12,53,12;12,57,12;12,45,12;12,57,12;12,47,12;12,57,12;12,49,12;12,57,12;12,50,12;12,57,12;12,49,12;12,57,12;12,50,12;12,57,12;12,52,12;12,57,12;12,53,48;72,53,24;24,55,24;24,52,24;24,57,24;24,45,24;24,50,48;72,45,24;24,46,24;24,43,24;24,48,24;24,36,24;24,41,48;72,45,24;24,46,48;72,46,24;24,48,48;72,45,24;24,50,48;96,50,48;96,50,48;96,50,48;96,50,48;96,50,48;96,50,48;96,50,48;96,50,48;96,50,48;108,50,12;12,48,12;12,50,12;12,46,12;12,50,12;12,45,12;12,50,12;12,43,12;12,55,12;12,53,12;12,55,12;12,51,12;12,55,12;12,50,12;12,55,12;12,48,12;12,48,12;12,46,12;12,48,12;12,45,12;12,48,12;12,43,12;12,48,12;12,41,12;12,53,12;12,51,12;12,53,12;12,50,12;12,53,12;12,48,12;12,53,12;12,46,24;24,51,24;24,53,24;24,41,24;24,43,24;24,48,24;24,50,24;24,38,24;24,43,48;60,45,12;12,43,12;12,45,12;12,41,24;24,38,24;24,45,48;48,38,288;360,50,24;24,45,24;24,41,24;24,43,24;24,45,24;24,41,24;24,38,24;24,43,24;24,45,24;24,46,96;576,49,96;96,53,72;72,50,24;24,44,96;108,56,12;12,59,12;12,53,12;12,56,12;12,50,12;12,53,12;12,47,12;12,50,12;12,44,12;12,45,24;24,40,240;888,52,24;24,55,24;72,55,24;24,53,24;72,53,24;24,53,24;72,53,24;24,52,24;72,52,24;24,52,24;72,52,24;24,50,24;72,50,24;24,49,24;72,49,24;24,48,24;72,48,24;24,43,48;48,46,48;48,40,48;48,41,48;48,45,96;96,46,48;48,43,48;48,0,2,38,192,50,192";
loop(() => {
const ev = parseVoice(RH1);
for (const e of ev) {
if (e.sleep > 0) sleep(e.sleep);
for (const n of e.chord) {
organ.play(n.note, {duration: n.dur, pan: -0.2, amp: 0.45});
}
}
sleep(1e5);
}, {name: 'RH1'}).connect(sharedRev);
loop(() => {
const ev = parseVoice(LH);
for (const e of ev) {
if (e.sleep > 0) sleep(e.sleep);
for (const n of e.chord) {
organ.play(n.note, {duration: n.dur, pan: 0.2, amp: 0.45});
}
}
sleep(1e5);
}, {name: 'LH'}).connect(sharedRev);
loop(() => {
const ev = parseVoice(v3);
for (const e of ev) {
if (e.sleep > 0) sleep(e.sleep);
for (const n of e.chord) {
organ.play(n.note, {duration: n.dur, pan: 0.0, amp: 0.55});
}
}
sleep(1e5);
}, {name: 'v3'}).connect(sharedRev);