From 67d2230ba86a66232da1d1adbe5a5b0dbdd0098b Mon Sep 17 00:00:00 2001 From: w1n5t0n Date: Fri, 3 Apr 2026 17:41:54 +0100 Subject: [PATCH] feat(playground/faust): full 56-param FM matrix synth DSP (meml-wgg) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Full 4-operator FM with continuous 4×4 routing matrix (12 cross-mod pairs) - Compiles to 46KB WASM via faust -lang wasm - 55 visible NISPS params (pitch_glide missing from DSP, tracked) - Includes fm-matrix-processor.js AudioWorklet + JSON param descriptor --- playground/faust/fm-matrix-processor.js | 193 ++++++++++++++++++ playground/faust/fm-matrix.dsp | 250 +++++++++++++++++++++++- playground/faust/fm-matrix.json | 1 + playground/faust/fm-matrix.wasm | 89 +++++++++ 4 files changed, 523 insertions(+), 10 deletions(-) create mode 100644 playground/faust/fm-matrix-processor.js create mode 100644 playground/faust/fm-matrix.json create mode 100644 playground/faust/fm-matrix.wasm diff --git a/playground/faust/fm-matrix-processor.js b/playground/faust/fm-matrix-processor.js new file mode 100644 index 0000000..cf601d9 --- /dev/null +++ b/playground/faust/fm-matrix-processor.js @@ -0,0 +1,193 @@ +/** + * fm-matrix-processor.js — AudioWorklet processor for the FM Matrix synth engine + * + * Extends FaustWorkletProcessor (faust-worklet-processor.js). + * Loads fm-matrix.wasm compiled from fm-matrix.dsp. + * + * Parameter addresses are built from the Faust JSON descriptor at init time. + * Index→address mapping follows the order returned by faustJsonToParamMeta() + * (alphabetical within groups, groups in declaration order). + * + * Hidden params (not in NISPS 55-param list): + * /fm-matrix/Master/freq — set by noteOn + * /fm-matrix/Master/gate — set by noteOn/noteOff + * /fm-matrix/Master/_vel — set by noteOn + */ + +// Must be imported in AudioWorkletGlobalScope — include faust-worklet-processor.js +// via audioCtx.audioWorklet.addModule() before this file. + +class FMMatrixProcessor extends FaustWorkletProcessor { + constructor(options) { + super(options); + this._dsp = null; + this._paramAddresses = []; // ordered by NISPS index (from JSON) + this._hiddenAddresses = {}; // freq, gate, _vel + this._blockSize = 128; + this._sampleRate = 48000; + } + + // --------------------------------------------------------------------------- + // FaustWorkletProcessor overrides + // --------------------------------------------------------------------------- + + async _initWasm(wasmBytes, sr) { + this._sampleRate = sr; + + // The Faust -lang wasm output exports a single factory function + // named by the -cn flag (fm_matrix). + const module = await WebAssembly.compile(wasmBytes); + const memory = new WebAssembly.Memory({ initial: 32, maximum: 256 }); + + const imports = { + env: { + memory, + memoryBase: 0, + tableBase: 0, + _abs: Math.abs, + _acosf: Math.acos, + _asinf: Math.asin, + _atanf: Math.atan, + _atan2f: Math.atan2, + _ceilf: Math.ceil, + _cosf: Math.cos, + _expf: Math.exp, + _floorf: Math.floor, + _fmodf: (x, y) => x % y, + _logf: Math.log, + _log10f: Math.log10, + _max_f: Math.max, + _min_f: Math.min, + _remainderf: (x, y) => x - Math.round(x / y) * y, + _powf: Math.pow, + _roundf: Math.round, + _sinf: Math.sin, + _sqrtf: Math.sqrt, + _tanf: Math.tan, + _fabs: Math.abs, + table: new WebAssembly.Table({ initial: 0, element: 'anyfunc' }), + }, + }; + + const instance = await WebAssembly.instantiate(module, imports); + const exports = instance.exports; + + // Faust -lang wasm exports: getNumInputs, getNumOutputs, init, + // instanceInit, getSampleRate, compute, setParamValue, getParamValue, + // getJSON (pointer to null-terminated JSON string in memory) + this._exports = exports; + this._heap = new Float32Array(memory.buffer); + this._heapi32 = new Int32Array(memory.buffer); + this._mem = memory; + + // Allocate DSP instance (Faust C++ new equivalent) + if (exports.createDSPInstance) { + this._dsp = exports.createDSPInstance(); + } else if (exports.fm_matrix) { + this._dsp = exports.fm_matrix(); + } else { + // fallback: look for any exported constructor-like function + const keys = Object.keys(exports).filter(k => typeof exports[k] === 'function'); + console.warn('[FMMatrixProcessor] No createDSPInstance found; exports:', keys); + return; + } + + // Initialise at sample rate + exports.init(this._dsp, sr); + + // Parse embedded JSON to build param address list + this._buildParamIndex(exports, memory); + } + + _buildParamIndex(exports, memory) { + // getJSON() returns a pointer to a JSON string in WASM memory + if (!exports.getJSON) return; + const ptr = exports.getJSON(this._dsp); + const buf = new Uint8Array(memory.buffer); + let str = ''; + let i = ptr; + while (buf[i] !== 0) { str += String.fromCharCode(buf[i++]); } + + let desc; + try { desc = JSON.parse(str); } catch { return; } + + const HIDDEN = new Set(['freq', 'gate', '_vel']); + const addresses = []; + + function walk(items, path) { + for (const item of items) { + const label = item.label ?? ''; + const type = item.type ?? ''; + const addr = item.address ?? (path + '/' + label); + if (['hslider', 'vslider', 'nentry', 'button', 'checkbox'].includes(type)) { + if (HIDDEN.has(label)) { + // store hidden separately + addresses._hidden = addresses._hidden || {}; + addresses._hidden[label] = addr; + } else { + addresses.push(addr); + } + } else if (item.items) { + walk(item.items, path + '/' + label); + } + } + } + + walk(desc.ui ?? [], ''); + this._paramAddresses = addresses; + this._hiddenAddresses = addresses._hidden ?? {}; + } + + _onSetParam(index, value) { + if (!this._exports || !this._dsp) return; + const addr = this._paramAddresses[index]; + if (addr && this._exports.setParamValue) { + this._exports.setParamValue(this._dsp, addr, value); + } + } + + _onNoteOn(freq, vel) { + if (!this._exports || !this._dsp) return; + const set = (label, v) => { + const addr = this._hiddenAddresses[label]; + if (addr) this._exports.setParamValue?.(this._dsp, addr, v); + }; + set('freq', freq); + set('_vel', vel); + set('gate', 1); + } + + _onNoteOff(_freq) { + if (!this._exports || !this._dsp) return; + const addr = this._hiddenAddresses['gate']; + if (addr) this._exports.setParamValue?.(this._dsp, addr, 0); + } + + _renderBlock(outL, outR, blockSize) { + if (!this._exports || !this._dsp) return; + const exports = this._exports; + const heap = this._heap; + const mem = this._mem; + + // Allocate output buffers in WASM heap (crude bump allocator using high addresses) + const heapBytes = mem.buffer.byteLength; + const outLOff = (heapBytes >> 2) - blockSize * 2 - 64; + const outROff = outLOff + blockSize; + + // Allocate pointer arrays for outputs + const ptrSize = 4; // 32-bit pointers in wasm32 + const outPtrsOff = outROff + blockSize; + const i32 = this._heapi32; + i32[outPtrsOff] = outLOff * 4; // byte offset in memory + i32[outPtrsOff + 1] = outROff * 4; + + exports.compute(this._dsp, blockSize, 0 /* no inputs */, outPtrsOff * 4); + + for (let i = 0; i < blockSize; i++) { + outL[i] = heap[outLOff + i]; + outR[i] = heap[outROff + i]; + } + } +} + +registerProcessor('fm-matrix-processor', FMMatrixProcessor); diff --git a/playground/faust/fm-matrix.dsp b/playground/faust/fm-matrix.dsp index 74ca51d..8048168 100644 --- a/playground/faust/fm-matrix.dsp +++ b/playground/faust/fm-matrix.dsp @@ -1,13 +1,243 @@ -// fm-matrix.dsp — placeholder 2-op FM synthesizer -// Carrier modulated by a single operator. -// This is a pipeline-proving stub; the full 56-param FM matrix engine -// is implemented in meml-wgg. +// fm-matrix.dsp — Full 56-parameter 4-operator FM synthesizer with continuous routing matrix +// +// Design: 4 operators with fully continuous N×N cross-modulation matrix. +// No fixed algorithm slots — the algorithm emerges from modulation index values. +// When all routing matrix indices are near 0: additive synthesis. +// As indices grow: increasingly complex FM timbres emerge. +// +// Parameter ordering (56 total, maps to MLP output indices 0–55): +// 0–23: Operator Core × 4 (ratio, level, attack, decay, sustain, release) +// 24–35: Cross-Modulation Matrix (12 directed pairs) +// 36–39: Self-Feedback × 4 +// 40–47: Global Modulation (LFO, pitch env, velocity) +// 48–55: Master (level, vel sens, glide, fine tune, waveform blend, stereo spread, +// output saturation, output HP) +// +// Hidden params (not in the 56-param NISPS list): +// freq — set by noteOn (Hz) +// gate — set by noteOn/noteOff (0/1) +// _vel — set by noteOn (velocity 0–1) +// +// FM implementation: each operator phase-modulates others via a 1-sample delayed +// feedback bus. The 4 operator outputs are collected into a 4-channel bus and +// looped via ~. This is the standard Faust FM pattern. +// +// Build: +// nix-shell -p faust --run \ +// "faust -lang wasm -cn fm_matrix fm-matrix.dsp -o fm-matrix.wasm" + import("stdfaust.lib"); -freq = hslider("freq[unit:Hz]", 220, 20, 4000, 0.1); -ratio = hslider("ratio", 2.0, 0.125, 16.0, 0.001); -index = hslider("index", 1.0, 0.0, 10.0, 0.001); -amp = hslider("amp", 0.5, 0, 1, 0.001); +// --------------------------------------------------------------------------- +// Hidden control params (driven by noteOn/noteOff, not NISPS) +// --------------------------------------------------------------------------- -mod = amp * os.osc(freq * ratio); -process = amp * os.osc(freq + index * mod * freq) <: _,_; +freq = hslider("Master/freq[hidden:1][unit:Hz]", 220, 20, 4000, 0.01); +gate = button("Master/gate[hidden:1]"); +vel = hslider("Master/_vel[hidden:1]", 0.7, 0.0, 1.0, 0.001) : si.smoo; + +// --------------------------------------------------------------------------- +// Group 1 — Operator Core × 4 (params 0–23) +// --------------------------------------------------------------------------- + +op1_ratio = hslider("Operators/Op 1/op1_ratio", 1.0, 0.125, 16.0, 0.001) : si.smoo; +op1_level = hslider("Operators/Op 1/op1_level", 0.8, 0.0, 1.0, 0.001) : si.smoo; +op1_attack = hslider("Operators/Op 1/op1_attack", 0.01, 0.001, 5.0, 0.001); +op1_decay = hslider("Operators/Op 1/op1_decay", 0.3, 0.001, 10.0, 0.001); +op1_sustain = hslider("Operators/Op 1/op1_sustain", 0.7, 0.0, 1.0, 0.001); +op1_release = hslider("Operators/Op 1/op1_release", 0.5, 0.01, 10.0, 0.001); + +op2_ratio = hslider("Operators/Op 2/op2_ratio", 2.0, 0.125, 16.0, 0.001) : si.smoo; +op2_level = hslider("Operators/Op 2/op2_level", 0.6, 0.0, 1.0, 0.001) : si.smoo; +op2_attack = hslider("Operators/Op 2/op2_attack", 0.01, 0.001, 5.0, 0.001); +op2_decay = hslider("Operators/Op 2/op2_decay", 0.3, 0.001, 10.0, 0.001); +op2_sustain = hslider("Operators/Op 2/op2_sustain", 0.7, 0.0, 1.0, 0.001); +op2_release = hslider("Operators/Op 2/op2_release", 0.5, 0.01, 10.0, 0.001); + +op3_ratio = hslider("Operators/Op 3/op3_ratio", 3.0, 0.125, 16.0, 0.001) : si.smoo; +op3_level = hslider("Operators/Op 3/op3_level", 0.4, 0.0, 1.0, 0.001) : si.smoo; +op3_attack = hslider("Operators/Op 3/op3_attack", 0.01, 0.001, 5.0, 0.001); +op3_decay = hslider("Operators/Op 3/op3_decay", 0.3, 0.001, 10.0, 0.001); +op3_sustain = hslider("Operators/Op 3/op3_sustain", 0.7, 0.0, 1.0, 0.001); +op3_release = hslider("Operators/Op 3/op3_release", 0.5, 0.01, 10.0, 0.001); + +op4_ratio = hslider("Operators/Op 4/op4_ratio", 0.5, 0.125, 16.0, 0.001) : si.smoo; +op4_level = hslider("Operators/Op 4/op4_level", 0.3, 0.0, 1.0, 0.001) : si.smoo; +op4_attack = hslider("Operators/Op 4/op4_attack", 0.01, 0.001, 5.0, 0.001); +op4_decay = hslider("Operators/Op 4/op4_decay", 0.3, 0.001, 10.0, 0.001); +op4_sustain = hslider("Operators/Op 4/op4_sustain", 0.7, 0.0, 1.0, 0.001); +op4_release = hslider("Operators/Op 4/op4_release", 0.5, 0.01, 10.0, 0.001); + +// --------------------------------------------------------------------------- +// Group 2 — Cross-Modulation Matrix (params 24–35) +// mXY = op X modulates op Y (X's output is added to Y's phase) +// --------------------------------------------------------------------------- + +m12 = hslider("Matrix/m12", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m13 = hslider("Matrix/m13", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m14 = hslider("Matrix/m14", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m21 = hslider("Matrix/m21", 1.0, 0.0, 10.0, 0.001) : si.smoo; +m23 = hslider("Matrix/m23", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m24 = hslider("Matrix/m24", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m31 = hslider("Matrix/m31", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m32 = hslider("Matrix/m32", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m34 = hslider("Matrix/m34", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m41 = hslider("Matrix/m41", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m42 = hslider("Matrix/m42", 0.0, 0.0, 10.0, 0.001) : si.smoo; +m43 = hslider("Matrix/m43", 0.0, 0.0, 10.0, 0.001) : si.smoo; + +// --------------------------------------------------------------------------- +// Group 3 — Self-Feedback × 4 (params 36–39) +// --------------------------------------------------------------------------- + +fb1 = hslider("Feedback/fb1", 0.0, 0.0, 1.0, 0.001) : si.smoo; +fb2 = hslider("Feedback/fb2", 0.0, 0.0, 1.0, 0.001) : si.smoo; +fb3 = hslider("Feedback/fb3", 0.0, 0.0, 1.0, 0.001) : si.smoo; +fb4 = hslider("Feedback/fb4", 0.0, 0.0, 1.0, 0.001) : si.smoo; + +// --------------------------------------------------------------------------- +// Group 4 — Global Modulation (params 40–47) +// --------------------------------------------------------------------------- + +lfo_rate = hslider("Global/lfo_rate", 5.0, 0.01, 20.0, 0.001); +lfo_depth = hslider("Global/lfo_depth", 0.0, 0.0, 1.0, 0.001) : si.smoo; +lfo_pitch = hslider("Global/lfo_pitch", 0.5, 0.0, 1.0, 0.001) : si.smoo; +lfo_levels = hslider("Global/lfo_levels", 0.5, 0.0, 1.0, 0.001) : si.smoo; +lfo_waveform = hslider("Global/lfo_waveform", 0.0, 0.0, 1.0, 0.001); +pitch_env_amount = hslider("Global/pitch_env_amount", 0.0, 0.0, 1.0, 0.001) : si.smoo; +pitch_env_decay = hslider("Global/pitch_env_decay", 0.1, 0.001, 2.0, 0.001); +vel_index_scale = hslider("Global/vel_index_scale", 0.0, 0.0, 1.0, 0.001) : si.smoo; + +// --------------------------------------------------------------------------- +// Group 5 — Master (params 48–55) +// --------------------------------------------------------------------------- + +master_level = hslider("Master/level", 0.7, 0.0, 1.0, 0.001) : si.smoo; +vel_sens = hslider("Master/vel_sens", 0.5, 0.0, 1.0, 0.001); +pitch_glide = hslider("Master/pitch_glide", 0.0, 0.0, 10.0, 0.001); +fine_tune = hslider("Master/fine_tune[unit:cents]", 0.0, -50.0, 50.0, 0.01); +waveform_blend = hslider("Master/waveform_blend", 0.0, 0.0, 1.0, 0.001) : si.smoo; +stereo_spread = hslider("Master/stereo_spread", 0.1, 0.0, 1.0, 0.001) : si.smoo; +output_saturation = hslider("Master/output_saturation", 0.0, 0.0, 1.0, 0.001) : si.smoo; +output_hp = hslider("Master/output_hp[unit:Hz]", 20.0, 20.0, 200.0, 0.1); + +// --------------------------------------------------------------------------- +// Derived values +// --------------------------------------------------------------------------- + +// Cents → frequency ratio +cent2ratio(c) = pow(2.0, c / 1200.0); + +// Base frequency with fine-tune +base_freq = freq * cent2ratio(fine_tune); + +// Velocity gain: blend between 1.0 (no velocity) and actual velocity +vel_gain = (1.0 - vel_sens) + vel_sens * vel; + +// Velocity-scaled FM index multiplier +// vel_index_scale=0: velocity doesn't affect FM indices +// vel_index_scale=1: FM indices are fully scaled by velocity +vel_idx_mult = (1.0 - vel_index_scale) + vel_index_scale * vel; + +// LFO: 4 waveforms crossfaded +// Segments: [0,0.333)=sine→tri, [0.333,0.667)=tri→saw, [0.667,1]=saw→square +lfo_sig = + ba.if(lfo_waveform < 0.333, + (1.0 - lfo_waveform*3.0) * os.osc(lfo_rate) + lfo_waveform*3.0 * os.triangle(lfo_rate), + ba.if(lfo_waveform < 0.667, + (1.0 - (lfo_waveform-0.333)*3.0) * os.triangle(lfo_rate) + (lfo_waveform-0.333)*3.0 * os.sawtooth(lfo_rate), + (1.0 - (lfo_waveform-0.667)*3.0) * os.sawtooth(lfo_rate) + (lfo_waveform-0.667)*3.0 * os.square(lfo_rate))); + +// Pitch envelope: fast attack, configurable decay, triggered by gate +pitch_env = en.ar(0.001, pitch_env_decay, gate); + +// Modulated frequency: fine-tune + LFO pitch + pitch envelope +// LFO pitch: ±0.0833 semitones per unit depth (subtle vibrato) +// Pitch env: up to +1 octave (ratio +1.0 = +octave) +lfo_pitch_offset = lfo_sig * lfo_depth * lfo_pitch * 0.0083; // ~0.1 semitone max +pitch_env_offset = pitch_env * pitch_env_amount; // 0..1 oct +mod_freq = base_freq * pow(2.0, lfo_pitch_offset + pitch_env_offset); + +// LFO level modulation (tremolo): 1.0 when depth=0, dips to (1-0.5*depth*lfo_levels) at trough +lfo_level_factor = 1.0 - lfo_depth * lfo_levels * 0.5 * (1.0 - lfo_sig) * 0.5; + +// Per-operator oscillator: blend sine (0) → triangle (1) +op_osc(f) = (1.0 - waveform_blend) * os.osc(f) + waveform_blend * os.triangle(f); + +// Per-operator ADSR envelopes +env1 = en.adsr(op1_attack, op1_decay, op1_sustain, op1_release, gate); +env2 = en.adsr(op2_attack, op2_decay, op2_sustain, op2_release, gate); +env3 = en.adsr(op3_attack, op3_decay, op3_sustain, op3_release, gate); +env4 = en.adsr(op4_attack, op4_decay, op4_sustain, op4_release, gate); + +// --------------------------------------------------------------------------- +// 4-Operator FM Routing +// +// Implementation strategy: build a recursive 4-channel bus using ~ +// The bus carries (op1_out, op2_out, op3_out, op4_out) with 1-sample delay. +// Each frame, we compute new outputs from delayed previous outputs. +// +// fmbus: (d1,d2,d3,d4) → (op1_out,op2_out,op3_out,op4_out) +// where dN are the 1-sample-delayed previous outputs (via ~) +// +// FM phase deviation: deviation_hz = index * modulator_out * carrier_freq +// This is the standard "frequency modulation" formula where modulator_out ∈ [-1,1] +// --------------------------------------------------------------------------- + +fmbus(d1,d2,d3,d4) = + op1_out, op2_out, op3_out, op4_out +with { + // Effective indices scaled by velocity + m12e = m12 * vel_idx_mult; m13e = m13 * vel_idx_mult; m14e = m14 * vel_idx_mult; + m21e = m21 * vel_idx_mult; m23e = m23 * vel_idx_mult; m24e = m24 * vel_idx_mult; + m31e = m31 * vel_idx_mult; m32e = m32 * vel_idx_mult; m34e = m34 * vel_idx_mult; + m41e = m41 * vel_idx_mult; m42e = m42 * vel_idx_mult; m43e = m43 * vel_idx_mult; + fb1e = fb1 * vel_idx_mult; fb2e = fb2 * vel_idx_mult; + fb3e = fb3 * vel_idx_mult; fb4e = fb4 * vel_idx_mult; + + f1 = mod_freq * op1_ratio; + f2 = mod_freq * op2_ratio; + f3 = mod_freq * op3_ratio; + f4 = mod_freq * op4_ratio; + + op1_out = env1 * op1_level * lfo_level_factor * vel_gain * + op_osc(f1 + (m21e*d2 + m31e*d3 + m41e*d4 + fb1e*d1) * f1); + + op2_out = env2 * op2_level * lfo_level_factor * vel_gain * + op_osc(f2 + (m12e*d1 + m32e*d3 + m42e*d4 + fb2e*d2) * f2); + + op3_out = env3 * op3_level * lfo_level_factor * vel_gain * + op_osc(f3 + (m13e*d1 + m23e*d2 + m43e*d4 + fb3e*d3) * f3); + + op4_out = env4 * op4_level * lfo_level_factor * vel_gain * + op_osc(f4 + (m14e*d1 + m24e*d2 + m34e*d3 + fb4e*d4) * f4); +}; + +// Route 4-channel bus through feedback loop (introduces mandatory 1-sample delay) +// Output of fmbus is (op1,op2,op3,op4); sum all for audio out +fm_out = (fmbus ~ (si.bus(4))) : (_, _, _, _) :> _; + +// --------------------------------------------------------------------------- +// Post-processing +// --------------------------------------------------------------------------- + +// Soft clip: tanh approximation (drive controlled by output_saturation) +// At 0: linear passthrough. At 1: clips at ±~0.6 +soft_clip(x) = x / max(0.001, 1.0 + output_saturation * abs(x)); + +// Stereo spread via slight pitch detuning L vs R +spread_cents = stereo_spread * 5.0; // ±5 cents max + +// HP filter removes DC offset from heavy feedback FM +hp_out(x) = fi.highpass(1, output_hp, x); + +// --------------------------------------------------------------------------- +// process: mono FM sum → scale → soft-clip → HP → stereo spread +// --------------------------------------------------------------------------- + +process = + fm_out + : *(master_level * 0.25) // 4 ops summing: scale to safe range + : soft_clip + : hp_out + <: *(cent2ratio(spread_cents)), *(cent2ratio(0.0 - spread_cents)); diff --git a/playground/faust/fm-matrix.json b/playground/faust/fm-matrix.json new file mode 100644 index 0000000..dd05eba --- /dev/null +++ b/playground/faust/fm-matrix.json @@ -0,0 +1 @@ +{"name": "fm-matrix","filename": "fm-matrix.dsp","version": "2.83.1","compile_options": "-lang wasm -fpga-mem-th 4 -ct 1 -cn fm_matrix -es 1 -mcd 16 -mdd 1024 -mdy 33 -single -ftz 0","library_list": ["/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/stdfaust.lib","/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/signals.lib","/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/maths.lib","/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/platform.lib","/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/envelopes.lib","/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/oscillators.lib","/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/filters.lib","/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/basics.lib"],"include_pathnames": ["/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust","/usr/local/share/faust","/usr/share/faust",".","/home/w1n5t0n/src/MEMLNaut-NISPS/playground/faust"],"size": 344892,"code": "Ly8gZm0tbWF0cml4LmRzcCDigJQgRnVsbCA1Ni1wYXJhbWV0ZXIgNC1vcGVyYXRvciBGTSBzeW50aGVzaXplciB3aXRoIGNvbnRpbnVvdXMgcm91dGluZyBtYXRyaXgKLy8KLy8gRGVzaWduOiA0IG9wZXJhdG9ycyB3aXRoIGZ1bGx5IGNvbnRpbnVvdXMgTsOXTiBjcm9zcy1tb2R1bGF0aW9uIG1hdHJpeC4KLy8gTm8gZml4ZWQgYWxnb3JpdGhtIHNsb3RzIOKAlCB0aGUgYWxnb3JpdGhtIGVtZXJnZXMgZnJvbSBtb2R1bGF0aW9uIGluZGV4IHZhbHVlcy4KLy8gV2hlbiBhbGwgcm91dGluZyBtYXRyaXggaW5kaWNlcyBhcmUgbmVhciAwOiBhZGRpdGl2ZSBzeW50aGVzaXMuCi8vIEFzIGluZGljZXMgZ3JvdzogaW5jcmVhc2luZ2x5IGNvbXBsZXggRk0gdGltYnJlcyBlbWVyZ2UuCi8vCi8vIFBhcmFtZXRlciBvcmRlcmluZyAoNTYgdG90YWwsIG1hcHMgdG8gTUxQIG91dHB1dCBpbmRpY2VzIDDigJM1NSk6Ci8vICAgMOKAkzIzOiAgT3BlcmF0b3IgQ29yZSDDlyA0IChyYXRpbywgbGV2ZWwsIGF0dGFjaywgZGVjYXksIHN1c3RhaW4sIHJlbGVhc2UpCi8vICAgMjTigJMzNTogQ3Jvc3MtTW9kdWxhdGlvbiBNYXRyaXggKDEyIGRpcmVjdGVkIHBhaXJzKQovLyAgIDM24oCTMzk6IFNlbGYtRmVlZGJhY2sgw5cgNAovLyAgIDQw4oCTNDc6IEdsb2JhbCBNb2R1bGF0aW9uIChMRk8sIHBpdGNoIGVudiwgdmVsb2NpdHkpCi8vICAgNDjigJM1NTogTWFzdGVyIChsZXZlbCwgdmVsIHNlbnMsIGdsaWRlLCBmaW5lIHR1bmUsIHdhdmVmb3JtIGJsZW5kLCBzdGVyZW8gc3ByZWFkLAovLyAgICAgICAgICAgb3V0cHV0IHNhdHVyYXRpb24sIG91dHB1dCBIUCkKLy8KLy8gSGlkZGVuIHBhcmFtcyAobm90IGluIHRoZSA1Ni1wYXJhbSBOSVNQUyBsaXN0KToKLy8gICBmcmVxICDigJQgc2V0IGJ5IG5vdGVPbiAoSHopCi8vICAgZ2F0ZSAg4oCUIHNldCBieSBub3RlT24vbm90ZU9mZiAoMC8xKQovLyAgIF92ZWwgIOKAlCBzZXQgYnkgbm90ZU9uICh2ZWxvY2l0eSAw4oCTMSkKLy8KLy8gRk0gaW1wbGVtZW50YXRpb246IGVhY2ggb3BlcmF0b3IgcGhhc2UtbW9kdWxhdGVzIG90aGVycyB2aWEgYSAxLXNhbXBsZSBkZWxheWVkCi8vIGZlZWRiYWNrIGJ1cy4gVGhlIDQgb3BlcmF0b3Igb3V0cHV0cyBhcmUgY29sbGVjdGVkIGludG8gYSA0LWNoYW5uZWwgYnVzIGFuZAovLyBsb29wZWQgdmlhIH4uIFRoaXMgaXMgdGhlIHN0YW5kYXJkIEZhdXN0IEZNIHBhdHRlcm4uCi8vCi8vIEJ1aWxkOgovLyAgIG5peC1zaGVsbCAtcCBmYXVzdCAtLXJ1biBcCi8vICAgICAiZmF1c3QgLWxhbmcgd2FzbSAtY24gZm1fbWF0cml4IGZtLW1hdHJpeC5kc3AgLW8gZm0tbWF0cml4Lndhc20iCgppbXBvcnQoInN0ZGZhdXN0LmxpYiIpOwoKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCi8vIEhpZGRlbiBjb250cm9sIHBhcmFtcyAoZHJpdmVuIGJ5IG5vdGVPbi9ub3RlT2ZmLCBub3QgTklTUFMpCi8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQoKZnJlcSA9IGhzbGlkZXIoIk1hc3Rlci9mcmVxW2hpZGRlbjoxXVt1bml0Okh6XSIsIDIyMCwgMjAsIDQwMDAsIDAuMDEpOwpnYXRlID0gYnV0dG9uKCJNYXN0ZXIvZ2F0ZVtoaWRkZW46MV0iKTsKdmVsICA9IGhzbGlkZXIoIk1hc3Rlci9fdmVsW2hpZGRlbjoxXSIsIDAuNywgMC4wLCAxLjAsIDAuMDAxKSA6IHNpLnNtb287CgovLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KLy8gR3JvdXAgMSDigJQgT3BlcmF0b3IgQ29yZSDDlyA0ICAocGFyYW1zIDDigJMyMykKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCgpvcDFfcmF0aW8gICA9IGhzbGlkZXIoIk9wZXJhdG9ycy9PcCAxL29wMV9yYXRpbyIsICAgMS4wLCAwLjEyNSwgMTYuMCwgMC4wMDEpIDogc2kuc21vbzsKb3AxX2xldmVsICAgPSBoc2xpZGVyKCJPcGVyYXRvcnMvT3AgMS9vcDFfbGV2ZWwiLCAgIDAuOCwgMC4wLCAgIDEuMCwgIDAuMDAxKSA6IHNpLnNtb287Cm9wMV9hdHRhY2sgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDEvb3AxX2F0dGFjayIsICAwLjAxLCAwLjAwMSwgNS4wLCAwLjAwMSk7Cm9wMV9kZWNheSAgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDEvb3AxX2RlY2F5IiwgICAwLjMsIDAuMDAxLCAxMC4wLCAwLjAwMSk7Cm9wMV9zdXN0YWluID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDEvb3AxX3N1c3RhaW4iLCAwLjcsIDAuMCwgICAxLjAsICAwLjAwMSk7Cm9wMV9yZWxlYXNlID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDEvb3AxX3JlbGVhc2UiLCAwLjUsIDAuMDEsICAxMC4wLCAwLjAwMSk7CgpvcDJfcmF0aW8gICA9IGhzbGlkZXIoIk9wZXJhdG9ycy9PcCAyL29wMl9yYXRpbyIsICAgMi4wLCAwLjEyNSwgMTYuMCwgMC4wMDEpIDogc2kuc21vbzsKb3AyX2xldmVsICAgPSBoc2xpZGVyKCJPcGVyYXRvcnMvT3AgMi9vcDJfbGV2ZWwiLCAgIDAuNiwgMC4wLCAgIDEuMCwgIDAuMDAxKSA6IHNpLnNtb287Cm9wMl9hdHRhY2sgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDIvb3AyX2F0dGFjayIsICAwLjAxLCAwLjAwMSwgNS4wLCAwLjAwMSk7Cm9wMl9kZWNheSAgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDIvb3AyX2RlY2F5IiwgICAwLjMsIDAuMDAxLCAxMC4wLCAwLjAwMSk7Cm9wMl9zdXN0YWluID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDIvb3AyX3N1c3RhaW4iLCAwLjcsIDAuMCwgICAxLjAsICAwLjAwMSk7Cm9wMl9yZWxlYXNlID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDIvb3AyX3JlbGVhc2UiLCAwLjUsIDAuMDEsICAxMC4wLCAwLjAwMSk7CgpvcDNfcmF0aW8gICA9IGhzbGlkZXIoIk9wZXJhdG9ycy9PcCAzL29wM19yYXRpbyIsICAgMy4wLCAwLjEyNSwgMTYuMCwgMC4wMDEpIDogc2kuc21vbzsKb3AzX2xldmVsICAgPSBoc2xpZGVyKCJPcGVyYXRvcnMvT3AgMy9vcDNfbGV2ZWwiLCAgIDAuNCwgMC4wLCAgIDEuMCwgIDAuMDAxKSA6IHNpLnNtb287Cm9wM19hdHRhY2sgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDMvb3AzX2F0dGFjayIsICAwLjAxLCAwLjAwMSwgNS4wLCAwLjAwMSk7Cm9wM19kZWNheSAgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDMvb3AzX2RlY2F5IiwgICAwLjMsIDAuMDAxLCAxMC4wLCAwLjAwMSk7Cm9wM19zdXN0YWluID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDMvb3AzX3N1c3RhaW4iLCAwLjcsIDAuMCwgICAxLjAsICAwLjAwMSk7Cm9wM19yZWxlYXNlID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDMvb3AzX3JlbGVhc2UiLCAwLjUsIDAuMDEsICAxMC4wLCAwLjAwMSk7CgpvcDRfcmF0aW8gICA9IGhzbGlkZXIoIk9wZXJhdG9ycy9PcCA0L29wNF9yYXRpbyIsICAgMC41LCAwLjEyNSwgMTYuMCwgMC4wMDEpIDogc2kuc21vbzsKb3A0X2xldmVsICAgPSBoc2xpZGVyKCJPcGVyYXRvcnMvT3AgNC9vcDRfbGV2ZWwiLCAgIDAuMywgMC4wLCAgIDEuMCwgIDAuMDAxKSA6IHNpLnNtb287Cm9wNF9hdHRhY2sgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDQvb3A0X2F0dGFjayIsICAwLjAxLCAwLjAwMSwgNS4wLCAwLjAwMSk7Cm9wNF9kZWNheSAgID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDQvb3A0X2RlY2F5IiwgICAwLjMsIDAuMDAxLCAxMC4wLCAwLjAwMSk7Cm9wNF9zdXN0YWluID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDQvb3A0X3N1c3RhaW4iLCAwLjcsIDAuMCwgICAxLjAsICAwLjAwMSk7Cm9wNF9yZWxlYXNlID0gaHNsaWRlcigiT3BlcmF0b3JzL09wIDQvb3A0X3JlbGVhc2UiLCAwLjUsIDAuMDEsICAxMC4wLCAwLjAwMSk7CgovLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KLy8gR3JvdXAgMiDigJQgQ3Jvc3MtTW9kdWxhdGlvbiBNYXRyaXggKHBhcmFtcyAyNOKAkzM1KQovLyBtWFkgPSBvcCBYIG1vZHVsYXRlcyBvcCBZIChYJ3Mgb3V0cHV0IGlzIGFkZGVkIHRvIFkncyBwaGFzZSkKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCgptMTIgPSBoc2xpZGVyKCJNYXRyaXgvbTEyIiwgMC4wLCAwLjAsIDEwLjAsIDAuMDAxKSA6IHNpLnNtb287Cm0xMyA9IGhzbGlkZXIoIk1hdHJpeC9tMTMiLCAwLjAsIDAuMCwgMTAuMCwgMC4wMDEpIDogc2kuc21vbzsKbTE0ID0gaHNsaWRlcigiTWF0cml4L20xNCIsIDAuMCwgMC4wLCAxMC4wLCAwLjAwMSkgOiBzaS5zbW9vOwptMjEgPSBoc2xpZGVyKCJNYXRyaXgvbTIxIiwgMS4wLCAwLjAsIDEwLjAsIDAuMDAxKSA6IHNpLnNtb287Cm0yMyA9IGhzbGlkZXIoIk1hdHJpeC9tMjMiLCAwLjAsIDAuMCwgMTAuMCwgMC4wMDEpIDogc2kuc21vbzsKbTI0ID0gaHNsaWRlcigiTWF0cml4L20yNCIsIDAuMCwgMC4wLCAxMC4wLCAwLjAwMSkgOiBzaS5zbW9vOwptMzEgPSBoc2xpZGVyKCJNYXRyaXgvbTMxIiwgMC4wLCAwLjAsIDEwLjAsIDAuMDAxKSA6IHNpLnNtb287Cm0zMiA9IGhzbGlkZXIoIk1hdHJpeC9tMzIiLCAwLjAsIDAuMCwgMTAuMCwgMC4wMDEpIDogc2kuc21vbzsKbTM0ID0gaHNsaWRlcigiTWF0cml4L20zNCIsIDAuMCwgMC4wLCAxMC4wLCAwLjAwMSkgOiBzaS5zbW9vOwptNDEgPSBoc2xpZGVyKCJNYXRyaXgvbTQxIiwgMC4wLCAwLjAsIDEwLjAsIDAuMDAxKSA6IHNpLnNtb287Cm00MiA9IGhzbGlkZXIoIk1hdHJpeC9tNDIiLCAwLjAsIDAuMCwgMTAuMCwgMC4wMDEpIDogc2kuc21vbzsKbTQzID0gaHNsaWRlcigiTWF0cml4L200MyIsIDAuMCwgMC4wLCAxMC4wLCAwLjAwMSkgOiBzaS5zbW9vOwoKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCi8vIEdyb3VwIDMg4oCUIFNlbGYtRmVlZGJhY2sgw5cgNCAgKHBhcmFtcyAzNuKAkzM5KQovLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KCmZiMSA9IGhzbGlkZXIoIkZlZWRiYWNrL2ZiMSIsIDAuMCwgMC4wLCAxLjAsIDAuMDAxKSA6IHNpLnNtb287CmZiMiA9IGhzbGlkZXIoIkZlZWRiYWNrL2ZiMiIsIDAuMCwgMC4wLCAxLjAsIDAuMDAxKSA6IHNpLnNtb287CmZiMyA9IGhzbGlkZXIoIkZlZWRiYWNrL2ZiMyIsIDAuMCwgMC4wLCAxLjAsIDAuMDAxKSA6IHNpLnNtb287CmZiNCA9IGhzbGlkZXIoIkZlZWRiYWNrL2ZiNCIsIDAuMCwgMC4wLCAxLjAsIDAuMDAxKSA6IHNpLnNtb287CgovLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KLy8gR3JvdXAgNCDigJQgR2xvYmFsIE1vZHVsYXRpb24gIChwYXJhbXMgNDDigJM0NykKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCgpsZm9fcmF0ZSAgICAgICAgID0gaHNsaWRlcigiR2xvYmFsL2xmb19yYXRlIiwgICAgICAgICA1LjAsICAgMC4wMSwgIDIwLjAsICAwLjAwMSk7Cmxmb19kZXB0aCAgICAgICAgPSBoc2xpZGVyKCJHbG9iYWwvbGZvX2RlcHRoIiwgICAgICAgIDAuMCwgICAwLjAsICAgMS4wLCAgIDAuMDAxKSA6IHNpLnNtb287Cmxmb19waXRjaCAgICAgICAgPSBoc2xpZGVyKCJHbG9iYWwvbGZvX3BpdGNoIiwgICAgICAgIDAuNSwgICAwLjAsICAgMS4wLCAgIDAuMDAxKSA6IHNpLnNtb287Cmxmb19sZXZlbHMgICAgICAgPSBoc2xpZGVyKCJHbG9iYWwvbGZvX2xldmVscyIsICAgICAgIDAuNSwgICAwLjAsICAgMS4wLCAgIDAuMDAxKSA6IHNpLnNtb287Cmxmb193YXZlZm9ybSAgICAgPSBoc2xpZGVyKCJHbG9iYWwvbGZvX3dhdmVmb3JtIiwgICAgIDAuMCwgICAwLjAsICAgMS4wLCAgIDAuMDAxKTsKcGl0Y2hfZW52X2Ftb3VudCA9IGhzbGlkZXIoIkdsb2JhbC9waXRjaF9lbnZfYW1vdW50IiwgMC4wLCAgIDAuMCwgICAxLjAsICAgMC4wMDEpIDogc2kuc21vbzsKcGl0Y2hfZW52X2RlY2F5ICA9IGhzbGlkZXIoIkdsb2JhbC9waXRjaF9lbnZfZGVjYXkiLCAgMC4xLCAgIDAuMDAxLCAyLjAsICAgMC4wMDEpOwp2ZWxfaW5kZXhfc2NhbGUgID0gaHNsaWRlcigiR2xvYmFsL3ZlbF9pbmRleF9zY2FsZSIsICAwLjAsICAgMC4wLCAgIDEuMCwgICAwLjAwMSkgOiBzaS5zbW9vOwoKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCi8vIEdyb3VwIDUg4oCUIE1hc3RlciAgKHBhcmFtcyA0OOKAkzU1KQovLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KCm1hc3Rlcl9sZXZlbCAgICAgICA9IGhzbGlkZXIoIk1hc3Rlci9sZXZlbCIsICAgICAgICAgICAgICAwLjcsICAwLjAsICAgMS4wLCAgIDAuMDAxKSA6IHNpLnNtb287CnZlbF9zZW5zICAgICAgICAgICA9IGhzbGlkZXIoIk1hc3Rlci92ZWxfc2VucyIsICAgICAgICAgICAwLjUsICAwLjAsICAgMS4wLCAgIDAuMDAxKTsKcGl0Y2hfZ2xpZGUgICAgICAgID0gaHNsaWRlcigiTWFzdGVyL3BpdGNoX2dsaWRlIiwgICAgICAgIDAuMCwgIDAuMCwgICAxMC4wLCAgMC4wMDEpOwpmaW5lX3R1bmUgICAgICAgICAgPSBoc2xpZGVyKCJNYXN0ZXIvZmluZV90dW5lW3VuaXQ6Y2VudHNdIiwgMC4wLCAtNTAuMCwgNTAuMCwgMC4wMSk7CndhdmVmb3JtX2JsZW5kICAgICA9IGhzbGlkZXIoIk1hc3Rlci93YXZlZm9ybV9ibGVuZCIsICAgICAwLjAsICAwLjAsICAgMS4wLCAgIDAuMDAxKSA6IHNpLnNtb287CnN0ZXJlb19zcHJlYWQgICAgICA9IGhzbGlkZXIoIk1hc3Rlci9zdGVyZW9fc3ByZWFkIiwgICAgICAwLjEsICAwLjAsICAgMS4wLCAgIDAuMDAxKSA6IHNpLnNtb287Cm91dHB1dF9zYXR1cmF0aW9uICA9IGhzbGlkZXIoIk1hc3Rlci9vdXRwdXRfc2F0dXJhdGlvbiIsICAwLjAsICAwLjAsICAgMS4wLCAgIDAuMDAxKSA6IHNpLnNtb287Cm91dHB1dF9ocCAgICAgICAgICA9IGhzbGlkZXIoIk1hc3Rlci9vdXRwdXRfaHBbdW5pdDpIel0iLCAyMC4wLCAyMC4wLCAyMDAuMCwgIDAuMSk7CgovLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KLy8gRGVyaXZlZCB2YWx1ZXMKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCgovLyBDZW50cyDihpIgZnJlcXVlbmN5IHJhdGlvCmNlbnQycmF0aW8oYykgPSBwb3coMi4wLCBjIC8gMTIwMC4wKTsKCi8vIEJhc2UgZnJlcXVlbmN5IHdpdGggZmluZS10dW5lCmJhc2VfZnJlcSA9IGZyZXEgKiBjZW50MnJhdGlvKGZpbmVfdHVuZSk7CgovLyBWZWxvY2l0eSBnYWluOiBibGVuZCBiZXR3ZWVuIDEuMCAobm8gdmVsb2NpdHkpIGFuZCBhY3R1YWwgdmVsb2NpdHkKdmVsX2dhaW4gPSAoMS4wIC0gdmVsX3NlbnMpICsgdmVsX3NlbnMgKiB2ZWw7CgovLyBWZWxvY2l0eS1zY2FsZWQgRk0gaW5kZXggbXVsdGlwbGllcgovLyB2ZWxfaW5kZXhfc2NhbGU9MDogdmVsb2NpdHkgZG9lc24ndCBhZmZlY3QgRk0gaW5kaWNlcwovLyB2ZWxfaW5kZXhfc2NhbGU9MTogRk0gaW5kaWNlcyBhcmUgZnVsbHkgc2NhbGVkIGJ5IHZlbG9jaXR5CnZlbF9pZHhfbXVsdCA9ICgxLjAgLSB2ZWxfaW5kZXhfc2NhbGUpICsgdmVsX2luZGV4X3NjYWxlICogdmVsOwoKLy8gTEZPOiA0IHdhdmVmb3JtcyBjcm9zc2ZhZGVkCi8vIFNlZ21lbnRzOiBbMCwwLjMzMyk9c2luZeKGknRyaSwgWzAuMzMzLDAuNjY3KT10cmnihpJzYXcsIFswLjY2NywxXT1zYXfihpJzcXVhcmUKbGZvX3NpZyA9CiAgYmEuaWYobGZvX3dhdmVmb3JtIDwgMC4zMzMsCiAgICAoMS4wIC0gbGZvX3dhdmVmb3JtKjMuMCkgKiBvcy5vc2MobGZvX3JhdGUpICAgICAgKyBsZm9fd2F2ZWZvcm0qMy4wICAgICAgKiBvcy50cmlhbmdsZShsZm9fcmF0ZSksCiAgICBiYS5pZihsZm9fd2F2ZWZvcm0gPCAwLjY2NywKICAgICAgKDEuMCAtIChsZm9fd2F2ZWZvcm0tMC4zMzMpKjMuMCkgKiBvcy50cmlhbmdsZShsZm9fcmF0ZSkgKyAobGZvX3dhdmVmb3JtLTAuMzMzKSozLjAgKiBvcy5zYXd0b290aChsZm9fcmF0ZSksCiAgICAgICgxLjAgLSAobGZvX3dhdmVmb3JtLTAuNjY3KSozLjApICogb3Muc2F3dG9vdGgobGZvX3JhdGUpICsgKGxmb193YXZlZm9ybS0wLjY2NykqMy4wICogb3Muc3F1YXJlKGxmb19yYXRlKSkpOwoKLy8gUGl0Y2ggZW52ZWxvcGU6IGZhc3QgYXR0YWNrLCBjb25maWd1cmFibGUgZGVjYXksIHRyaWdnZXJlZCBieSBnYXRlCnBpdGNoX2VudiA9IGVuLmFyKDAuMDAxLCBwaXRjaF9lbnZfZGVjYXksIGdhdGUpOwoKLy8gTW9kdWxhdGVkIGZyZXF1ZW5jeTogZmluZS10dW5lICsgTEZPIHBpdGNoICsgcGl0Y2ggZW52ZWxvcGUKLy8gTEZPIHBpdGNoOiDCsTAuMDgzMyBzZW1pdG9uZXMgcGVyIHVuaXQgZGVwdGggKHN1YnRsZSB2aWJyYXRvKQovLyBQaXRjaCBlbnY6IHVwIHRvICsxIG9jdGF2ZSAocmF0aW8gKzEuMCA9ICtvY3RhdmUpCmxmb19waXRjaF9vZmZzZXQgPSBsZm9fc2lnICogbGZvX2RlcHRoICogbGZvX3BpdGNoICogMC4wMDgzOyAgIC8vIH4wLjEgc2VtaXRvbmUgbWF4CnBpdGNoX2Vudl9vZmZzZXQgPSBwaXRjaF9lbnYgKiBwaXRjaF9lbnZfYW1vdW50OyAgICAgICAgICAgICAgICAgLy8gMC4uMSBvY3QKbW9kX2ZyZXEgPSBiYXNlX2ZyZXEgKiBwb3coMi4wLCBsZm9fcGl0Y2hfb2Zmc2V0ICsgcGl0Y2hfZW52X29mZnNldCk7CgovLyBMRk8gbGV2ZWwgbW9kdWxhdGlvbiAodHJlbW9sbyk6IDEuMCB3aGVuIGRlcHRoPTAsIGRpcHMgdG8gKDEtMC41KmRlcHRoKmxmb19sZXZlbHMpIGF0IHRyb3VnaApsZm9fbGV2ZWxfZmFjdG9yID0gMS4wIC0gbGZvX2RlcHRoICogbGZvX2xldmVscyAqIDAuNSAqICgxLjAgLSBsZm9fc2lnKSAqIDAuNTsKCi8vIFBlci1vcGVyYXRvciBvc2NpbGxhdG9yOiBibGVuZCBzaW5lICgwKSDihpIgdHJpYW5nbGUgKDEpCm9wX29zYyhmKSA9ICgxLjAgLSB3YXZlZm9ybV9ibGVuZCkgKiBvcy5vc2MoZikgKyB3YXZlZm9ybV9ibGVuZCAqIG9zLnRyaWFuZ2xlKGYpOwoKLy8gUGVyLW9wZXJhdG9yIEFEU1IgZW52ZWxvcGVzCmVudjEgPSBlbi5hZHNyKG9wMV9hdHRhY2ssIG9wMV9kZWNheSwgb3AxX3N1c3RhaW4sIG9wMV9yZWxlYXNlLCBnYXRlKTsKZW52MiA9IGVuLmFkc3Iob3AyX2F0dGFjaywgb3AyX2RlY2F5LCBvcDJfc3VzdGFpbiwgb3AyX3JlbGVhc2UsIGdhdGUpOwplbnYzID0gZW4uYWRzcihvcDNfYXR0YWNrLCBvcDNfZGVjYXksIG9wM19zdXN0YWluLCBvcDNfcmVsZWFzZSwgZ2F0ZSk7CmVudjQgPSBlbi5hZHNyKG9wNF9hdHRhY2ssIG9wNF9kZWNheSwgb3A0X3N1c3RhaW4sIG9wNF9yZWxlYXNlLCBnYXRlKTsKCi8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQovLyA0LU9wZXJhdG9yIEZNIFJvdXRpbmcKLy8KLy8gSW1wbGVtZW50YXRpb24gc3RyYXRlZ3k6IGJ1aWxkIGEgcmVjdXJzaXZlIDQtY2hhbm5lbCBidXMgdXNpbmcgfgovLyBUaGUgYnVzIGNhcnJpZXMgKG9wMV9vdXQsIG9wMl9vdXQsIG9wM19vdXQsIG9wNF9vdXQpIHdpdGggMS1zYW1wbGUgZGVsYXkuCi8vIEVhY2ggZnJhbWUsIHdlIGNvbXB1dGUgbmV3IG91dHB1dHMgZnJvbSBkZWxheWVkIHByZXZpb3VzIG91dHB1dHMuCi8vCi8vIGZtYnVzOiAoZDEsZDIsZDMsZDQpIOKGkiAob3AxX291dCxvcDJfb3V0LG9wM19vdXQsb3A0X291dCkKLy8gd2hlcmUgZE4gYXJlIHRoZSAxLXNhbXBsZS1kZWxheWVkIHByZXZpb3VzIG91dHB1dHMgKHZpYSB+KQovLwovLyBGTSBwaGFzZSBkZXZpYXRpb246IGRldmlhdGlvbl9oeiA9IGluZGV4ICogbW9kdWxhdG9yX291dCAqIGNhcnJpZXJfZnJlcQovLyBUaGlzIGlzIHRoZSBzdGFuZGFyZCAiZnJlcXVlbmN5IG1vZHVsYXRpb24iIGZvcm11bGEgd2hlcmUgbW9kdWxhdG9yX291dCDiiIggWy0xLDFdCi8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQoKZm1idXMoZDEsZDIsZDMsZDQpID0KICBvcDFfb3V0LCBvcDJfb3V0LCBvcDNfb3V0LCBvcDRfb3V0CndpdGggewogIC8vIEVmZmVjdGl2ZSBpbmRpY2VzIHNjYWxlZCBieSB2ZWxvY2l0eQogIG0xMmUgPSBtMTIgKiB2ZWxfaWR4X211bHQ7ICBtMTNlID0gbTEzICogdmVsX2lkeF9tdWx0OyAgbTE0ZSA9IG0xNCAqIHZlbF9pZHhfbXVsdDsKICBtMjFlID0gbTIxICogdmVsX2lkeF9tdWx0OyAgbTIzZSA9IG0yMyAqIHZlbF9pZHhfbXVsdDsgIG0yNGUgPSBtMjQgKiB2ZWxfaWR4X211bHQ7CiAgbTMxZSA9IG0zMSAqIHZlbF9pZHhfbXVsdDsgIG0zMmUgPSBtMzIgKiB2ZWxfaWR4X211bHQ7ICBtMzRlID0gbTM0ICogdmVsX2lkeF9tdWx0OwogIG00MWUgPSBtNDEgKiB2ZWxfaWR4X211bHQ7ICBtNDJlID0gbTQyICogdmVsX2lkeF9tdWx0OyAgbTQzZSA9IG00MyAqIHZlbF9pZHhfbXVsdDsKICBmYjFlID0gZmIxICogdmVsX2lkeF9tdWx0OyAgZmIyZSA9IGZiMiAqIHZlbF9pZHhfbXVsdDsKICBmYjNlID0gZmIzICogdmVsX2lkeF9tdWx0OyAgZmI0ZSA9IGZiNCAqIHZlbF9pZHhfbXVsdDsKCiAgZjEgPSBtb2RfZnJlcSAqIG9wMV9yYXRpbzsKICBmMiA9IG1vZF9mcmVxICogb3AyX3JhdGlvOwogIGYzID0gbW9kX2ZyZXEgKiBvcDNfcmF0aW87CiAgZjQgPSBtb2RfZnJlcSAqIG9wNF9yYXRpbzsKCiAgb3AxX291dCA9IGVudjEgKiBvcDFfbGV2ZWwgKiBsZm9fbGV2ZWxfZmFjdG9yICogdmVsX2dhaW4gKgogICAgb3Bfb3NjKGYxICsgKG0yMWUqZDIgKyBtMzFlKmQzICsgbTQxZSpkNCArIGZiMWUqZDEpICogZjEpOwoKICBvcDJfb3V0ID0gZW52MiAqIG9wMl9sZXZlbCAqIGxmb19sZXZlbF9mYWN0b3IgKiB2ZWxfZ2FpbiAqCiAgICBvcF9vc2MoZjIgKyAobTEyZSpkMSArIG0zMmUqZDMgKyBtNDJlKmQ0ICsgZmIyZSpkMikgKiBmMik7CgogIG9wM19vdXQgPSBlbnYzICogb3AzX2xldmVsICogbGZvX2xldmVsX2ZhY3RvciAqIHZlbF9nYWluICoKICAgIG9wX29zYyhmMyArIChtMTNlKmQxICsgbTIzZSpkMiArIG00M2UqZDQgKyBmYjNlKmQzKSAqIGYzKTsKCiAgb3A0X291dCA9IGVudjQgKiBvcDRfbGV2ZWwgKiBsZm9fbGV2ZWxfZmFjdG9yICogdmVsX2dhaW4gKgogICAgb3Bfb3NjKGY0ICsgKG0xNGUqZDEgKyBtMjRlKmQyICsgbTM0ZSpkMyArIGZiNGUqZDQpICogZjQpOwp9OwoKLy8gUm91dGUgNC1jaGFubmVsIGJ1cyB0aHJvdWdoIGZlZWRiYWNrIGxvb3AgKGludHJvZHVjZXMgbWFuZGF0b3J5IDEtc2FtcGxlIGRlbGF5KQovLyBPdXRwdXQgb2YgZm1idXMgaXMgKG9wMSxvcDIsb3AzLG9wNCk7IHN1bSBhbGwgZm9yIGF1ZGlvIG91dApmbV9vdXQgPSAoZm1idXMgfiAoc2kuYnVzKDQpKSkgOiAoXywgXywgXywgXykgOj4gXzsKCi8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQovLyBQb3N0LXByb2Nlc3NpbmcKLy8gLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tCgovLyBTb2Z0IGNsaXA6IHRhbmggYXBwcm94aW1hdGlvbiAoZHJpdmUgY29udHJvbGxlZCBieSBvdXRwdXRfc2F0dXJhdGlvbikKLy8gQXQgMDogbGluZWFyIHBhc3N0aHJvdWdoLiBBdCAxOiBjbGlwcyBhdCDCsX4wLjYKc29mdF9jbGlwKHgpID0geCAvIG1heCgwLjAwMSwgMS4wICsgb3V0cHV0X3NhdHVyYXRpb24gKiBhYnMoeCkpOwoKLy8gU3RlcmVvIHNwcmVhZCB2aWEgc2xpZ2h0IHBpdGNoIGRldHVuaW5nIEwgdnMgUgpzcHJlYWRfY2VudHMgPSBzdGVyZW9fc3ByZWFkICogNS4wOyAgIC8vIMKxNSBjZW50cyBtYXgKCi8vIEhQIGZpbHRlciByZW1vdmVzIERDIG9mZnNldCBmcm9tIGhlYXZ5IGZlZWRiYWNrIEZNCmhwX291dCh4KSA9IGZpLmhpZ2hwYXNzKDEsIG91dHB1dF9ocCwgeCk7CgovLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0KLy8gcHJvY2VzczogbW9ubyBGTSBzdW0g4oaSIHNjYWxlIOKGkiBzb2Z0LWNsaXAg4oaSIEhQIOKGkiBzdGVyZW8gc3ByZWFkCi8vIC0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLQoKcHJvY2VzcyA9CiAgZm1fb3V0CiAgOiAqKG1hc3Rlcl9sZXZlbCAqIDAuMjUpICAgICAgIC8vIDQgb3BzIHN1bW1pbmc6IHNjYWxlIHRvIHNhZmUgcmFuZ2UKICA6IHNvZnRfY2xpcAogIDogaHBfb3V0CiAgPDogKihjZW50MnJhdGlvKHNwcmVhZF9jZW50cykpLCAqKGNlbnQycmF0aW8oMC4wIC0gc3ByZWFkX2NlbnRzKSk7Cg==","inputs": 0,"outputs": 2,"meta": [ { "basics.lib/name": "Faust Basic Element Library" },{ "basics.lib/version": "1.22.0" },{ "compile_options": "-lang wasm -fpga-mem-th 4 -ct 1 -cn fm_matrix -es 1 -mcd 16 -mdd 1024 -mdy 33 -single -ftz 0" },{ "envelopes.lib/adsr:author": "Yann Orlarey and Andrey Bundin" },{ "envelopes.lib/ar:author": "Yann Orlarey, Stéphane Letz" },{ "envelopes.lib/author": "GRAME" },{ "envelopes.lib/copyright": "GRAME" },{ "envelopes.lib/license": "LGPL with exception" },{ "envelopes.lib/name": "Faust Envelope Library" },{ "envelopes.lib/version": "1.3.0" },{ "filename": "fm-matrix.dsp" },{ "filters.lib/highpass:author": "Julius O. Smith III" },{ "filters.lib/highpass:copyright": "Copyright (C) 2003-2019 by Julius O. Smith III " },{ "filters.lib/lowpass0_highpass1": "Copyright (C) 2003-2019 by Julius O. Smith III " },{ "filters.lib/lowpass0_highpass1:author": "Julius O. Smith III" },{ "filters.lib/name": "Faust Filters Library" },{ "filters.lib/pole:author": "Julius O. Smith III" },{ "filters.lib/pole:copyright": "Copyright (C) 2003-2019 by Julius O. Smith III " },{ "filters.lib/pole:license": "MIT-style STK-4.3 license" },{ "filters.lib/tf1:author": "Julius O. Smith III" },{ "filters.lib/tf1:copyright": "Copyright (C) 2003-2019 by Julius O. Smith III " },{ "filters.lib/tf1:license": "MIT-style STK-4.3 license" },{ "filters.lib/tf1s:author": "Julius O. Smith III" },{ "filters.lib/tf1s:copyright": "Copyright (C) 2003-2019 by Julius O. Smith III " },{ "filters.lib/tf1s:license": "MIT-style STK-4.3 license" },{ "filters.lib/version": "1.7.1" },{ "maths.lib/author": "GRAME" },{ "maths.lib/copyright": "GRAME" },{ "maths.lib/license": "LGPL with exception" },{ "maths.lib/name": "Faust Math Library" },{ "maths.lib/version": "2.9.0" },{ "name": "fm-matrix" },{ "oscillators.lib/lf_sawpos:author": "Bart Brouns, revised by Stéphane Letz" },{ "oscillators.lib/lf_sawpos:licence": "STK-4.3" },{ "oscillators.lib/name": "Faust Oscillator Library" },{ "oscillators.lib/saw2ptr:author": "Julius O. Smith III" },{ "oscillators.lib/saw2ptr:license": "STK-4.3" },{ "oscillators.lib/sawN:author": "Julius O. Smith III" },{ "oscillators.lib/sawN:license": "STK-4.3" },{ "oscillators.lib/version": "1.6.0" },{ "platform.lib/name": "Generic Platform Library" },{ "platform.lib/version": "1.3.0" },{ "signals.lib/name": "Faust Signal Routing Library" },{ "signals.lib/version": "1.6.0" }],"ui": [ {"type": "vgroup","label": "fm-matrix","items": [ {"type": "hslider","label": "Feedback/fb1","varname": "fHslider3","shortname": "Feedback_fb1","address": "/fm-matrix/Feedback_fb1","index": 262200,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Feedback/fb2","varname": "fHslider26","shortname": "Feedback_fb2","address": "/fm-matrix/Feedback_fb2","index": 295312,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Feedback/fb3","varname": "fHslider36","shortname": "Feedback_fb3","address": "/fm-matrix/Feedback_fb3","index": 311824,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Feedback/fb4","varname": "fHslider46","shortname": "Feedback_fb4","address": "/fm-matrix/Feedback_fb4","index": 328336,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Global/lfo_depth","varname": "fHslider14","shortname": "Global_lfo_depth","address": "/fm-matrix/Global_lfo_depth","index": 278784,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Global/lfo_levels","varname": "fHslider20","shortname": "Global_lfo_levels","address": "/fm-matrix/Global_lfo_levels","index": 295248,"init": 0.5,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Global/lfo_pitch","varname": "fHslider13","shortname": "Global_lfo_pitch","address": "/fm-matrix/Global_lfo_pitch","index": 278772,"init": 0.5,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Global/lfo_rate","varname": "fHslider12","shortname": "Global_lfo_rate","address": "/fm-matrix/Global_lfo_rate","index": 262320,"init": 5,"min": 0.01,"max": 20,"step": 0.001},{"type": "hslider","label": "Global/lfo_waveform","varname": "fHslider11","shortname": "Global_lfo_waveform","address": "/fm-matrix/Global_lfo_waveform","index": 262316,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Global/pitch_env_amount","varname": "fHslider10","shortname": "Global_pitch_env_amount","address": "/fm-matrix/Global_pitch_env_amount","index": 262304,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Global/pitch_env_decay","varname": "fHslider9","shortname": "Global_pitch_env_decay","address": "/fm-matrix/Global_pitch_env_decay","index": 262300,"init": 0.1,"min": 0.001,"max": 2,"step": 0.001},{"type": "hslider","label": "Global/vel_index_scale","varname": "fHslider8","shortname": "Global_vel_index_scale","address": "/fm-matrix/Global_vel_index_scale","index": 262260,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Master/_vel","varname": "fHslider7","shortname": "Master_vel","address": "/fm-matrix/Master__vel","index": 262248,"meta": [{ "hidden": "1" }],"init": 0.7,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Master/fine_tune","varname": "fHslider16","shortname": "Master_fine_tune","address": "/fm-matrix/Master_fine_tune","index": 278808,"meta": [{ "unit": "cents" }],"init": 0,"min": -50,"max": 50,"step": 0.01},{"type": "hslider","label": "Master/freq","varname": "fHslider17","shortname": "Master_freq","address": "/fm-matrix/Master_freq","index": 278812,"meta": [{ "hidden": "1" },{ "unit": "Hz" }],"init": 220,"min": 20,"max": 4000,"step": 0.01},{"type": "button","label": "Master/gate","varname": "fButton0","shortname": "Master_gate","address": "/fm-matrix/Master_gate","index": 262272,"meta": [{ "hidden": "1" }]},{"type": "hslider","label": "Master/level","varname": "fHslider2","shortname": "Master_level","address": "/fm-matrix/Master_level","index": 262188,"init": 0.7,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Master/output_hp","varname": "fHslider1","shortname": "Master_output_hp","address": "/fm-matrix/Master_output_hp","index": 262180,"meta": [{ "unit": "Hz" }],"init": 20,"min": 20,"max": 200,"step": 0.1},{"type": "hslider","label": "Master/output_saturation","varname": "fHslider56","shortname": "Master_output_saturation","address": "/fm-matrix/Master_output_saturation","index": 344848,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Master/stereo_spread","varname": "fHslider0","shortname": "Master_stereo_spread","address": "/fm-matrix/Master_stereo_spread","index": 262168,"init": 0.1,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Master/vel_sens","varname": "fHslider19","shortname": "Master_vel_sens","address": "/fm-matrix/Master_vel_sens","index": 295244,"init": 0.5,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Master/waveform_blend","varname": "fHslider18","shortname": "Master_waveform_blend","address": "/fm-matrix/Master_waveform_blend","index": 295224,"init": 0,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Matrix/m12","varname": "fHslider29","shortname": "Matrix_m12","address": "/fm-matrix/Matrix_m12","index": 295348,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m13","varname": "fHslider39","shortname": "Matrix_m13","address": "/fm-matrix/Matrix_m13","index": 311860,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m14","varname": "fHslider49","shortname": "Matrix_m14","address": "/fm-matrix/Matrix_m14","index": 328372,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m21","varname": "fHslider6","shortname": "Matrix_m21","address": "/fm-matrix/Matrix_m21","index": 262236,"init": 1,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m23","varname": "fHslider38","shortname": "Matrix_m23","address": "/fm-matrix/Matrix_m23","index": 311848,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m24","varname": "fHslider48","shortname": "Matrix_m24","address": "/fm-matrix/Matrix_m24","index": 328360,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m31","varname": "fHslider5","shortname": "Matrix_m31","address": "/fm-matrix/Matrix_m31","index": 262224,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m32","varname": "fHslider28","shortname": "Matrix_m32","address": "/fm-matrix/Matrix_m32","index": 295336,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m34","varname": "fHslider47","shortname": "Matrix_m34","address": "/fm-matrix/Matrix_m34","index": 328348,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m41","varname": "fHslider4","shortname": "Matrix_m41","address": "/fm-matrix/Matrix_m41","index": 262212,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m42","varname": "fHslider27","shortname": "Matrix_m42","address": "/fm-matrix/Matrix_m42","index": 295324,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Matrix/m43","varname": "fHslider37","shortname": "Matrix_m43","address": "/fm-matrix/Matrix_m43","index": 311836,"init": 0,"min": 0,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 1/op1_attack","varname": "fHslider22","shortname": "Operators_Op_1_op1_attack","address": "/fm-matrix/Operators_Op_1_op1_attack","index": 295280,"init": 0.01,"min": 0.001,"max": 5,"step": 0.001},{"type": "hslider","label": "Operators/Op 1/op1_decay","varname": "fHslider23","shortname": "Operators_Op_1_op1_decay","address": "/fm-matrix/Operators_Op_1_op1_decay","index": 295284,"init": 0.3,"min": 0.001,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 1/op1_level","varname": "fHslider25","shortname": "Operators_Op_1_op1_level","address": "/fm-matrix/Operators_Op_1_op1_level","index": 295292,"init": 0.8,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Operators/Op 1/op1_ratio","varname": "fHslider15","shortname": "Operators_Op_1_op1_ratio","address": "/fm-matrix/Operators_Op_1_op1_ratio","index": 278796,"init": 1,"min": 0.125,"max": 16,"step": 0.001},{"type": "hslider","label": "Operators/Op 1/op1_release","varname": "fHslider21","shortname": "Operators_Op_1_op1_release","address": "/fm-matrix/Operators_Op_1_op1_release","index": 295268,"init": 0.5,"min": 0.01,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 1/op1_sustain","varname": "fHslider24","shortname": "Operators_Op_1_op1_sustain","address": "/fm-matrix/Operators_Op_1_op1_sustain","index": 295288,"init": 0.7,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Operators/Op 2/op2_attack","varname": "fHslider32","shortname": "Operators_Op_2_op2_attack","address": "/fm-matrix/Operators_Op_2_op2_attack","index": 311792,"init": 0.01,"min": 0.001,"max": 5,"step": 0.001},{"type": "hslider","label": "Operators/Op 2/op2_decay","varname": "fHslider33","shortname": "Operators_Op_2_op2_decay","address": "/fm-matrix/Operators_Op_2_op2_decay","index": 311796,"init": 0.3,"min": 0.001,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 2/op2_level","varname": "fHslider35","shortname": "Operators_Op_2_op2_level","address": "/fm-matrix/Operators_Op_2_op2_level","index": 311804,"init": 0.6,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Operators/Op 2/op2_ratio","varname": "fHslider30","shortname": "Operators_Op_2_op2_ratio","address": "/fm-matrix/Operators_Op_2_op2_ratio","index": 295360,"init": 2,"min": 0.125,"max": 16,"step": 0.001},{"type": "hslider","label": "Operators/Op 2/op2_release","varname": "fHslider31","shortname": "Operators_Op_2_op2_release","address": "/fm-matrix/Operators_Op_2_op2_release","index": 311788,"init": 0.5,"min": 0.01,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 2/op2_sustain","varname": "fHslider34","shortname": "Operators_Op_2_op2_sustain","address": "/fm-matrix/Operators_Op_2_op2_sustain","index": 311800,"init": 0.7,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Operators/Op 3/op3_attack","varname": "fHslider42","shortname": "Operators_Op_3_op3_attack","address": "/fm-matrix/Operators_Op_3_op3_attack","index": 328304,"init": 0.01,"min": 0.001,"max": 5,"step": 0.001},{"type": "hslider","label": "Operators/Op 3/op3_decay","varname": "fHslider43","shortname": "Operators_Op_3_op3_decay","address": "/fm-matrix/Operators_Op_3_op3_decay","index": 328308,"init": 0.3,"min": 0.001,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 3/op3_level","varname": "fHslider45","shortname": "Operators_Op_3_op3_level","address": "/fm-matrix/Operators_Op_3_op3_level","index": 328316,"init": 0.4,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Operators/Op 3/op3_ratio","varname": "fHslider40","shortname": "Operators_Op_3_op3_ratio","address": "/fm-matrix/Operators_Op_3_op3_ratio","index": 311872,"init": 3,"min": 0.125,"max": 16,"step": 0.001},{"type": "hslider","label": "Operators/Op 3/op3_release","varname": "fHslider41","shortname": "Operators_Op_3_op3_release","address": "/fm-matrix/Operators_Op_3_op3_release","index": 328300,"init": 0.5,"min": 0.01,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 3/op3_sustain","varname": "fHslider44","shortname": "Operators_Op_3_op3_sustain","address": "/fm-matrix/Operators_Op_3_op3_sustain","index": 328312,"init": 0.7,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Operators/Op 4/op4_attack","varname": "fHslider52","shortname": "Operators_Op_4_op4_attack","address": "/fm-matrix/Operators_Op_4_op4_attack","index": 344816,"init": 0.01,"min": 0.001,"max": 5,"step": 0.001},{"type": "hslider","label": "Operators/Op 4/op4_decay","varname": "fHslider53","shortname": "Operators_Op_4_op4_decay","address": "/fm-matrix/Operators_Op_4_op4_decay","index": 344820,"init": 0.3,"min": 0.001,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 4/op4_level","varname": "fHslider55","shortname": "Operators_Op_4_op4_level","address": "/fm-matrix/Operators_Op_4_op4_level","index": 344828,"init": 0.3,"min": 0,"max": 1,"step": 0.001},{"type": "hslider","label": "Operators/Op 4/op4_ratio","varname": "fHslider50","shortname": "Operators_Op_4_op4_ratio","address": "/fm-matrix/Operators_Op_4_op4_ratio","index": 328384,"init": 0.5,"min": 0.125,"max": 16,"step": 0.001},{"type": "hslider","label": "Operators/Op 4/op4_release","varname": "fHslider51","shortname": "Operators_Op_4_op4_release","address": "/fm-matrix/Operators_Op_4_op4_release","index": 344812,"init": 0.5,"min": 0.01,"max": 10,"step": 0.001},{"type": "hslider","label": "Operators/Op 4/op4_sustain","varname": "fHslider54","shortname": "Operators_Op_4_op4_sustain","address": "/fm-matrix/Operators_Op_4_op4_sustain","index": 344824,"init": 0.7,"min": 0,"max": 1,"step": 0.001}]}]} \ No newline at end of file diff --git a/playground/faust/fm-matrix.wasm b/playground/faust/fm-matrix.wasm new file mode 100644 index 0000000..55dc38d --- /dev/null +++ b/playground/faust/fm-matrix.wasm @@ -0,0 +1,89 @@ +declare version "2.83.1"; +declare compile_options "-single -scal -cn fm_matrix -lang wasm -e fm-matrix.dsp -o fm-matrix.wasm -json"; +declare library_path0 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/stdfaust.lib"; +declare library_path1 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/signals.lib"; +declare library_path2 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/maths.lib"; +declare library_path3 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/platform.lib"; +declare library_path4 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/envelopes.lib"; +declare library_path5 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/oscillators.lib"; +declare library_path6 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/filters.lib"; +declare library_path7 "/nix/store/fnjbalzgc6pjm8la292cczxqbr00qmav-faust-2.83.1/share/faust/basics.lib"; +declare basics_lib_name "Faust Basic Element Library"; +declare basics_lib_version "1.22.0"; +declare envelopes_lib_adsr_author "Yann Orlarey and Andrey Bundin"; +declare envelopes_lib_ar_author "Yann Orlarey, Stéphane Letz"; +declare envelopes_lib_author "GRAME"; +declare envelopes_lib_copyright "GRAME"; +declare envelopes_lib_license "LGPL with exception"; +declare envelopes_lib_name "Faust Envelope Library"; +declare envelopes_lib_version "1.3.0"; +declare filename "fm-matrix.dsp"; +declare filters_lib_highpass_author "Julius O. Smith III"; +declare filters_lib_highpass_copyright "Copyright (C) 2003-2019 by Julius O. Smith III "; +declare filters_lib_lowpass0_highpass1 "Copyright (C) 2003-2019 by Julius O. Smith III "; +declare filters_lib_lowpass0_highpass1_author "Julius O. Smith III"; +declare filters_lib_name "Faust Filters Library"; +declare filters_lib_pole_author "Julius O. Smith III"; +declare filters_lib_pole_copyright "Copyright (C) 2003-2019 by Julius O. Smith III "; +declare filters_lib_pole_license "MIT-style STK-4.3 license"; +declare filters_lib_tf1_author "Julius O. Smith III"; +declare filters_lib_tf1_copyright "Copyright (C) 2003-2019 by Julius O. Smith III "; +declare filters_lib_tf1_license "MIT-style STK-4.3 license"; +declare filters_lib_tf1s_author "Julius O. Smith III"; +declare filters_lib_tf1s_copyright "Copyright (C) 2003-2019 by Julius O. Smith III "; +declare filters_lib_tf1s_license "MIT-style STK-4.3 license"; +declare filters_lib_version "1.7.1"; +declare maths_lib_author "GRAME"; +declare maths_lib_copyright "GRAME"; +declare maths_lib_license "LGPL with exception"; +declare maths_lib_name "Faust Math Library"; +declare maths_lib_version "2.9.0"; +declare name "fm-matrix"; +declare oscillators_lib_lf_sawpos_author "Bart Brouns, revised by Stéphane Letz"; +declare oscillators_lib_lf_sawpos_licence "STK-4.3"; +declare oscillators_lib_name "Faust Oscillator Library"; +declare oscillators_lib_saw2ptr_author "Julius O. Smith III"; +declare oscillators_lib_saw2ptr_license "STK-4.3"; +declare oscillators_lib_sawN_author "Julius O. Smith III"; +declare oscillators_lib_sawN_license "STK-4.3"; +declare oscillators_lib_version "1.6.0"; +declare platform_lib_name "Generic Platform Library"; +declare platform_lib_version "1.3.0"; +declare signals_lib_name "Faust Signal Routing Library"; +declare signals_lib_version "1.6.0"; +ID_0 = _, _; +ID_1 = _, ID_0; +ID_2 = (_, ID_1); +ID_3 = \(x7).(\(x8).(\(x9).(\(x10).((((((((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),(1,(1,(hslider("Operators/Op 1/op1_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),(((1,((1,(hslider("Operators/Op 1/op1_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),((1,hslider("Operators/Op 1/op1_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 1/op1_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),((1,hslider("Operators/Op 1/op1_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 1/op1_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -),hslider("Operators/Op 1/op1_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : max) : min : _,(1,((_,1 : + : _,(button("Master/gate[hidden:1]"),0 : ==) : *)~_,(1,(hslider("Operators/Op 1/op1_release", 0.5f, 0.01f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : -) : * : 0,_ : max),(hslider("Operators/Op 1/op1_level", 0.8f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),(1.0f,(((((hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),(hslider("Global/lfo_levels", 0.5f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),0.5f : *),(1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x32).(x32,(x32 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2) : -) : *),0.5f : *) : -) : *),((1.0f,hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f) : -),(hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *) : +) : *),(((1.0f,(hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : -),(65536,((((_,(65536 : int) : %)~(_,(1 : mem) : +) : float),6.2831855f : *),(65536 : float) : / : sin),((((1,(1 : mem) : -),0 : |),(_,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : *) : +),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x26).(x26,(x26 : floor) : -))~_ : _,(65536 : float) : * : int) : rdtable) : *),((hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x373).(x373,(x373 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),0.0083f : *),(((((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x373).(x373,(x373 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),0.0083f : *),(((((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x379).(x379,(x379 : floor) : -))~_ : *),1 : - : \(x331).(x331,x331 : *) : \(x380).((x380,(x380 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x373).(x373,(x373 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),0.0083f : *),(((((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x373).(x373,(x373 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),0.0083f : *),(((((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x379).(x379,(x379 : floor) : -))~_ : *),1 : - : \(x331).(x331,x331 : *) : \(x380).((x380,(x380 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x347).(x347,(x347 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),0.0083f : *),(((((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x347).(x347,(x347 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),0.0083f : *),(((((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x373).(x373,(x373 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),0.0083f : *),(((((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x369).(x369,(x369 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x370).((x370,(x370 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x371).(x371,(x371 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x372).((x372,(x372 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x373).(x373,(x373 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x374).(x374,(x374 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x375).((x375,(x375 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *),0.0083f : *),(((((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x378).(x378,(x378,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x376).(\(x377).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x376 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x377 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x379).(x379,(x379 : floor) : -))~_ : *),1 : - : \(x331).(x331,x331 : *) : \(x380).((x380,(x380 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x347).(x347,(x347 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),0.0083f : *),(((((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x343).(x343,(x343 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x363).((x363,(x363 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x345).(x345,(x345 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x364).((x364,(x364 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x347).(x347,(x347 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x348).(x348,(x348 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x365).((x365,(x365 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *),0.0083f : *),(((((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x368).(x368,(x368,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x366).(\(x367).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x366 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x367 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x353).(x353,(x353 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x354).((x354,(x354 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x355).(x355,(x355 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x356).((x356,(x356 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x357).(x357,(x357 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x358).(x358,(x358 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x359).((x359,(x359 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *),0.0083f : *),(((((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x362).(x362,(x362,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x360).(\(x361).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x360 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x361 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(((((((hslider("Matrix/m21", 1.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x8 : *),(((hslider("Matrix/m31", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m41", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb1", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x7 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 1/op1_ratio", 1.0f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : *) : +) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : *),(((((((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),(1,(1,(hslider("Operators/Op 2/op2_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),(((1,((1,(hslider("Operators/Op 2/op2_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),((1,hslider("Operators/Op 2/op2_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 2/op2_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),((1,hslider("Operators/Op 2/op2_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 2/op2_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -),hslider("Operators/Op 2/op2_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : max) : min : _,(1,((_,1 : + : _,(button("Master/gate[hidden:1]"),0 : ==) : *)~_,(1,(hslider("Operators/Op 2/op2_release", 0.5f, 0.01f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : -) : * : 0,_ : max),(hslider("Operators/Op 2/op2_level", 0.6f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),(1.0f,(((((hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),(hslider("Global/lfo_levels", 0.5f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),0.5f : *),(1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x32).(x32,(x32 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2) : -) : *),0.5f : *) : -) : *),((1.0f,hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f) : -),(hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *) : +) : *),(((1.0f,(hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : -),(65536,((((_,(65536 : int) : %)~(_,(1 : mem) : +) : float),6.2831855f : *),(65536 : float) : / : sin),((((1,(1 : mem) : -),0 : |),(_,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : *) : +),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x26).(x26,(x26 : floor) : -))~_ : _,(65536 : float) : * : int) : rdtable) : *),((hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x385).(x385,(x385 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),0.0083f : *),(((((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x385).(x385,(x385 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),0.0083f : *),(((((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x391).(x391,(x391 : floor) : -))~_ : *),1 : - : \(x282).(x282,x282 : *) : \(x392).((x392,(x392 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x385).(x385,(x385 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),0.0083f : *),(((((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x385).(x385,(x385 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),0.0083f : *),(((((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x391).(x391,(x391 : floor) : -))~_ : *),1 : - : \(x282).(x282,x282 : *) : \(x392).((x392,(x392 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x298).(x298,(x298 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),0.0083f : *),(((((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x298).(x298,(x298 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),0.0083f : *),(((((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x385).(x385,(x385 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),0.0083f : *),(((((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x381).(x381,(x381 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x382).((x382,(x382 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x383).(x383,(x383 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x384).((x384,(x384 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x385).(x385,(x385 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x386).(x386,(x386 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x387).((x387,(x387 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *),0.0083f : *),(((((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x390).(x390,(x390,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x388).(\(x389).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x388 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x389 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x391).(x391,(x391 : floor) : -))~_ : *),1 : - : \(x282).(x282,x282 : *) : \(x392).((x392,(x392 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x298).(x298,(x298 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),0.0083f : *),(((((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x294).(x294,(x294 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x314).((x314,(x314 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x296).(x296,(x296 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x315).((x315,(x315 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x298).(x298,(x298 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x299).(x299,(x299 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x316).((x316,(x316 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *),0.0083f : *),(((((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x319).(x319,(x319,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x317).(\(x318).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x317 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x318 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x304).(x304,(x304 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x305).((x305,(x305 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x306).(x306,(x306 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x307).((x307,(x307 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x308).(x308,(x308 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x309).(x309,(x309 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x310).((x310,(x310 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *),0.0083f : *),(((((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x313).(x313,(x313,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x311).(\(x312).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x311 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x312 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(((((((hslider("Matrix/m12", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m32", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Matrix/m42", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb2", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 2/op2_ratio", 2.0f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : *) : +) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : *),(((((((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),(1,(1,(hslider("Operators/Op 3/op3_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),(((1,((1,(hslider("Operators/Op 3/op3_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),((1,hslider("Operators/Op 3/op3_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 3/op3_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),((1,hslider("Operators/Op 3/op3_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 3/op3_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -),hslider("Operators/Op 3/op3_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : max) : min : _,(1,((_,1 : + : _,(button("Master/gate[hidden:1]"),0 : ==) : *)~_,(1,(hslider("Operators/Op 3/op3_release", 0.5f, 0.01f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : -) : * : 0,_ : max),(hslider("Operators/Op 3/op3_level", 0.4f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),(1.0f,(((((hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),(hslider("Global/lfo_levels", 0.5f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),0.5f : *),(1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x32).(x32,(x32 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2) : -) : *),0.5f : *) : -) : *),((1.0f,hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f) : -),(hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *) : +) : *),(((1.0f,(hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : -),(65536,((((_,(65536 : int) : %)~(_,(1 : mem) : +) : float),6.2831855f : *),(65536 : float) : / : sin),((((1,(1 : mem) : -),0 : |),(_,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : *) : +),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x26).(x26,(x26 : floor) : -))~_ : _,(65536 : float) : * : int) : rdtable) : *),((hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x397).(x397,(x397 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),0.0083f : *),(((((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x397).(x397,(x397 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),0.0083f : *),(((((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x403).(x403,(x403 : floor) : -))~_ : *),1 : - : \(x233).(x233,x233 : *) : \(x404).((x404,(x404 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x397).(x397,(x397 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),0.0083f : *),(((((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x397).(x397,(x397 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),0.0083f : *),(((((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x403).(x403,(x403 : floor) : -))~_ : *),1 : - : \(x233).(x233,x233 : *) : \(x404).((x404,(x404 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x249).(x249,(x249 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),0.0083f : *),(((((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x249).(x249,(x249 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),0.0083f : *),(((((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x397).(x397,(x397 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),0.0083f : *),(((((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x393).(x393,(x393 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x394).((x394,(x394 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x395).(x395,(x395 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x396).((x396,(x396 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x397).(x397,(x397 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x398).(x398,(x398 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x399).((x399,(x399 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *),0.0083f : *),(((((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x402).(x402,(x402,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x400).(\(x401).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x400 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x401 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x403).(x403,(x403 : floor) : -))~_ : *),1 : - : \(x233).(x233,x233 : *) : \(x404).((x404,(x404 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x249).(x249,(x249 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),0.0083f : *),(((((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x245).(x245,(x245 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x265).((x265,(x265 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x247).(x247,(x247 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x266).((x266,(x266 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x249).(x249,(x249 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x250).(x250,(x250 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x267).((x267,(x267 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *),0.0083f : *),(((((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x270).(x270,(x270,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x268).(\(x269).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x268 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x269 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x255).(x255,(x255 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x256).((x256,(x256 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x257).(x257,(x257 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x258).((x258,(x258 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x259).(x259,(x259 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x260).(x260,(x260 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x261).((x261,(x261 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *),0.0083f : *),(((((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x264).(x264,(x264,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x262).(\(x263).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x262 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x263 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(((((((hslider("Matrix/m13", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m23", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m43", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Feedback/fb3", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 3/op3_ratio", 3.0f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : *) : +) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : *),(((((((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),(1,(1,(hslider("Operators/Op 4/op4_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),(((1,((1,(hslider("Operators/Op 4/op4_attack", 0.01f, 0.001f, 5.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),((1,hslider("Operators/Op 4/op4_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 4/op4_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),((_,button("Master/gate[hidden:1]") : +)~(_,((button("Master/gate[hidden:1]") : mem),button("Master/gate[hidden:1]") : >=) : *),((1,hslider("Operators/Op 4/op4_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : -),(1,(hslider("Operators/Op 4/op4_decay", 0.3f, 0.001f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -),hslider("Operators/Op 4/op4_sustain", 0.7f, 0.0f, 1.0f, 0.001f) : max) : min : _,(1,((_,1 : + : _,(button("Master/gate[hidden:1]"),0 : ==) : *)~_,(1,(hslider("Operators/Op 4/op4_release", 0.5f, 0.01f, 1e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : -) : * : 0,_ : max),(hslider("Operators/Op 4/op4_level", 0.3f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),(1.0f,(((((hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),(hslider("Global/lfo_levels", 0.5f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *),0.5f : *),(1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x28).(x28,(x28 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x29).((x29,(x29 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x30).(x30,(x30 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x31).((x31,(x31 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x32).(x32,(x32 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x24).(x24,(x24 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x25).((x25,(x25 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2) : -) : *),0.5f : *) : -) : *),((1.0f,hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f) : -),(hslider("Master/vel_sens", 0.5f, 0.0f, 1.0f, 0.001f),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : *) : +) : *),(((1.0f,(hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)) : -),(65536,((((_,(65536 : int) : %)~(_,(1 : mem) : +) : float),6.2831855f : *),(65536 : float) : / : sin),((((1,(1 : mem) : -),0 : |),(_,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x212).(x212,(x212 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x213).((x213,(x213 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x214).(x214,(x214 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x215).((x215,(x215 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x216).(x216,(x216 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x217).(x217,(x217 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x218).((x218,(x218 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *),0.0083f : *),(((((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x221).(x221,(x221,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x219).(\(x220).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x219 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x220 : *) : +)~_)) : *) : *) : +),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x26).(x26,(x26 : floor) : -))~_ : _,(65536 : float) : * : int) : rdtable) : *),((hslider("Master/waveform_blend", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x409).(x409,(x409 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),0.0083f : *),(((((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x409).(x409,(x409 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),0.0083f : *),(((((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x415).(x415,(x415 : floor) : -))~_ : *),1 : - : \(x131).(x131,x131 : *) : \(x416).((x416,(x416 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x409).(x409,(x409 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),0.0083f : *),(((((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x409).(x409,(x409 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),0.0083f : *),(((((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x415).(x415,(x415 : floor) : -))~_ : *),1 : - : \(x131).(x131,x131 : *) : \(x416).((x416,(x416 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x147).(x147,(x147 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),0.0083f : *),(((((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x147).(x147,(x147 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),0.0083f : *),(((((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x409).(x409,(x409 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),0.0083f : *),(((((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x405).(x405,(x405 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x406).((x406,(x406 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x407).(x407,(x407 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x408).((x408,(x408 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x409).(x409,(x409 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x410).(x410,(x410 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x411).((x411,(x411 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *),0.0083f : *),(((((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x414).(x414,(x414,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x412).(\(x413).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x412 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x413 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x415).(x415,(x415 : floor) : -))~_ : *),1 : - : \(x131).(x131,x131 : *) : \(x416).((x416,(x416 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x84).(x84,(x84 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x85).((x85,(x85 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x86).(x86,(x86 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x87).((x87,(x87 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x88).(x88,(x88 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x89).(x89,(x89 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x90).((x90,(x90 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *),0.0083f : *),(((((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x93).(x93,(x93,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x91).(\(x92).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x91 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x92 : *) : +)~_)) : *) : *) : +),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x147).(x147,(x147 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),0.0083f : *),(((((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x143).(x143,(x143 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x163).((x163,(x163 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x145).(x145,(x145 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x164).((x164,(x164 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x147).(x147,(x147 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x148).(x148,(x148 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x165).((x165,(x165 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *),0.0083f : *),(((((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x168).(x168,(x168,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x166).(\(x167).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x166 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x167 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x153).(x153,(x153 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x154).((x154,(x154 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x155).(x155,(x155 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x156).((x156,(x156 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x157).(x157,(x157 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x158).(x158,(x158 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x159).((x159,(x159 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *),0.0083f : *),(((((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x162).(x162,(x162,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x160).(\(x161).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x160 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x161 : *) : +)~_)) : *) : *) : +),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,((((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(((((((hslider("Matrix/m14", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x7 : *),(((hslider("Matrix/m24", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x8 : *) : +),(((hslider("Matrix/m34", 0.0f, 0.0f, 1e+01f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x9 : *) : +),(((hslider("Feedback/fb4", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),((1.0f,(hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : -),((hslider("Global/vel_index_scale", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)),(hslider("Master/_vel[hidden:1]", 0.7f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : *),x10 : *) : +),(((hslider("Master/freq[hidden:1][unit:Hz]", 2.2e+02f, 2e+01f, 4e+03f, 0.01f),(2.0f,(hslider("Master/fine_tune[unit:cents]", 0.0f, -5e+01f, 5e+01f, 0.01f),1.2e+03f : /) : pow) : *),(2.0f,((((((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : <),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : <),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *) : -),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.667f : -),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x51).(x51,(x51 : floor) : -))~_ : *),1 : - : \(x13).(x13,x13 : *) : \(x52).((x52,(x52 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : -) : *) : +),(((1.0f,((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x53).(x53,(x53 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x54).((x54,(x54 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *),(((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),0.333f : -),3.0f : *),((2,((_<:(_,1 : -<:_,_),_<:((_,0 : <),_,_ : select2),((_,0 : <),(_<:_,(_,(1,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : -) : * : _,1 : +) : +),_ : select2))~(_,(1.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(1.1920929e-07f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : abs) : max : float) : /) : /) : +) : !,_) : *),1 : -) : *) : +) : select2),(((1.0f,(hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *) : -),(65536,((((_,65536 : %)~(_,(1 : mem) : +) : float),6.2831855f : *),65536.0f : / : sin),((((1,(1 : mem) : -),0 : |),(_,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x55).(x55,(x55 : floor) : -))~_ : _,65536.0f : * : int) : rdtable) : *),((hslider("Global/lfo_waveform", 0.0f, 0.0f, 1.0f, 0.001f),3.0f : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int) : @),(1,((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : -) : *) : -),((((2,(((1,(1 : mem) : -),0 : |),(_,((2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : +),0 : select2 : \(x56).(x56,(x56 : floor) : -))~_ : *),1 : - : \(x16).(x16,x16 : *) : \(x57).((x57,(x57 : mem) : -),(2.0f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(2e+01f,(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max : abs) : max) : /) : /) : /),2 : / : _,(1,1 : @) : *),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : int),1 : +) : @),((0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max),(0,(2047,(0.5f,((1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min : float),(hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f),23.44895f : max) : /) : *) : min) : max : floor) : -) : *) : - : +~(_,0.999f : *) : _,((4.0f,hslider("Global/lfo_rate", 5.0f, 0.01f, 2e+01f, 0.001f) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : select2),(hslider("Global/lfo_depth", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),(hslider("Global/lfo_pitch", 0.5f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *),0.0083f : *),(((((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *),((1,((1,(0.001f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max),(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : +),(((\(x171).(x171,(x171,0 : >) : +),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : <=) : *),(button("Master/gate[hidden:1]"),(button("Master/gate[hidden:1]") : mem) : >) : +)~_,(1,(1,(hslider("Global/pitch_env_decay", 0.1f, 0.001f, 2.0f, 0.001f),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : *) : max) : /) : *) : -) : min : 0,_ : max),(hslider("Global/pitch_env_amount", 0.0f, 0.0f, 1.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : +) : pow) : *),(hslider("Operators/Op 4/op4_ratio", 0.5f, 0.125f, 16.0f, 0.001f) : \(x169).(\(x170).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x169 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x170 : *) : +)~_)) : *) : *) : +) : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : *) : *) : +) : *))))) ~ ID_2; +ID_4 = ID_3 : ID_2; +ID_5 = ID_4 :> _; +ID_6 = hslider("Master/level", 0.7f, 0.0f, 1.0f, 0.001f); +ID_7 = (ID_6 : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)); +ID_8 = ID_7, 0.25f; +ID_9 = (ID_8 : *); +ID_10 = _, ID_9; +ID_11 = ID_10 : *; +ID_12 = \(x417).(x417,(0.001f,(1.0f,((hslider("Master/output_saturation", 0.0f, 0.0f, 1.0f, 0.001f) : \(x5).(\(x6).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x5 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x6 : *) : +)~_)),(x417 : abs) : *) : +) : max) : /) : \(x418).(x418 : _<:(_,((0,(1,(1,(((6.2831855f,hslider("Master/output_hp[unit:Hz]", 2e+01f, 2e+01f, 2e+02f, 0.1f) : *),0.5f : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : / : tan) : /) : *) : +),(1,(1,(((6.2831855f,hslider("Master/output_hp[unit:Hz]", 2e+01f, 2e+01f, 2e+02f, 0.1f) : *),0.5f : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : / : tan) : /) : +) : /) : *),(mem : _,((0,(1,(1,(((6.2831855f,hslider("Master/output_hp[unit:Hz]", 2e+01f, 2e+01f, 2e+02f, 0.1f) : *),0.5f : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : / : tan) : /) : *) : -),(1,(1,(((6.2831855f,hslider("Master/output_hp[unit:Hz]", 2e+01f, 2e+01f, 2e+02f, 0.1f) : *),0.5f : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : / : tan) : /) : +) : /) : *):>+~(_,(0,((1,(1,(((6.2831855f,hslider("Master/output_hp[unit:Hz]", 2e+01f, 2e+01f, 2e+02f, 0.1f) : *),0.5f : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : / : tan) : /) : -),(1,(1,(((6.2831855f,hslider("Master/output_hp[unit:Hz]", 2e+01f, 2e+01f, 2e+02f, 0.1f) : *),0.5f : *),(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : / : tan) : /) : +) : /) : -) : *)); +ID_13 = ID_11 : ID_12; +ID_14 = ID_5 : ID_13; +ID_15 = hslider("Master/stereo_spread", 0.1f, 0.0f, 1.0f, 0.001f); +ID_16 = (ID_15 : \(x3).(\(x4).(((1.0f,(1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -) : -),x3 : *),((1,(44.1f,(1.92e+05f,(1.0f,fconstant(int fSamplingFreq, ) : max) : min) : /) : -),x4 : *) : +)~_)); +ID_17 = ID_16, 5.0f; +ID_18 = (ID_17 : *); +ID_19 = ID_18, 1.2e+03f; +ID_20 = (ID_19 : /); +ID_21 = 2.0f, ID_20; +ID_22 = (ID_21 : pow); +ID_23 = _, ID_22; +ID_24 = (ID_23 : *); +ID_25 = 0.0f, ID_18; +ID_26 = (ID_25 : -); +ID_27 = ID_26, 1.2e+03f; +ID_28 = (ID_27 : /); +ID_29 = 2.0f, ID_28; +ID_30 = (ID_29 : pow); +ID_31 = _, ID_30; +ID_32 = (ID_31 : *); +ID_33 = ID_24, ID_32; +ID_34 = ID_14 <: ID_33; +process = ID_34;