1; =====================================================================================================================================
2;|                                                            CSOUND MULTI FX                                                          |
3;|-------------------------------------------------------------------------------------------------------------------------------------|
4;|                                                    Written by Iain McCurdy, 2010                                                    |
5; =====================================================================================================================================
6
7;Modified for QuteCsound by René, February 2011
8;Tested on Ubuntu 10.04 with csound-float 5.13.0 and QuteCsound svn rev 817
9;GUI is big, in QuteCsound Configuration / Widgets set 'Widgets are an independent window' to OFF
10
11;Notes on modifications from original csd:
12;	Add temp tables for exp slider when required in instrument
13;	Add Browser for audio file and use of FilePlay2 udo, now accept mono or stereo wav files
14;	Removed macros, no usefull because QuteCsound GUI can't be automaticaly generated
15;	Increase giOnOffStatus table size from 16 to 32
16;	Removed "Instructions and Info Panel"
17
18;	                                                          Effects Modules
19;	-------------------------------------------------------------------------------------------------------------------------------------------------
20;	The GUI design and general approach has been based on so called 'stomp boxes' that might be used by an electric guitarist. Efficient use of the
21;	computer's resources is made by making each effect a unique Csound instrument which is switched on or off as needed.
22;	This example works on the computer's live input. Input is stereo and all effects are stereo in, stereo out.
23;	If you don't have live input configured on your computer you can also access a built-in sound file using the 'File Play' module.
24;
25;	Instructions for each individual effect follows:
26;
27;	VOLUME
28;	------
29;	A simple volume control. If the effect is bypassed the input signal passes through unchanged.
30;
31;	FILE-PLAY
32;	---------
33;	A file player effect. Edit code to change the sound file used. Separate volume controls for the sound file and the input sound.
34;	The main purpose of this module is to provide some audio input for auditioning effects if live audio is not available.                                                                                                                ", 	1,      5,     14,    990,    20,     5, 520
35;
36;	COMPRESSOR
37;	----------
38;	A dynamic compressor with controls for threshold (turning the knob clockwise lowers the threshold), compressions ratio (1:1 - 100:1),
39;	attack time of the compression (0.01 - 0.3 seconds) and a gain compensation control (1 - 20).
40;
41;	ENV FOLLOWER
42;	------------
43;	A dynamic envelope following low-pass filter that used Csound's moogladder low-pass filter. Controls are for the sensitivity of the envelope
44;	following, basic frequency of the filter (100-10000 Hz) and resonance of the filter.
45;
46;	DISTORTION
47;	----------
48;	A distortion effect with controls for level whenever the effect is active, drive (amount of distortion) and tone (basically a low-pass filter).
49;
50;	REVERSE
51;	-------
52;	Reverses buffered chunks of sound received in real-time at its input. The user can control the length of the buffer from 0.1 - 2 seconds.
53;
54;	PITCH SHIFTER
55;	-------------
56;	A pitch shifter that uses streaming phase vocoding technology. Controls for mix (minimum=all dry signal, maximum=all effect), pitch
57;	(-1 octave to +1 octave in semitone steps), fine (-100 cents to +100 steps) and amount of output signal fed back into the input (0% - 100%).
58;
59;	FREQUENCY SHIFTER
60;	-----------------
61;	A frequency shifter using Csound's hilbert opcode. Controls for mix (minimum=all dry signal, maximum=all effect), frequency shift (-1000 to +1000),
62;	multiplier - a value in the range -1 to +1 which is multiplied to the frequency shift value and can be used to adjust the sensitivity of the 'Freq.'
63;	control - and finally a feedback control which controls the amount of output signal that is fed back into the input (0% - 75%).
64;
65;	RING MODULATOR
66;	--------------
67;	A ring modulator effect with controls for mix (minimum=all dry signal, maximum=all effect), modulating frequency (10-5000Hz) and an envelope control
68;	which controls the amount of influence the dynamics of the input sound has over the modulating frequency.
69;
70;	PHASER
71;	------
72;	An 8 ordinate phaser effect with controls for rate (0.01 Hz - 14 Hz), depth (0 - 8 octaves), base frequency (65 - 4000 Hz) and a feedback control
73;	which controls the intensity of the effect.
74;
75;	LoFi
76;	------
77;	Digital decimation of the input signal. Controls for bit depth reduction from 16 to 2 bits and for sample rate reduction (44100Hz to 172Hz).
78;
79;	FILTER
80;	------
81;	A high-pass followed by a low-pass filter, both 48dB/octave. Controls for high-pass filter cutoff, high-pass filter cutoff and gain.
82;
83;	AUTO-PAN/TREMOLO
84;	----------------
85;	A effect that applies lfo controlled panning or amplitude modulation. Controls for LFO rate (0.1 - 50 Hz), depth of modulation, mode (auto-panning
86;	or tremolo/amplitude modulation) and LFO waveform type (sine, triangle or square).
87;
88;	STEREO CHORUS
89;	-------------
90;	A stereo chorus effect with controls for the rate of modulation (0.001 - 7 Hz), depth of modulation (0 - 0.01 secs.) and phase interval between
91;	the left and right channel LFOs (0degs - 180degs).
92;
93;	FLANGER
94;	-------
95;	A flanger effect with controls for rate of modulation (0.001 - 7 Hz), depth of modulation (0 - 0.1 secs.), delay modulation offset
96;	(0.0001 - 0.01 secs) and feedback (0% - 99%).
97;
98;	DELAY
99;	-----
100;	A delay effect with controls for effect mix (minimum=all dry signal, maximum=all effect), delay time (0.01 - 5 secs.), feedback (0% - 100%) and
101;	high frequency loss (a low-pass filter within the delay feedback loop 200 - 20000 Hz).
102;
103;	REVERB
104;	------
105;	A reverb effect that uses Csound's reverbsc opcode and with controls for effect mix (minimum=all dry signal, maximum=all effect), room size and
106;	high frequency damping.
107;
108;	EQUALIZER
109;	---------
110;	A stereo graphic equalizer. Gain controls centering around the frequencies 100Hz, 200Hz, 400Hz, 800Hz, 1600Hz, 3200Hz and 6400Hz. The lowest
111;	control is a low shelving filter and the highest is a high shelving control.
112
113
114;my flags on Ubuntu: -dm0 -iadc -odac -+rtaudio=jack -b32 -B4096 -+rtmidi=null
115<CsoundSynthesizer>
116<CsOptions>
117--env:SSDIR+=../SourceMaterials
118</CsOptions>
119<CsInstruments>
120sr 		= 44100	;SAMPLE RATE
121ksmps 	= 32		;NUMBER OF AUDIO SAMPLES IN EACH CONTROL CYCLE
122nchnls	= 2		;NUMBER OF CHANNELS (2=STEREO)
1230dbfs	= 1		;MAXIMUM AMPLITUDE REGARDLESS OF BIT DEPTH
124
125#define	UPDATE	#10#
126
127giOnOffStatus	ftgen	0,0,32,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0	;TABLE THAT STORES THE ON/OFF STATUS OF EACH EFFECT 0=OFF 1=ON
128gisine		ftgen	0,0,4096,10,1
129giWet		ftgen	0,0,1024,-7,0,512,1,512,1				;RESCALING FUNCTION FOR WET LEVEL CONTROL
130giDry		ftgen	0,0,1024,-7,1,512,1,512,0				;RESCALING FUNCTION FOR DRY LEVEL CONTROL
131
132
133opcode FilePlay2, aa, Skoo		; Credit to Joachim Heintz
134	;gives stereo output regardless your soundfile is mono or stereo
135	Sfil, kspeed, iskip, iloop	xin
136	ichn		filenchnls	Sfil
137	if ichn == 1 then
138		aL		diskin2	Sfil, kspeed, iskip, iloop
139		aR		=		aL
140	else
141		aL, aR	diskin2	Sfil, kspeed, iskip, iloop
142	endif
143		xout		aL, aR
144endop
145
146
147instr	1	;TRIGGERED BY EFFECT ON/OFF SWITCHES - AMENDS ON/OFF STATUS TABLE ACCORDINGLY AND STARTS THE DESIRED EFFECT
148	iStatus	table	p4, giOnOffStatus						;CURRENT STATUS
149	iStatus	=		abs(iStatus - 1)						;NEW STATUS - SWAPS BETWEEN ZERO AND 1
150			tablew	iStatus, p4, giOnOffStatus				;WRITE NEW STATUS
151	if iStatus=1 then										;IF EFFECT IS NOW ON...
152			event_i	"i", p4 + 10, 0, -1						;TURN ON THE RELELVANT EFFECT. EFFECT NUMBER DERIVED FROM p4 OF BUTTON
153	endif												;END OF THIS CONDITIONAL  BRANCH
154endin
155
156instr	2	;INPUT (ALWAYS ON)
157	gaSigL, gaSigR	ins										;READ STEREO INPUT INTO GLOBAL AUDIO VARIABLES
158endin
159
160
161;THE EFFECTS...
162instr	10	;VOLUME
163	;GUI-----------------------------------------------------------------------------------------------------------------------------------
164	;Use VOLUMELED widget controller for effect ON/OFF light
165	;Use VOLUMEOnOff widget button to Start/Stop effect (event i 1 0 0.01 0)
166
167	kUpdate	metro	$UPDATE
168	if (kUpdate == 1)	then
169		k1VOLUME	invalue	"Volume"
170
171				outvalue	"VOLUMELED", 1						;THIS TURNS ON THE LED FOR THE EFFECT
172	endif
173	;-----------------------------------------------------------------------------------------------------------------------------------
174
175	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
176	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
177		outvalue	"VOLUMELED", 0								;SWITCH OFF THE LED
178		turnoff											;TURN THIS INSTRUMENT OFF
179	endif												;END OF THIS CONDITIONAL BRANCH
180	gaSigL	= gaSigL*k1VOLUME								;SCALE LEFT CHANNEL AMPLITUDE USING VOLUME CONTROL KNOB
181	gaSigR	= gaSigR*k1VOLUME								;SCALE RIGHT CHANNEL AMPLITUDE USING VOLUME CONTROL KNOB
182endin
183
184instr	11	;FILEPLAY
185	;GUI-----------------------------------------------------------------------------------------------------------------------------------
186	;Use FILEPLAYLED widget controller for effect ON/OFF light
187	;Use FILEPLAYOnOff widget button to Start/Stop effect (event i 1 0 0.01 1)
188
189	kUpdate	metro	$UPDATE
190	if (kUpdate == 1)	then
191		k1FILEPLAY	invalue	"File"
192		k2FILEPLAY	invalue	"Live"
193
194		Sfile_new		strcpy	""							;INIT TO EMPTY STRING
195		gSfile		invalue	"_Browse"
196		Sfile_old		strcpyk	Sfile_new
197		Sfile_new		strcpyk	gSfile
198		kfile 		strcmpk	Sfile_new, Sfile_old
199
200					outvalue	"FILEPLAYLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
201	endif
202	;-----------------------------------------------------------------------------------------------------------------------------------
203
204	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
205	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
206		outvalue	"FILEPLAYLED", 0							;SWITCH OFF THE LED
207		turnoff											;TURN THIS INSTRUMENT OFF
208	endif												;END OF THIS CONDITIONAL BRANCH
209
210	kNew_file		changed	kfile							;GENERATE A MOMENTARY '1' PULSE IN OUTPUT 'kSwitch' IF ANY OF THE SCANNED INPUT VARIABLES CHANGE. (OUTPUT 'kSwitch' IS NORMALLY ZERO)
211	if	kNew_file=1	then									;IF I-RATE VARIABLE CHANGE TRIGGER IS '1'...
212		reinit	NEW_FILE									;BEGIN A REINITIALISATION PASS FROM LABEL 'NEW_FILE'
213	endif
214	NEW_FILE:
215	;OUTPUTS		OPCODE	FILE  | SPEED|INSKIP|LOOPING (0=OFF 1=ON)
216	aFileL, aFileR	FilePlay2	gSfile,	1,	0,		1			;READ A FILE FROM DISK
217
218	gaSigL	sum	aFileL*k1FILEPLAY, gaSigL*k2FILEPLAY			;MIX FILE PLAYER AUDIO WITH LIVE AUDIO ACCORDING TO THE SETTING OF KNOB 1 & 2 (LEFT CHANNEL)
219	gaSigR	sum	aFileR*k1FILEPLAY, gaSigR*k2FILEPLAY			;MIX FILE PLAYER AUDIO WITH LIVE AUDIO ACCORDING TO THE SETTING OF KNOB 1 & 2 (LEFT CHANNEL)
220endin
221
222instr	12	;COMPRESSOR
223	;GUI------------------------------------------------------------------------------------------------------------------------------------
224	;Use COMPRESSORLED widget controller for effect ON/OFF light
225	;Use COMPRESSOROnOff widget button to Start/Stop effect (event i 1 0 0.01 2)
226
227	iExp1	ftgentmp	0, 0, 129, -25, 0, 1.0, 128, 100.0		;TABLE FOR EXP SLIDER
228	iExp2	ftgentmp	0, 0, 129, -25, 0, 1.0, 128, 20.0		;TABLE FOR EXP SLIDER
229
230	kUpdate	metro	$UPDATE
231	if (kUpdate == 1)	then
232		k1COMPRESSOR	invalue	"COMPRESSOR_Thresh"
233		k2COMPRESSOR	invalue	"COMPRESSOR_Ratio"
234		k2COMPRESSOR	tablei	k2COMPRESSOR, iExp1, 1
235
236		k3COMPRESSOR	invalue	"COMPRESSOR_Att"
237		k4COMPRESSOR	invalue	"COMPRESSOR_PostGain"
238		k4COMPRESSOR	tablei	k4COMPRESSOR, iExp2, 1
239
240					outvalue	"COMPRESSORLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
241	endif
242	;-----------------------------------------------------------------------------------------------------------------------------------
243
244	kStatus	table	p1-10, giOnOffStatus            			;READ EFFECT ON/OFF STATUS FROM TABLE
245	if kStatus=0 then                               				;IF THIS EFFECT HAS BEEN TURNED OFF
246		outvalue	"COMPRESSORLED", 0							;SWITCH OFF THE LED
247		turnoff                                 				;TURN THIS INSTRUMENT OFF
248	endif                                           				;END OF THIS CONDITIONAL BRANCH
249
250	ktrigger	changed	k2COMPRESSOR, k3COMPRESSOR				;RATIO AND ATTACK TIME ARE I-RATE SO RE-INITIALIZATION IS REQUIRED IN ORDER FOR THEM TO TAKE EFFECT
251	if ktrigger=1 then										;IF A REINITIALIZATIO  TRIGGER HAS BEEN RECEIVED...
252		reinit	UPDATE									;BEGIN A REINITIALIZATION PASS FROM LABEL 'UPDATE'
253	endif												;END OF THIS CONDITIONAL BRANCH
254
255	UPDATE:												;LABEL
256	aCompL	dam 	gaSigL, k1COMPRESSOR, 1/i(k2COMPRESSOR), 1, i(k3COMPRESSOR), 0.1		;COMPRESSOR (LEFT CHANNEL)
257	aCompR	dam 	gaSigR, k1COMPRESSOR, 1/i(k2COMPRESSOR), 1, i(k3COMPRESSOR), 0.1		;COMPRESSOR (RIGHT CHANNEL)
258			rireturn										;RETURN FROM INTIALIZATION PASS
259	gaSigL	=	aCompL*k4COMPRESSOR							;REDEFINE GLOBAL AUDIO SIGNAL WITH COMPRESSOR OUTPUT AUDIO (LEFT CHANNEL)
260	gaSigR	=	aCompR*k4COMPRESSOR							;REDEFINE GLOBAL AUDIO SIGNAL WITH COMPRESSOR OUTPUT AUDIO (RIGHT CHANNEL)
261endin
262
263instr	13	;ENVFOLLOWER
264	;GUI-----------------------------------------------------------------------------------------------------------------------------------
265	;Use ENVFOLLOWERLED widget controller for effect ON/OFF light
266	;Use ENVFOLLOWEROnOff widget button to Start/Stop effect (event i 1 0 0.01 3)
267
268	iExp1	ftgentmp	0, 0, 129, -25, 0, 100.0, 128, 10000.0		;TABLE FOR EXP SLIDER
269
270	kUpdate	metro	$UPDATE
271	if (kUpdate == 1)	then
272		k1ENVFOLLOWER	invalue	"ENVFOLLOWER_Sens"
273		k2ENVFOLLOWER	invalue	"ENVFOLLOWER_Freq"
274		k2ENVFOLLOWER	tablei	k2ENVFOLLOWER, iExp1, 1
275		k3ENVFOLLOWER	invalue	"ENVFOLLOWER_Res"
276
277					outvalue	"ENVFOLLOWERLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
278	endif
279	;-----------------------------------------------------------------------------------------------------------------------------------
280
281	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
282	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
283		outvalue	"ENVFOLLOWERLED", 0							;SWITCH OFF THE LED
284		turnoff											;TURN THIS INSTRUMENT OFF
285	endif												;END OF THIS CONDITIONAL BRANCH
286
287	aFollowL	follow2	gaSigL, 0.01, 0.05						;AMPLITUDE FOLLOWING AUDIO SIGNAL (LEFT CHANNEL)
288	aFollowR	follow2	gaSigR, 0.01, 0.05						;AMPLITUDE FOLLOWING AUDIO SIGNAL (RIGHT CHANNEL)
289	kFollowL	downsamp	aFollowL								;DOWNSAMPLE TO K-RATE (LEFT CHANNEL)
290	kFollowR	downsamp	aFollowR								;DOWNSAMPLE TO K-RATE (RIGHT CHANNEL)
291	kFrqL	=		k2ENVFOLLOWER + (cpsoct(kFollowL*k1ENVFOLLOWER*150))				;CREATE A LEFT CHANNEL MODULATING FREQUENCY BASE ON THE STATIC VALUE CREATED BY KNOB 2 AND THE AMOUNT OF DYNAMIC ENVELOPE FOLLOWING GOVERNED BY KNOB 3
292	kFrqR	=		k2ENVFOLLOWER + (cpsoct(kFollowR*k1ENVFOLLOWER*150))				;CREATE A RIGHT CHANNEL MODULATING FREQUENCY BASE ON THE STATIC VALUE CREATED BY KNOB 2 AND THE AMOUNT OF DYNAMIC ENVELOPE FOLLOWING GOVERNED BY KNOB 3
293	kFrqL	port		kFrqL, 0.05							;SMOOTH CONTROL SIGNAL USING PORTAMENTO (LEFT CHANNEL)
294	kFrqR	port		kFrqR, 0.05							;SMOOTH CONTROL SIGNAL USING PORTAMENTO (RIGHT CHANNEL)
295	kFrqL	limit	kFrqL, 20,18000						;LIMIT FREQUENCY RANGE TO PREVENT OUT OF RANGE FREQUENCIES (LEFT CHANNEL)
296	kFrqR	limit	kFrqR, 20,18000						;LIMIT FREQUENCY RANGE TO PREVENT OUT OF RANGE FREQUENCIES  (RIGHT CHANNEL)
297
298	gaSigL	moogladder	gaSigL, kFrqL, k3ENVFOLLOWER			;REDEFINE GLOBAL AUDIO SIGNAL AS FILTERED VERSION OF ITSELF (LEFT CHANNEL)
299	gaSigR	moogladder	gaSigR, kFrqR, k3ENVFOLLOWER			;REDEFINE GLOBAL AUDIO SIGNAL AS FILTERED VERSION OF ITSELF (RIGHT CHANNEL)
300endin
301
302instr	14	;DISTORTION
303	;GUI-----------------------------------------------------------------------------------------------------------------------------------
304	;Use DISTORTIONLED widget controller for effect ON/OFF light
305	;Use DISTORTIONOnOff widget button to Start/Stop effect (event i 1 0 0.01 4)
306
307	iExp1	ftgentmp	0, 0, 129, -25, 0, 0.01, 128, 0.4			;TABLE FOR EXP SLIDER
308	iExp2	ftgentmp	0, 0, 129, -25, 0, 20.0, 128, 20000.0		;TABLE FOR EXP SLIDER
309
310	kUpdate	metro	$UPDATE
311	if (kUpdate == 1)	then
312		k1DISTORTION	invalue	"DISTORTION_Level"
313		k2DISTORTION	invalue	"DISTORTION_Drive"
314		k2DISTORTION	tablei	k2DISTORTION, iExp1, 1
315		k3DISTORTION	invalue	"DISTORTION_Tone"
316		k3DISTORTION	tablei	k3DISTORTION, iExp2, 1
317
318					outvalue	"DISTORTIONLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
319	endif
320	;-----------------------------------------------------------------------------------------------------------------------------------
321
322	kStatus	table	p1-10, giOnOffStatus 					;READ EFFECT ON/OFF STATUS FROM TABLE
323	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
324		outvalue	"DISTORTIONLED", 0							;SWITCH OFF THE LED
325		turnoff											;TURN THIS INSTRUMENT OFF
326	endif												;END OF THIS CONDITIONAL BRANCH
327
328	kpregain	=	(k2DISTORTION*100)							;DEFINE PREGAIN FROM KNOB 2
329	kpostgain	=	0.5 * (((1-k2DISTORTION) * 0.4) + 0.6)			;DEFINE POSTGAIN FROM KNOB 2
330	kshape1	=	0										;SHAPE 1 PARAMETER
331	kshape2	=	0										;SHAPE 2 PARAMETER
332
333	aDistL	distort1	gaSigL*32000, kpregain, kpostgain, kshape1, kshape2				;CREATE DISTORTION SIGNAL
334	aDistR	distort1	gaSigR*32000, kpregain, kpostgain, kshape1, kshape2				;CREATE DISTORTION SIGNAL
335	aDistL	butlp	aDistL/32000, k3DISTORTION				;LOWPASS FILTER DISTORTED SIGNAL (LEFT CHANNEL)
336	aDistR	butlp	aDistR/32000, k3DISTORTION				;LOWPASS FILTER DISTORTED SIGNAL (RIGHT CHANNEL)
337	gaSigL	=		aDistL*k1DISTORTION						;REDEFINE GLOBAL AUDIO SIGNAL WITH DISTORTION OUTPUT AUDIO. AMPLITUDE SCALED BY KNOB 1. (LEFT CHANNEL)
338	gaSigR	=		aDistR*k1DISTORTION						;REDEFINE GLOBAL AUDIO SIGNAL WITH DISTORTION OUTPUT AUDIO. AMPLITUDE SCALED BY KNOB 1. (RIGHT CHANNEL)
339endin
340
341instr	15	;REVERSE
342	;GUI-----------------------------------------------------------------------------------------------------------------------------------
343	;Use REVERSELED widget controller for effect ON/OFF light
344	;Use REVERSEOnOff widget button to Start/Stop effect (event i 1 0 0.01 5)
345
346	kUpdate	metro	$UPDATE
347	if (kUpdate == 1)	then
348		k1REVERSE		invalue	"REVERSE_Time"
349
350					outvalue	"REVERSELED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
351	endif
352	;-----------------------------------------------------------------------------------------------------------------------------------
353
354	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
355	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
356		outvalue	"REVERSELED", 0							;SWITCH OFF THE LED
357		turnoff											;TURN THIS INSTRUMENT OFF
358	endif												;END OF THIS CONDITIONAL BRANCH
359
360	ktrig	changed	k1REVERSE
361	if ktrig=1 then
362		reinit	UPDATE
363	endif
364
365	UPDATE:
366	itime	=	i(k1REVERSE)
367	aptr		phasor	2/itime
368	aptr		=		aptr*itime
369	ienv		ftgentmp	0,0,1024,7,0,(1024*0.01),1,(1024*0.98),1,(0.01*1024),0
370 	aenv		poscil	1, 2/itime, ienv
371 	abuffer	delayr	itime
372	atapL	deltap3	aptr
373			delayw	gaSigL
374	abuffer	delayr	itime
375	atapR	deltap3	aptr
376			delayw	gaSigR
377			rireturn
378	gaSigL	=		atapL*aenv
379	gaSigR	=		atapR*aenv
380endin
381
382instr	16	;PITCH_SHIFTER
383	;GUI-----------------------------------------------------------------------------------------------------------------------------------
384	;Use PITCH_SHIFTERLED widget controller for effect ON/OFF light
385	;Use PITCH_SHIFTEROnOff widget button to Start/Stop effect (event i 1 0 0.01 6)
386
387	kUpdate	metro	$UPDATE
388	if (kUpdate == 1)	then
389		k1PITCH_SHIFTER	invalue	"PITCH_SHIFTER_Mix"
390		k2PITCH_SHIFTER	invalue	"PITCH_SHIFTER_Pitch"
391		k3PITCH_SHIFTER	invalue	"PITCH_SHIFTER_Fine"
392		k4PITCH_SHIFTER	invalue	"PITCH_SHIFTER_FBack"
393
394						outvalue	"PITCH_SHIFTERLED", 1		;THIS TURNS ON THE LED FOR THE EFFECT
395	endif
396	;-----------------------------------------------------------------------------------------------------------------------------------
397
398	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
399	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
400		outvalue	"PITCH_SHIFTERLED", 0						;SWITCH OFF THE LED
401		turnoff											;TURN THIS INSTRUMENT OFF
402	endif												;END OF THIS CONDITIONAL BRANCH
403
404	kWet		table	k1PITCH_SHIFTER, giWet, 1				;RESCALE WET LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
405	kDry		table	k1PITCH_SHIFTER, giDry, 1				;RESCALE DRY LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
406	aOutL	init		0									;INITIALIZE aOutL FOR FIRST PERFORMANCE TIME PASS
407	aOutR	init		0									;INITIALIZE aOutR FOR FIRST PERFORMANCE TIME PASS
408	kscal	=		octave((int(k2PITCH_SHIFTER)/12)+k3PITCH_SHIFTER)					;DERIVE PITCH SCALING RATIO. NOTE THAT THE 'COARSE' PITCH DIAL BECOMES STEPPED IN SEMITONE INTERVALS
409
410	fsig1L 	pvsanal	gaSigL+(aOutL*k4PITCH_SHIFTER), 1024,256,1024,0					;PHASE VOCODE ANALYSE LEFT CHANNEL
411	fsig1R 	pvsanal	gaSigL+(aOutR*k4PITCH_SHIFTER), 1024,256,2048,0					;PHASE VOCODE ANALYSE RIGHT CHANNEL
412	fsig2L 	pvscale	fsig1L, kscal							;RESCALE PITCH (LEFT CHANNEL)
413	fsig2R 	pvscale	fsig1R, kscal							;RESCALE PITCH (RIGHT CHANNEL)
414
415	aOutL 	pvsynth	fsig2L								;RESYNTHESIZE FROM FSIG (LEFT CHANNEL)
416	aOutR 	pvsynth	fsig2R								;RESYNTHESIZE FROM FSIG (RIGHT CHANNEL)
417
418	gaSigL	sum		gaSigL*kDry, aOutL*kWet					;REDEFINE GLOBAL AUDIO SIGNAL FROM MIX OF DRY AND WET SIGNALS (LEFT CHANNEL)
419	gaSigR	sum		gaSigR*kDry, aOutR*kWet					;REDEFINE GLOBAL AUDIO SIGNAL FROM MIX OF DRY AND WET SIGNALS (RIGHT CHANNEL)
420endin
421
422instr	17	;FREQSHIFTER
423	;GUI-----------------------------------------------------------------------------------------------------------------------------------
424	;Use FREQSHIFTERLED widget controller for effect ON/OFF light
425	;Use FREQSHIFTEROnOff widget button to Start/Stop effect (event i 1 0 0.01 7)
426
427	kUpdate	metro	$UPDATE
428	if (kUpdate == 1)	then
429		k1FREQSHIFTER	invalue	"FREQSHIFTER_Mix"
430		k2FREQSHIFTER	invalue	"FREQSHIFTER_Freq"
431		k3FREQSHIFTER	invalue	"FREQSHIFTER_Mult"
432		k4FREQSHIFTER	invalue	"FREQSHIFTER_Fback"
433
434					outvalue	"FREQSHIFTERLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
435	endif
436	;-----------------------------------------------------------------------------------------------------------------------------------
437
438	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
439	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
440		outvalue	"FREQSHIFTERLED", 0							;SWITCH OFF THE LED
441		turnoff											;TURN THIS INSTRUMENT OFF
442	endif												;END OF THIS CONDITIONAL BRANCH
443
444	kWet		table	k1FREQSHIFTER, giWet, 1					;RESCALE WET LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
445	kDry		table	k1FREQSHIFTER, giDry, 1					;RESCALE DRY LEVEL CONTROL ACCORDING TO FUNCTION TABLE giDry
446	aOutL	init		0
447	aOutR	init		0
448	aInL		=		gaSigL + (aOutL * k4FREQSHIFTER)			;ADD FEEDBACK SIGNAL TO INPUT (AMOUNT OF FEEDBACK CONTROLLED BY 'Feedback Gain' SLIDER)
449	aInR		=		gaSigR + (aOutR * k4FREQSHIFTER)			;ADD FEEDBACK SIGNAL TO INPUT (AMOUNT OF FEEDBACK CONTROLLED BY 'Feedback Gain' SLIDER)
450
451	arealL, aimagL	hilbert	aInL								;HILBERT OPCODE OUTPUTS TWO PHASE SHIFTED SIGNALS, EACH 90 OUT OF PHASE WITH EACH OTHER
452	arealR, aimagR	hilbert	aInR								;HILBERT OPCODE OUTPUTS TWO PHASE SHIFTED SIGNALS, EACH 90 OUT OF PHASE WITH EACH OTHER
453
454	kporttime	linseg	0,0.001,0.02
455	kfshift	portk	k2FREQSHIFTER*k3FREQSHIFTER, kporttime
456	;QUADRATURE OSCILLATORS. I.E. 90 OUT OF PHASE WITH RESPECT TO EACH OTHER
457	;OUTUTS	OPCODE	AMPLITUDE | FREQ. | FUNCTION_TABLE | INITIAL_PHASE (OPTIONAL;DEFAULTS TO ZERO)
458	asinL 	oscili       1,    kfshift,     gisine,          0
459	asinR 	oscili       1,    kfshift,     gisine,          0
460	acosL 	oscili       1,    kfshift,     gisine,          .25
461	acosR 	oscili       1,    kfshift,     gisine,          .25
462
463	;RING MODULATE EACH SIGNAL USING THE QUADRATURE OSCILLATORS AS MODULATORS
464	amod1L = arealL * acosL
465	amod1R = arealR * acosR
466	amod2L = aimagL * asinL
467	amod2R = aimagR * asinR
468
469	;UPSHIFTING OUTPUT
470	aOutL = (amod1L - amod2L)
471	aOutR = (amod1R - amod2R)
472
473	gaSigL	sum	aOutL*kWet, gaSigL*kDry
474	gaSigR	sum	aOutR*kWet, gaSigR*kDry
475endin
476
477instr	18	;RINGMODULATOR
478	;GUI-----------------------------------------------------------------------------------------------------------------------------------
479	;Use RINGMODULATORLED widget controller for effect ON/OFF light
480	;Use RINGMODULATOROnOff widget button to Start/Stop effect (event i 1 0 0.01 8)
481
482	kUpdate	metro	$UPDATE
483	if (kUpdate == 1)	then
484		k1RINGMODULATOR	invalue	"RINGMODULATOR_Mix"
485		k2RINGMODULATOR	invalue	"RINGMODULATOR_Freq"
486		k3RINGMODULATOR	invalue	"RINGMODULATOR_Env"
487
488						outvalue	"RINGMODULATORLED", 1		;THIS TURNS ON THE LED FOR THE EFFECT
489	endif
490	;-----------------------------------------------------------------------------------------------------------------------------------
491
492	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
493	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
494		outvalue	"RINGMODULATORLED", 0						;SWITCH OFF THE LED
495		turnoff											;TURN THIS INSTRUMENT OFF
496	endif												;END OF THIS CONDITIONAL BRANCH
497
498	kWet		table	k1RINGMODULATOR, giWet, 1				;RESCALE WET LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
499	kDry		table	k1RINGMODULATOR, giDry, 1				;RESCALE DRY LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
500	kporttime	linseg	0,0.001,0.02							;PORTAMENTO VARIABLE
501	kModFrq	portk	k2RINGMODULATOR, kporttime				;SMOOTH VARIABLE CHANGES
502	kRMSL	rms		gaSigL								;FOLLOW THE RMS VALUE OF THE LEFT CHANNEL
503	kRMSR	rms		gaSigR								;FOLLOW THE RMS VALUE OF THE RIGHT CHANNEL
504	kModFrqL	=		kModFrq + (cpsoct(kRMSL*k3RINGMODULATOR*100))     ;CREATE A LEFT CHANNEL MODULATING FREQUENCY BASE ON THE STATIC VALUE CREATED BY KNOB 2 AND THE AMOUNT OF DYNAMIC ENVELOPE FOLLOWING GOVERNED BY KNOB 3
505	kModFrqR	=		kModFrq + (cpsoct(kRMSR*k3RINGMODULATOR*100))     ;CREATE A RIGHT CHANNEL MODULATING FREQUENCY BASE ON THE STATIC VALUE CREATED BY KNOB 2 AND THE AMOUNT OF DYNAMIC ENVELOPE FOLLOWING GOVERNED BY KNOB 3
506
507	aModL	poscil	1, kModFrqL, gisine  					;CREATE RING MODULATING SIGNAL (LEFT CHANNEL)
508	aModR	poscil	1, kModFrqR, gisine  					;CREATE RING MODULATING SIGNAL (RIGHT CHANNEL)
509	gaSigL	sum		gaSigL*kDry, gaSigL*aModL*kWet			;MIX DRY AND WET SIGNALS (LEFT CHANNEL)
510	gaSigR	sum		gaSigR*kDry, gaSigR*aModR*kWet			;MIX DRY AND WET SIGNALS (RIGHT CHANNEL)
511endin
512
513instr	19	;PHASER
514	;GUI-----------------------------------------------------------------------------------------------------------------------------------
515	;Use PHASERLED widget controller for effect ON/OFF light
516	;Use PHASEROnOff widget button to Start/Stop effect (event i 1 0 0.01 9)
517
518	iExp1	ftgentmp	0, 0, 129, -25, 0, 0.01, 128, 14.0			;TABLE FOR EXP SLIDER
519
520	kUpdate	metro	$UPDATE
521	if (kUpdate == 1)	then
522		k1PHASER		invalue	"PHASER_Rate"
523		k1PHASER		tablei	k1PHASER, iExp1, 1
524		k2PHASER		invalue	"PHASER_Depth"
525		k3PHASER		invalue	"PHASER_Freq"
526		k4PHASER		invalue	"PHASER_FBack"
527
528					outvalue	"PHASERLED", 1					;THIS TURNS ON THE LED FOR THE EFFECT
529	endif
530	;-----------------------------------------------------------------------------------------------------------------------------------
531
532	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
533	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
534		outvalue	"PHASERLED", 0								;SWITCH OFF THE LED
535		turnoff											;TURN THIS INSTRUMENT OFF
536	endif												;END OF THIS CONDITIONAL BRANCH
537
538	klfo		lfo		k2PHASER*0.5, k1PHASER, 1									;LFO FOR THE PHASER (TRIANGULAR SHAPE)
539	gaSigL	phaser1	gaSigL, cpsoct((klfo+(k2PHASER*0.5)+k3PHASER)), 8, k4PHASER			;PHASER1 IS APPLIED TO THE LEFT CHANNEL
540	gaSigR	phaser1	gaSigR, cpsoct((klfo+(k2PHASER*0.5)+k3PHASER)), 8, k4PHASER			;PHASER1 IS APPLIED TO THE RIGHT CHANNEL
541endin
542
543instr	20	;LoFi
544	;GUI-----------------------------------------------------------------------------------------------------------------------------------
545	;Use LoFiLED widget controller for effect ON/OFF light
546	;Use LoFiOnOff widget button to Start/Stop effect (event i 1 0 0.01 10)
547
548	iExp1	ftgentmp	0, 0, 129, -25, 0, 1.0, 128, 256.0			;TABLE FOR EXP SLIDER
549
550	kUpdate	metro	$UPDATE
551	if (kUpdate == 1)	then
552		k1LoFi		invalue	"LoFi_Bits"
553		k2LoFi		invalue	"LoFi_Fold"
554		k2LoFi		tablei	k2LoFi, iExp1, 1
555					outvalue	"LoFiLED", 1					;THIS TURNS ON THE LED FOR THE EFFECT
556	endif
557	;-----------------------------------------------------------------------------------------------------------------------------------
558
559	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
560	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
561		outvalue	"LoFiLED", 0								;SWITCH OFF THE LED
562		turnoff											;TURN THIS INSTRUMENT OFF
563	endif												;END OF THIS CONDITIONAL BRANCH
564
565	kvalues	pow	2, ((1-k1LoFi)*15)+1						;RAISES 2 TO THE POWER OF kbitdepth. THE OUTPUT VALUE REPRESENTS THE NUMBER OF POSSIBLE VALUES AT THAT PARTICULAR BIT DEPTH
566	k16bit	pow	2, 16									;RAISES 2 TO THE POWER OF 16
567
568	gaSigL	=	(int((gaSigL*32768*kvalues)/k16bit)/32768)*(k16bit/kvalues)				;BIT DEPTH REDUCE AUDIO SIGNAL (LEFT CHANNEL)
569	gaSigR	=	(int((gaSigR*32768*kvalues)/k16bit)/32768)*(k16bit/kvalues)				;BIT DEPTH REDUCE AUDIO SIGNAL (RIGHT CHANNEL)
570	gaSigL	fold 	gaSigL, k2LoFi							;APPLY SAMPLING RATE FOLDOVER (LEFT CHANNEL)
571	gaSigR	fold 	gaSigR, k2LoFi							;APPLY SAMPLING RATE FOLDOVER (RIGHT CHANNEL)
572endin
573
574instr	21	;FILTER
575	;GUI-----------------------------------------------------------------------------------------------------------------------------------
576	;Use FILTERLED widget controller for effect ON/OFF light
577	;Use FILTEROnOff widget button to Start/Stop effect (event i 1 0 0.01 11)
578
579	iExp1	ftgentmp	0, 0, 129, -25, 0, 20.0, 128, 20000.0		;TABLE FOR EXP SLIDER
580	iExp2	ftgentmp	0, 0, 129, -25, 0, 1.0, 128, 20.0			;TABLE FOR EXP SLIDER
581
582	kUpdate	metro	$UPDATE
583	if (kUpdate == 1)	then
584		k1FILTER		invalue	"FILTER_HPF"
585		k1FILTER		tablei	k1FILTER, iExp1, 1
586		k2FILTER		invalue	"FILTER_LPF"
587		k2FILTER		tablei	k2FILTER, iExp1, 1
588		k3FILTER		invalue	"FILTER_Gain"
589		k3FILTER		tablei	k3FILTER, iExp2, 1
590
591					outvalue	"FILTERLED", 1					;THIS TURNS ON THE LED FOR THE EFFECT
592	endif
593	;-----------------------------------------------------------------------------------------------------------------------------------
594
595	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
596	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
597		outvalue	"FILTERLED", 0								;SWITCH OFF THE LED
598		turnoff											;TURN THIS INSTRUMENT OFF
599	endif												;END OF THIS CONDITIONAL BRANCH
600
601	kporttime	linseg	0,0.001,0.02							;RAMPING UP PORTAMENTO TIME VARIABLE
602	kHPF		portk	k1FILTER, kporttime						;APPLY PORTAMENTO TO HIGH-PASS FILTER CUTOFF VARIABLE
603	kLPF		portk	k2FILTER, kporttime						;APPLY PORTAMENTO TO HIGH-PASS FILTER CUTOFF VARIABLE
604
605	aFiltL	buthp	gaSigL, kHPF							;HIGH-PASS FILTER GLOBAL AUDIO SIGNAL (LEFT CHANNEL)
606	aFiltR	buthp	gaSigR, kHPF							;HIGH-PASS FILTER GLOBAL AUDIO SIGNAL (RIGHT CHANNEL)
607	aFiltL	buthp	aFiltL, kHPF							;HIGH-PASS FILTER AUDIO SIGNAL FROM PREVIOUS FILTER (LEFT CHANNEL)
608	aFiltR	buthp	aFiltR, kHPF							;HIGH-PASS FILTER AUDIO SIGNAL FROM PREVIOUS FILTER (RIGHT CHANNEL)
609	aFiltL	butlp	aFiltL, kLPF							;LOW-PASS FILTER GLOBAL AUDIO SIGNAL (LEFT CHANNEL)
610	aFiltR	butlp	aFiltR, kLPF							;LOW-PASS FILTER GLOBAL AUDIO SIGNAL (RIGHT CHANNEL)
611	aFiltL	butlp	aFiltL, kLPF							;LOW-PASS FILTER AUDIO SIGNAL FROM PREVIOUS FILTER (LEFT CHANNEL)
612	aFiltR	butlp	aFiltR, kLPF							;LOW-PASS FILTER AUDIO SIGNAL FROM PREVIOUS FILTER (RIGHT CHANNEL)
613	gaSigL	=		aFiltL*k3FILTER						;REDEFINE GLOBAL AUDIO LEFT CHANNEL SIGNAL WITH OUTPUT FROM LAST FILTER. RESCALE WITH GAIN CONTROL (LEFT CHANNEL)
614	gaSigR	=		aFiltR*k3FILTER						;REDEFINE GLOBAL AUDIO RIGHT CHANNEL SIGNAL WITH OUTPUT FROM LAST FILTER. RESCALE WITH GAIN CONTROL (RIGHT CHANNEL)
615endin
616
617instr	22	;PANTREM
618	;GUI-----------------------------------------------------------------------------------------------------------------------------------
619	;Use PANTREMLED widget controller for effect ON/OFF light
620	;Use PANTREMOnOff widget button to Start/Stop effect (event i 1 0 0.01 12)
621
622	iExp1	ftgentmp	0, 0, 129, -25, 0, 0.1, 128, 50.0			;TABLE FOR EXP SLIDER
623
624	kUpdate	metro	$UPDATE
625	if (kUpdate == 1)	then
626		k1PANTREM		invalue	"PANTREM_Rate"
627		k1PANTREM		tablei	k1PANTREM, iExp1, 1
628		k2PANTREM		invalue	"PANTREM_Depth"
629		k3PANTREM		invalue	"PAN_TREM"
630		k4PANTREM		invalue	"PANTREM_Wave"
631
632					outvalue	"PANTREMLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
633	endif
634	;-----------------------------------------------------------------------------------------------------------------------------------
635
636	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
637	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
638		outvalue	"PANTREMLED", 0							;SWITCH OFF THE LED
639		turnoff											;TURN THIS INSTRUMENT OFF
640	endif												;END OF THIS CONDITIONAL BRANCH
641
642	ktrig	changed	k4PANTREM								;IF LFO WAVEFORM TYPE IS CHANGED GENERATE A MOMENTARY '1' (BANG)
643	if ktrig=1 then										;IF A 'BANG' HAS BEEN GENERATED IN THE ABOVE LINE
644		reinit	UPDATE									;BEGIN A REINITIALIZATION PASS FROM LABEL 'UPDATE' SO THAT LFO WAVEFORM TYPE CAN BE UPDATED
645	endif												;END OF THIS CONDITIONAL BRANCH
646
647	UPDATE:												;LABEL CALLED UPDATE
648	klfo		lfo			k2PANTREM, k1PANTREM, i(k4PANTREM)		;CREATE AN LFO
649			rireturn										;RETURN FROM REINITIALIZATION PASS
650	klfo	=	(klfo*0.5)+0.5									;RESCALE AND OFFSET LFO SO IT STAY WITHIN THE RANGE 0 - 1 ABOUT THE VALUE 0.5
651	if k4PANTREM=2 then										;IF SQUARE WAVE MODULATION HAS BEEN CHOSEN...
652		klfo	portk	klfo, 0.001							;SMOOTH THE WAVE A TINY BIT TO PREVENT CLICKS
653	endif												;END OF THIS CONDITIONAL BRANCH
654	if k3PANTREM=0 then										;PAN	IF PANNING MODE IS CHOSEN FROM BUTTON BANK...
655		alfo		interp	klfo								;INTERPOLATE K-RATE LFO AND CREATE A-RATE VARIABLE
656		gaSigL	=		gaSigL*sqrt(alfo)					;REDEFINE GLOBAL AUDIO LEFT CHANNEL SIGNAL WITH AUTO-PANNING
657		gaSigR	=		gaSigR*(1-sqrt(alfo))				;REDEFINE GLOBAL AUDIO RIGHT CHANNEL SIGNAL WITH AUTO-PANNING
658	elseif k3PANTREM=1 then									;TREM IF TREMELO MODE IS CHOSEN FROM BUTTON BANK...
659		klfo		=		klfo+(0.5-(k2PANTREM*0.5))			;MODIFY LFO AT ZERO DEPTH VALUE IS 1 AND AT MAX DEPTH CENTRE OF MODULATION IS 0.5
660		alfo		interp	klfo								;INTERPOLATE K-RATE LFO AND CREATE A-RATE VARIABLE
661		gaSigL	=		gaSigL*(alfo^2)					;REDEFINE GLOBAL AUDIO LEFT CHANNEL SIGNAL WITH TREMELO
662		gaSigR	=		gaSigR*(alfo^2)					;REDEFINE GLOBAL AUDIO RIGHT CHANNEL SIGNAL WITH TREMELO
663	endif												;END OF THIS CONDITIONAL BRANCH
664endin
665
666instr	23	;CHORUS
667	;GUI-----------------------------------------------------------------------------------------------------------------------------------
668	;Use CHORUSLED widget controller for effect ON/OFF light
669	;Use CHORUSOnOff widget button to Start/Stop effect (event i 1 0 0.01 13)
670
671	kUpdate	metro	$UPDATE
672	if (kUpdate == 1)	then
673		k1CHORUS		invalue	"CHORUS_Rate"
674		k2CHORUS		invalue	"CHORUS_Depth"
675		k3CHORUS		invalue	"CHORUS_Width"
676
677					outvalue	"CHORUSLED", 1					;THIS TURNS ON THE LED FOR THE EFFECT
678	endif
679	;-----------------------------------------------------------------------------------------------------------------------------------
680
681	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
682	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
683		outvalue	"CHORUSLED", 0								;SWITCH OFF THE LED
684		turnoff											;TURN THIS INSTRUMENT OFF
685	endif												;END OF THIS CONDITIONAL BRANCH
686
687	ilfoshape		ftgentmp	0, 0, 131072, 19, 1, 0.5, 0,  0.5		;POSITIVE DOMAIN INLY SINE WAVE
688	kporttime		linseg	0,0.001,0.02						;RAMPING UP PORTAMENTO VARIABLE
689	kChoDepth		portk	k2CHORUS*0.001, kporttime			;SMOOTH VARIABLE CHANGES WITH PORTK
690	aChoDepth		interp	kChoDepth							;INTERPOLATE TO CREATE A-RATE VERSION OF K-RATE VARIABLE
691	amodL 		osciliktp	k1CHORUS, ilfoshape, 0				;LEFT CHANNEL LFO
692	amodR 		osciliktp k1CHORUS, ilfoshape, k3CHORUS			;THE PHASE OF THE RIGHT CHANNEL LFO IS ADJUSTABLE
693	amodL		=		(amodL*aChoDepth)+.01				;RESCALE AND OFFSET LFO (LEFT CHANNEL)
694	amodR		=		(amodR*aChoDepth)+.01				;RESCALE AND OFFSET LFO (RIGHT CHANNEL)
695	aChoL		vdelay	gaSigL, amodL*1000, 1.2*1000			;CREATE VARYING DELAYED / CHORUSED SIGNAL (LEFT CHANNEL)
696	aChoR		vdelay	gaSigR, amodR*1000, 1.2*1000			;CREATE VARYING DELAYED / CHORUSED SIGNAL (RIGHT CHANNEL)
697	gaSigL		sum 		aChoL*0.6, gaSigL*0.6                 	;MIX DRY AND WET SIGNAL (LEFT CHANNEL)
698	gaSigR		sum 		aChoR*0.6, gaSigR*0.6				;MIX DRY AND WET SIGNAL (RIGHT CHANNEL)
699endin
700
701instr	24	;FLANGER
702	;GUI-----------------------------------------------------------------------------------------------------------------------------------
703	;Use FLANGERLED widget controller for effect ON/OFF light
704	;Use FLANGEROnOff widget button to Start/Stop effect (event i 1 0 0.01 14)
705
706	iExp1	ftgentmp	0, 0, 129, -25, 0, 0.001, 128, 7.0			;TABLE FOR EXP SLIDER
707
708	kUpdate	metro	$UPDATE
709	if (kUpdate == 1)	then
710		k1FLANGER		invalue	"FLANGER_Rate"
711		k1FLANGER		tablei	k1FLANGER, iExp1, 1
712		k2FLANGER		invalue	"FLANGER_Depth"
713		k3FLANGER		invalue	"FLANGER_Delay"
714		k4FLANGER		invalue	"FLANGER_FBack"
715
716					outvalue	"FLANGERLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
717	endif
718	;-----------------------------------------------------------------------------------------------------------------------------------
719
720	kStatus	table	p1-10, giOnOffStatus            			;READ EFFECT ON/OFF STATUS FROM TABLE
721	if kStatus=0 then                            	   			;IF THIS EFFECT HAS BEEN TURNED OFF
722		outvalue	"FLANGERLED", 0	        		  			;SWITCH OFF THE LED
723		turnoff                                		 			;TURN THIS INSTRUMENT OFF
724	endif                                 	          			;END OF THIS CONDITIONAL BRANCH
725
726	ilfoshape		ftgentmp	0, 0, 131072, 19, 0.5, 1, 180, 1		;U-SHAPE PARABOLA FOR LFO
727	kporttime		linseg	0, 0.001, 0.1 						;USE OF AN ENVELOPE VALUE THAT QUICKLY RAMPS UP FROM ZERON TO THE REQUIRED VALUE PREVENTS VARIABLES GLIDING TO THEIR REQUIRED VALUES EACH TIME THE INSTRUMENT IS STARTED
728	kdlt			portk	k3FLANGER*0.001, kporttime 			;PORTAMENTO IS APPLIED TO A VARIABLE. A NEW VARIABLE 'kdlt' IS CREATED.
729	adlt			interp	kdlt								;A NEW A-RATE VARIABLE 'adlt' IS CREATED BY INTERPOLATING THE K-RATE VARIABLE 'kdlt'
730	kdep			portk	k2FLANGER*0.001, kporttime 			;PORTAMENTO IS APPLIED TO A VARIABLE. A NEW VARIABLE 'kdlt' IS CREATED.
731	amod			oscili	kdep, k1FLANGER, ilfoshape			;OSCILLATOR THAT MAKES USE OF THE POSITIVE DOMAIN ONLY U-SHAPE PARABOLA WITH FUNCTION TABLE NUMBER gilfoshape
732	adlt			sum		adlt, amod						;STATIC DELAY TIME AND MODULATING DELAY TIME ARE SUMMED
733	adelsigL		flanger	gaSigL, adlt, k4FLANGER , 1.2			;FLANGER SIGNAL CREATED (LEFT CHANNEL)
734	adelsigR		flanger	gaSigR, adlt, k4FLANGER , 1.2			;FLANGER SIGNAL CREATED (RIGHT CHANNEL)
735	gaSigL		sum		gaSigL*0.5, adelsigL*0.5				;CREATE DRY/WET MIX (LEFT CHANNEL)
736	gaSigR		sum		gaSigR*0.5, adelsigR*0.5				;CREATE DRY/WET MIX (RIGHT CHANNEL)
737endin
738
739instr	25	;DELAY
740	;GUI-----------------------------------------------------------------------------------------------------------------------------------
741	;Use DELAYLED widget controller for effect ON/OFF light
742	;Use DELAYOnOff widget button to Start/Stop effect (event i 1 0 0.01 15)
743
744	iExp1	ftgentmp	0, 0, 129, -25, 0, 0.01, 128, 5.0			;TABLE FOR EXP SLIDER
745
746	kUpdate	metro	$UPDATE
747	if (kUpdate == 1)	then
748		k1DELAY		invalue	"DELAY_Mix"
749		k2DELAY		invalue	"DELAY_Time"
750		k2DELAY		tablei	k2DELAY, iExp1, 1
751		k3DELAY		invalue	"DELAY_FBack"
752		k4DELAY		invalue	"DELAY_HFLoss"
753
754					outvalue	"DELAYLED", 1					;THIS TURNS ON THE LED FOR THE EFFECT
755	endif
756	;-----------------------------------------------------------------------------------------------------------------------------------
757
758	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
759	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
760		outvalue	"DELAYLED", 0								;SWITCH OFF THE LED
761		turnoff											;TURN THIS INSTRUMENT OFF
762	endif												;END OF THIS CONDITIONAL BRANCH
763
764	kWet		table	k1DELAY, giWet, 1						;RESCALE WET LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
765	kDry		table	k1DELAY, giDry, 1						;RESCALE DRY LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
766	kporttime	linseg	0,0.001,0.1							;RAMPING UP PORTAMENTO TIME
767	kTime	portk	k2DELAY, kporttime*3					;APPLY PORTAMENTO SMOOTHING TO DELAY TIME PARAMETER
768	kTone	portk	k4DELAY, kporttime						;APPLY PORTAMENTO SMOOTHING TO TONE PARAMETER
769	aTime	interp	kTime								;INTERPOLATE AND CREAT A-RATE VERSION OF DELAY TIME PARAMETER
770	aBuffer	delayr	5									;READ FROM (AND INITIALIZE) BUFFER (LEFT CHANNEL)
771	atapL	deltap3	aTime								;TAP DELAY BUFFER (LEFT CHANNEL)
772	atapL	tone		atapL, kTone							;LOW-PASS FILTER DELAY TAP WITHIN DELAY BUFFER (LEFT CHANNEL)
773			delayw	gaSigL+(atapL*k3DELAY)					;WRITE INPUT AUDIO AND FEEDBACK SIGNAL INTO DELAY BUFFER  (LEFT CHANNEL)
774	aBuffer	delayr	5									;READ FROM (AND INITIALIZE) BUFFER (RIGHT CHANNEL)
775	atapR	deltap3	aTime								;TAP DELAY BUFFER (LEFT CHANNEL)
776	atapR	tone		atapR, kTone							;LOW-PASS FILTER DELAY TAP WITHIN DELAY BUFFER (LEFT CHANNEL)
777			delayw	gaSigR+(atapR*k3DELAY)					;WRITE INPUT AUDIO AND FEEDBACK SIGNAL INTO DELAY BUFFER  (LEFT CHANNEL)
778	gaSigL	sum		gaSigL*kDry, atapL*kWet					;REDEFINE GLOBAL AUDIO SIGNAL FROM MIX OF DRY AND WET SIGNALS (LEFT CHANNEL)
779	gaSigR	sum		gaSigR*kDry, atapR*kWet					;REDEFINE GLOBAL AUDIO SIGNAL FROM MIX OF DRY AND WET SIGNALS (RIGHT CHANNEL)
780endin
781
782instr	26	;REVERB
783	;GUI-----------------------------------------------------------------------------------------------------------------------------------
784	;Use REVERBLED widget controller for effect ON/OFF light
785	;Use REVERBOnOff widget button to Start/Stop effect (event i 1 0 0.01 16)
786
787	iExp1	ftgentmp	0, 0, 129, -25, 0, 20.0, 128, 20000.0		;TABLE FOR EXP SLIDER
788
789	kUpdate	metro	$UPDATE
790	if (kUpdate == 1)	then
791		k1REVERB		invalue	"REVERB_Mix"
792		k2REVERB		invalue	"REVERB_Size"
793		k3REVERB		invalue	"REVERB_Tone"
794		k3REVERB		tablei	k3REVERB, iExp1, 1
795
796					outvalue	"REVERBLED", 1					;THIS TURNS ON THE LED FOR THE EFFECT
797	endif
798	;-----------------------------------------------------------------------------------------------------------------------------------
799
800	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
801	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
802		outvalue	"REVERBLED", 0								;SWITCH OFF THE LED
803		turnoff										     ;TURN THIS INSTRUMENT OFF
804	endif												;END OF THIS CONDITIONAL BRANCH
805
806	kWet		table	k1REVERB, giWet, 1						;RESCALE WET LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
807	kDry		table	k1REVERB, giDry, 1						;RESCALE DRY LEVEL CONTROL ACCORDING TO FUNCTION TABLE giWet
808
809	aRvbL, aRvbR	reverbsc	gaSigL, gaSigR, k2REVERB, k3REVERB		;CREATE STEREO REVERB SIGNAL
810	gaSigL		sum		gaSigL*kDry, aRvbL*kWet			  	;REDEFINE GLOBAL AUDIO SIGNAL FROM MIX OF DRY AND WET SIGNALS (LEFT CHANNEL)
811	gaSigR		sum		gaSigR*kDry, aRvbR*kWet			    	;REDEFINE GLOBAL AUDIO SIGNAL FROM MIX OF DRY AND WET SIGNALS (RIGHT CHANNEL)
812endin
813
814instr	27	;EQUALIZER
815	;GUI-----------------------------------------------------------------------------------------------------------------------------------
816	;Use EQUALIZERLED widget controller for effect ON/OFF light
817	;Use EQUALIZEROnOff widget button to Start/Stop effect (event i 1 0 0.01 17)
818
819	kUpdate	metro	$UPDATE
820	if (kUpdate == 1)	then
821		k1EQUALIZER	invalue	"EQUALIZER_100"
822		k2EQUALIZER	invalue	"EQUALIZER_200"
823		k3EQUALIZER	invalue	"EQUALIZER_400"
824		k4EQUALIZER	invalue	"EQUALIZER_800"
825		k5EQUALIZER	invalue	"EQUALIZER_1k6"
826		k6EQUALIZER	invalue	"EQUALIZER_3k2"
827		k7EQUALIZER	invalue	"EQUALIZER_6k4"
828		k8EQUALIZER	invalue	"EQUALIZER_Gain"
829
830					outvalue	"EQUALIZERLED", 1				;THIS TURNS ON THE LED FOR THE EFFECT
831	endif
832	;-----------------------------------------------------------------------------------------------------------------------------------
833
834	kStatus	table	p1-10, giOnOffStatus					;READ EFFECT ON/OFF STATUS FROM TABLE
835	if kStatus=0 then										;IF THIS EFFECT HAS BEEN TURNED OFF
836		outvalue	"EQUALIZERLED", 0							;SWITCH OFF THE LED
837		turnoff											;TURN THIS INSTRUMENT OFF
838	endif												;END OF THIS CONDITIONAL BRANCH
839
840	iQ			init		1								;Q OF THE FILTERS
841	iEQcurve		ftgentmp	0,0,4096,-16,1/64,4096,7.9,64			;AMPLITUDE GAIN CURVE
842	iGainCurve	ftgentmp	0,0,4096,-16,0.5,4096,3,4			;GLOBAL GAIN CURVE
843
844	k1		table	k1EQUALIZER, iEQcurve, 1					;RESCALE INPUT 1 USING THE CURVE DEFINED ABOVE
845	k2		table	k2EQUALIZER, iEQcurve, 1					;RESCALE INPUT 2 USING THE CURVE DEFINED ABOVE
846	k3		table	k3EQUALIZER, iEQcurve, 1					;RESCALE INPUT 3 USING THE CURVE DEFINED ABOVE
847	k4		table	k4EQUALIZER, iEQcurve, 1					;RESCALE INPUT 4 USING THE CURVE DEFINED ABOVE
848	k5		table	k5EQUALIZER, iEQcurve, 1					;RESCALE INPUT 5 USING THE CURVE DEFINED ABOVE
849	k6		table	k6EQUALIZER, iEQcurve, 1					;RESCALE INPUT 6 USING THE CURVE DEFINED ABOVE
850	k7		table	k7EQUALIZER, iEQcurve, 1					;RESCALE INPUT 7 USING THE CURVE DEFINED ABOVE
851	k8		table	k8EQUALIZER, iGainCurve, 1				;RESCALE INPUT 7 USING THE CURVE DEFINED ABOVE
852
853	aInL		=		gaSigL*0.15*k8							;INPUT SIGNAL (LEFT CHANNEL)
854	aInR		=		gaSigR*0.15*k8							;INPUT SIGNAL (RIGHT CHANNEL)
855	a1L		pareq 	aInL,  100,  k1, iQ , 1					;LOW SHELVING FILTER (LEFT CHANNEL)
856	a2L		pareq 	aInL,  200,  k2, iQ , 0					;PEAKING FILTER (LEFT CHANNEL)
857	a3L		pareq 	aInL,  400,  k3, iQ , 0					;PEAKING FILTER (LEFT CHANNEL)
858	a4L		pareq 	aInL,  800,  k4, iQ , 0					;PEAKING FILTER (LEFT CHANNEL)
859	a5L		pareq 	aInL, 1600,  k5, iQ , 0					;PEAKING FILTER (LEFT CHANNEL)
860	a6L		pareq 	aInL, 3200,  k6, iQ , 0					;PEAKING FILTER (LEFT CHANNEL)
861	a7L		pareq 	aInL, 6400,  k7, iQ , 2					;HIGH SHELVING FILTER (LEFT CHANNEL)
862	a1R		pareq 	aInR,  100,  k1, iQ , 1					;LOW SHELVING FILTER (RIGHT CHANNEL)
863	a2R		pareq 	aInR,  200,  k2, iQ , 0					;PEAKING FILTER (RIGHT CHANNEL)
864	a3R		pareq 	aInR,  400,  k3, iQ , 0					;PEAKING FILTER (RIGHT CHANNEL)
865	a4R		pareq 	aInR,  800,  k4, iQ , 0					;PEAKING FILTER (RIGHT CHANNEL)
866	a5R		pareq 	aInR, 1600,  k5, iQ , 0					;PEAKING FILTER (RIGHT CHANNEL)
867	a6R		pareq 	aInR, 3200,  k6, iQ , 0					;PEAKING FILTER (RIGHT CHANNEL)
868	a7R		pareq 	aInR, 6400,  k7, iQ , 2					;HIGH SHELVING FILTER (RIGHT CHANNEL)
869
870	gaSigL	sum		a1L, a2L, a3L, a4L, a5L, a6L, a7L			;SUM THE FILTER OUTPUTS (LEFT CHANNEL)
871	gaSigR	sum		a1R, a2R, a3R, a4R, a5R, a6R, a7R			;SUM THE FILTER OUTPUTS (RIGHT CHANNEL)
872endin
873
874instr	99	;OUTPUT (ALWAYS ON)
875			outs		gaSigL, gaSigR							;SEND AUDIO FROM THE FINAL ACTIVE EFFECT TO THE OUTPUTS
876endin
877</CsInstruments>
878<CsScore>
879i 2  0 3600	;INPUT
880i 99 0 3600	;OUTPUT
881</CsScore>
882</CsoundSynthesizer>
883
884<bsbPanel>
885 <label>Widgets</label>
886 <objectName/>
887 <x>1</x>
888 <y>28</y>
889 <width>1364</width>
890 <height>734</height>
891 <visible>true</visible>
892 <uuid/>
893 <bgcolor mode="background">
894  <r>179</r>
895  <g>179</g>
896  <b>179</b>
897 </bgcolor>
898 <bsbObject version="2" type="BSBLabel">
899  <objectName/>
900  <x>2</x>
901  <y>53</y>
902  <width>212</width>
903  <height>330</height>
904  <uuid>{049f4dd4-ff71-4d6d-9157-43c84efad8a4}</uuid>
905  <visible>true</visible>
906  <midichan>0</midichan>
907  <midicc>0</midicc>
908  <label/>
909  <alignment>center</alignment>
910  <font>Liberation Sans</font>
911  <fontsize>18</fontsize>
912  <precision>3</precision>
913  <color>
914   <r>0</r>
915   <g>0</g>
916   <b>0</b>
917  </color>
918  <bgcolor mode="background">
919   <r>255</r>
920   <g>255</g>
921   <b>255</b>
922  </bgcolor>
923  <bordermode>border</bordermode>
924  <borderradius>20</borderradius>
925  <borderwidth>3</borderwidth>
926 </bsbObject>
927 <bsbObject version="2" type="BSBKnob">
928  <objectName>Volume</objectName>
929  <x>68</x>
930  <y>91</y>
931  <width>80</width>
932  <height>80</height>
933  <uuid>{a8708ba6-9862-4396-a241-48db96d3d59f}</uuid>
934  <visible>true</visible>
935  <midichan>0</midichan>
936  <midicc>0</midicc>
937  <minimum>0.00000000</minimum>
938  <maximum>1.00000000</maximum>
939  <value>0.00000000</value>
940  <mode>lin</mode>
941  <mouseControl act="jump">continuous</mouseControl>
942  <resolution>0.01000000</resolution>
943  <randomizable group="0">false</randomizable>
944 </bsbObject>
945 <bsbObject version="2" type="BSBLabel">
946  <objectName/>
947  <x>31</x>
948  <y>202</y>
949  <width>146</width>
950  <height>44</height>
951  <uuid>{2033e3b0-be04-42bf-8539-2ed31b3edd62}</uuid>
952  <visible>true</visible>
953  <midichan>0</midichan>
954  <midicc>0</midicc>
955  <label>VOLUME</label>
956  <alignment>center</alignment>
957  <font>Liberation Sans</font>
958  <fontsize>30</fontsize>
959  <precision>3</precision>
960  <color>
961   <r>0</r>
962   <g>0</g>
963   <b>0</b>
964  </color>
965  <bgcolor mode="nobackground">
966   <r>255</r>
967   <g>255</g>
968   <b>255</b>
969  </bgcolor>
970  <bordermode>noborder</bordermode>
971  <borderradius>1</borderradius>
972  <borderwidth>1</borderwidth>
973 </bsbObject>
974 <bsbObject version="2" type="BSBLabel">
975  <objectName/>
976  <x>68</x>
977  <y>176</y>
978  <width>80</width>
979  <height>25</height>
980  <uuid>{a520cddc-6eba-4302-922d-f612b3c48982}</uuid>
981  <visible>true</visible>
982  <midichan>0</midichan>
983  <midicc>0</midicc>
984  <label>Volume</label>
985  <alignment>center</alignment>
986  <font>Liberation Sans</font>
987  <fontsize>10</fontsize>
988  <precision>3</precision>
989  <color>
990   <r>0</r>
991   <g>0</g>
992   <b>0</b>
993  </color>
994  <bgcolor mode="nobackground">
995   <r>255</r>
996   <g>255</g>
997   <b>255</b>
998  </bgcolor>
999  <bordermode>noborder</bordermode>
1000  <borderradius>1</borderradius>
1001  <borderwidth>1</borderwidth>
1002 </bsbObject>
1003 <bsbObject version="2" type="BSBButton">
1004  <objectName/>
1005  <x>18</x>
1006  <y>255</y>
1007  <width>180</width>
1008  <height>110</height>
1009  <uuid>{3f71d494-4ce6-447a-b28f-1c4e9761b31d}</uuid>
1010  <visible>true</visible>
1011  <midichan>0</midichan>
1012  <midicc>0</midicc>
1013  <type>event</type>
1014  <pressedValue>1.00000000</pressedValue>
1015  <stringvalue/>
1016  <text/>
1017  <image>/</image>
1018  <eventLine>i 1 0 0.01 0</eventLine>
1019  <latch>false</latch>
1020  <latched>false</latched>
1021 </bsbObject>
1022 <bsbObject version="2" type="BSBController">
1023  <objectName/>
1024  <x>102</x>
1025  <y>61</y>
1026  <width>15</width>
1027  <height>15</height>
1028  <uuid>{5d29a755-55c0-43a3-b4a2-6a7fe0a280f6}</uuid>
1029  <visible>true</visible>
1030  <midichan>0</midichan>
1031  <midicc>0</midicc>
1032  <objectName2>VOLUMELED</objectName2>
1033  <xMin>0.00000000</xMin>
1034  <xMax>1.00000000</xMax>
1035  <yMin>0.00000000</yMin>
1036  <yMax>1.00000000</yMax>
1037  <xValue>0.00000000</xValue>
1038  <yValue>0.00000000</yValue>
1039  <type>fill</type>
1040  <pointsize>1</pointsize>
1041  <fadeSpeed>0.00000000</fadeSpeed>
1042  <mouseControl act="press">jump</mouseControl>
1043  <color>
1044   <r>255</r>
1045   <g>0</g>
1046   <b>0</b>
1047  </color>
1048  <randomizable mode="both" group="0">false</randomizable>
1049  <bgcolor>
1050   <r>0</r>
1051   <g>0</g>
1052   <b>0</b>
1053  </bgcolor>
1054 </bsbObject>
1055 <bsbObject version="2" type="BSBLabel">
1056  <objectName/>
1057  <x>214</x>
1058  <y>53</y>
1059  <width>212</width>
1060  <height>330</height>
1061  <uuid>{2c70a08a-875a-4696-bad2-5dda563585c8}</uuid>
1062  <visible>true</visible>
1063  <midichan>0</midichan>
1064  <midicc>0</midicc>
1065  <label/>
1066  <alignment>center</alignment>
1067  <font>Liberation Sans</font>
1068  <fontsize>18</fontsize>
1069  <precision>3</precision>
1070  <color>
1071   <r>0</r>
1072   <g>0</g>
1073   <b>0</b>
1074  </color>
1075  <bgcolor mode="background">
1076   <r>0</r>
1077   <g>117</g>
1078   <b>0</b>
1079  </bgcolor>
1080  <bordermode>border</bordermode>
1081  <borderradius>20</borderradius>
1082  <borderwidth>3</borderwidth>
1083 </bsbObject>
1084 <bsbObject version="2" type="BSBKnob">
1085  <objectName>File</objectName>
1086  <x>241</x>
1087  <y>106</y>
1088  <width>70</width>
1089  <height>70</height>
1090  <uuid>{3c7be073-7583-4647-828e-f21d50c8c6ca}</uuid>
1091  <visible>true</visible>
1092  <midichan>0</midichan>
1093  <midicc>0</midicc>
1094  <minimum>0.00000000</minimum>
1095  <maximum>1.00000000</maximum>
1096  <value>0.38000000</value>
1097  <mode>lin</mode>
1098  <mouseControl act="jump">continuous</mouseControl>
1099  <resolution>0.01000000</resolution>
1100  <randomizable group="0">false</randomizable>
1101 </bsbObject>
1102 <bsbObject version="2" type="BSBLabel">
1103  <objectName/>
1104  <x>216</x>
1105  <y>204</y>
1106  <width>210</width>
1107  <height>44</height>
1108  <uuid>{de8b26ac-0e00-427d-bad6-b7aca47df5a5}</uuid>
1109  <visible>true</visible>
1110  <midichan>0</midichan>
1111  <midicc>0</midicc>
1112  <label>FILE - PLAY</label>
1113  <alignment>center</alignment>
1114  <font>Liberation Sans</font>
1115  <fontsize>26</fontsize>
1116  <precision>3</precision>
1117  <color>
1118   <r>0</r>
1119   <g>0</g>
1120   <b>0</b>
1121  </color>
1122  <bgcolor mode="nobackground">
1123   <r>255</r>
1124   <g>255</g>
1125   <b>255</b>
1126  </bgcolor>
1127  <bordermode>noborder</bordermode>
1128  <borderradius>1</borderradius>
1129  <borderwidth>1</borderwidth>
1130 </bsbObject>
1131 <bsbObject version="2" type="BSBLabel">
1132  <objectName/>
1133  <x>241</x>
1134  <y>176</y>
1135  <width>70</width>
1136  <height>25</height>
1137  <uuid>{3fd93693-2857-4711-8eae-d704e574f4fe}</uuid>
1138  <visible>true</visible>
1139  <midichan>0</midichan>
1140  <midicc>0</midicc>
1141  <label>File</label>
1142  <alignment>center</alignment>
1143  <font>Liberation Sans</font>
1144  <fontsize>10</fontsize>
1145  <precision>3</precision>
1146  <color>
1147   <r>0</r>
1148   <g>0</g>
1149   <b>0</b>
1150  </color>
1151  <bgcolor mode="nobackground">
1152   <r>255</r>
1153   <g>255</g>
1154   <b>255</b>
1155  </bgcolor>
1156  <bordermode>noborder</bordermode>
1157  <borderradius>1</borderradius>
1158  <borderwidth>1</borderwidth>
1159 </bsbObject>
1160 <bsbObject version="2" type="BSBButton">
1161  <objectName/>
1162  <x>230</x>
1163  <y>255</y>
1164  <width>180</width>
1165  <height>110</height>
1166  <uuid>{e9dbd344-b1cd-4be0-ab1b-a7406adfa9f6}</uuid>
1167  <visible>true</visible>
1168  <midichan>0</midichan>
1169  <midicc>0</midicc>
1170  <type>event</type>
1171  <pressedValue>1.00000000</pressedValue>
1172  <stringvalue/>
1173  <text/>
1174  <image>/</image>
1175  <eventLine>i 1 0 0.01 1</eventLine>
1176  <latch>false</latch>
1177  <latched>false</latched>
1178 </bsbObject>
1179 <bsbObject version="2" type="BSBController">
1180  <objectName/>
1181  <x>312</x>
1182  <y>61</y>
1183  <width>15</width>
1184  <height>15</height>
1185  <uuid>{c1c3c39d-8965-44cb-bf21-761647d0aea9}</uuid>
1186  <visible>true</visible>
1187  <midichan>0</midichan>
1188  <midicc>0</midicc>
1189  <objectName2>FILEPLAYLED</objectName2>
1190  <xMin>0.00000000</xMin>
1191  <xMax>1.00000000</xMax>
1192  <yMin>0.00000000</yMin>
1193  <yMax>1.00000000</yMax>
1194  <xValue>0.00000000</xValue>
1195  <yValue>0.00000000</yValue>
1196  <type>fill</type>
1197  <pointsize>1</pointsize>
1198  <fadeSpeed>0.00000000</fadeSpeed>
1199  <mouseControl act="press">jump</mouseControl>
1200  <color>
1201   <r>255</r>
1202   <g>0</g>
1203   <b>0</b>
1204  </color>
1205  <randomizable mode="both" group="0">false</randomizable>
1206  <bgcolor>
1207   <r>0</r>
1208   <g>0</g>
1209   <b>0</b>
1210  </bgcolor>
1211 </bsbObject>
1212 <bsbObject version="2" type="BSBKnob">
1213  <objectName>Live</objectName>
1214  <x>323</x>
1215  <y>106</y>
1216  <width>70</width>
1217  <height>70</height>
1218  <uuid>{090cca3a-97e7-4164-b6c5-9fd85278ff30}</uuid>
1219  <visible>true</visible>
1220  <midichan>0</midichan>
1221  <midicc>0</midicc>
1222  <minimum>0.00000000</minimum>
1223  <maximum>1.00000000</maximum>
1224  <value>0.18000000</value>
1225  <mode>lin</mode>
1226  <mouseControl act="jump">continuous</mouseControl>
1227  <resolution>0.01000000</resolution>
1228  <randomizable group="0">false</randomizable>
1229 </bsbObject>
1230 <bsbObject version="2" type="BSBLabel">
1231  <objectName/>
1232  <x>323</x>
1233  <y>176</y>
1234  <width>70</width>
1235  <height>25</height>
1236  <uuid>{5ccda979-b7d6-4da1-be09-5a751ef65a21}</uuid>
1237  <visible>true</visible>
1238  <midichan>0</midichan>
1239  <midicc>0</midicc>
1240  <label>Live</label>
1241  <alignment>center</alignment>
1242  <font>Liberation Sans</font>
1243  <fontsize>10</fontsize>
1244  <precision>3</precision>
1245  <color>
1246   <r>0</r>
1247   <g>0</g>
1248   <b>0</b>
1249  </color>
1250  <bgcolor mode="nobackground">
1251   <r>255</r>
1252   <g>255</g>
1253   <b>255</b>
1254  </bgcolor>
1255  <bordermode>noborder</bordermode>
1256  <borderradius>1</borderradius>
1257  <borderwidth>1</borderwidth>
1258 </bsbObject>
1259 <bsbObject version="2" type="BSBLabel">
1260  <objectName/>
1261  <x>426</x>
1262  <y>53</y>
1263  <width>212</width>
1264  <height>330</height>
1265  <uuid>{36782777-d577-416b-83f0-0577026e838b}</uuid>
1266  <visible>true</visible>
1267  <midichan>0</midichan>
1268  <midicc>0</midicc>
1269  <label/>
1270  <alignment>center</alignment>
1271  <font>Liberation Sans</font>
1272  <fontsize>18</fontsize>
1273  <precision>3</precision>
1274  <color>
1275   <r>0</r>
1276   <g>0</g>
1277   <b>0</b>
1278  </color>
1279  <bgcolor mode="background">
1280   <r>68</r>
1281   <g>136</g>
1282   <b>204</b>
1283  </bgcolor>
1284  <bordermode>border</bordermode>
1285  <borderradius>20</borderradius>
1286  <borderwidth>3</borderwidth>
1287 </bsbObject>
1288 <bsbObject version="2" type="BSBLabel">
1289  <objectName/>
1290  <x>428</x>
1291  <y>204</y>
1292  <width>210</width>
1293  <height>44</height>
1294  <uuid>{2cc80ee2-97a5-4a69-b9c7-6d5e23e2d27c}</uuid>
1295  <visible>true</visible>
1296  <midichan>0</midichan>
1297  <midicc>0</midicc>
1298  <label>COMPRESSOR</label>
1299  <alignment>center</alignment>
1300  <font>Liberation Sans</font>
1301  <fontsize>26</fontsize>
1302  <precision>3</precision>
1303  <color>
1304   <r>0</r>
1305   <g>0</g>
1306   <b>0</b>
1307  </color>
1308  <bgcolor mode="nobackground">
1309   <r>255</r>
1310   <g>255</g>
1311   <b>255</b>
1312  </bgcolor>
1313  <bordermode>noborder</bordermode>
1314  <borderradius>1</borderradius>
1315  <borderwidth>1</borderwidth>
1316 </bsbObject>
1317 <bsbObject version="2" type="BSBButton">
1318  <objectName/>
1319  <x>442</x>
1320  <y>255</y>
1321  <width>180</width>
1322  <height>110</height>
1323  <uuid>{e6569c64-f79a-4af0-8061-5b915eee5abb}</uuid>
1324  <visible>true</visible>
1325  <midichan>0</midichan>
1326  <midicc>0</midicc>
1327  <type>event</type>
1328  <pressedValue>1.00000000</pressedValue>
1329  <stringvalue/>
1330  <text/>
1331  <image>/</image>
1332  <eventLine>i 1 0 0.01 2</eventLine>
1333  <latch>false</latch>
1334  <latched>false</latched>
1335 </bsbObject>
1336 <bsbObject version="2" type="BSBController">
1337  <objectName/>
1338  <x>524</x>
1339  <y>61</y>
1340  <width>15</width>
1341  <height>15</height>
1342  <uuid>{8d2caf0e-5b02-4d1a-9ac2-6ffaf1661d77}</uuid>
1343  <visible>true</visible>
1344  <midichan>0</midichan>
1345  <midicc>0</midicc>
1346  <objectName2>COMPRESSORLED</objectName2>
1347  <xMin>0.00000000</xMin>
1348  <xMax>1.00000000</xMax>
1349  <yMin>0.00000000</yMin>
1350  <yMax>1.00000000</yMax>
1351  <xValue>0.00000000</xValue>
1352  <yValue>0.00000000</yValue>
1353  <type>fill</type>
1354  <pointsize>1</pointsize>
1355  <fadeSpeed>0.00000000</fadeSpeed>
1356  <mouseControl act="press">jump</mouseControl>
1357  <color>
1358   <r>255</r>
1359   <g>0</g>
1360   <b>0</b>
1361  </color>
1362  <randomizable mode="both" group="0">false</randomizable>
1363  <bgcolor>
1364   <r>0</r>
1365   <g>0</g>
1366   <b>0</b>
1367  </bgcolor>
1368 </bsbObject>
1369 <bsbObject version="2" type="BSBKnob">
1370  <objectName>COMPRESSOR_Thresh</objectName>
1371  <x>431</x>
1372  <y>115</y>
1373  <width>50</width>
1374  <height>50</height>
1375  <uuid>{4d78354b-1174-4ca9-a35c-a8a3bd5509ba}</uuid>
1376  <visible>true</visible>
1377  <midichan>0</midichan>
1378  <midicc>0</midicc>
1379  <minimum>0.00000000</minimum>
1380  <maximum>0.05000000</maximum>
1381  <value>0.02000000</value>
1382  <mode>lin</mode>
1383  <mouseControl act="jump">continuous</mouseControl>
1384  <resolution>0.01000000</resolution>
1385  <randomizable group="0">false</randomizable>
1386 </bsbObject>
1387 <bsbObject version="2" type="BSBKnob">
1388  <objectName>COMPRESSOR_Ratio</objectName>
1389  <x>482</x>
1390  <y>115</y>
1391  <width>50</width>
1392  <height>50</height>
1393  <uuid>{7b3fb5d5-1f3d-4ee7-b9ce-d78d23f0954d}</uuid>
1394  <visible>true</visible>
1395  <midichan>0</midichan>
1396  <midicc>0</midicc>
1397  <minimum>0.00000000</minimum>
1398  <maximum>1.00000000</maximum>
1399  <value>0.44000000</value>
1400  <mode>lin</mode>
1401  <mouseControl act="jump">continuous</mouseControl>
1402  <resolution>0.01000000</resolution>
1403  <randomizable group="0">false</randomizable>
1404 </bsbObject>
1405 <bsbObject version="2" type="BSBKnob">
1406  <objectName>COMPRESSOR_Att</objectName>
1407  <x>533</x>
1408  <y>115</y>
1409  <width>50</width>
1410  <height>50</height>
1411  <uuid>{2fff7c80-0daa-4ac0-8e06-00c832f02927}</uuid>
1412  <visible>true</visible>
1413  <midichan>0</midichan>
1414  <midicc>0</midicc>
1415  <minimum>0.01000000</minimum>
1416  <maximum>0.30000000</maximum>
1417  <value>0.18690000</value>
1418  <mode>lin</mode>
1419  <mouseControl act="jump">continuous</mouseControl>
1420  <resolution>0.01000000</resolution>
1421  <randomizable group="0">false</randomizable>
1422 </bsbObject>
1423 <bsbObject version="2" type="BSBKnob">
1424  <objectName>COMPRESSOR_PostGain</objectName>
1425  <x>584</x>
1426  <y>115</y>
1427  <width>50</width>
1428  <height>50</height>
1429  <uuid>{d91250a9-c441-4c0d-9011-ab907f7588ab}</uuid>
1430  <visible>true</visible>
1431  <midichan>0</midichan>
1432  <midicc>0</midicc>
1433  <minimum>0.00000000</minimum>
1434  <maximum>1.00000000</maximum>
1435  <value>0.12000000</value>
1436  <mode>lin</mode>
1437  <mouseControl act="jump">continuous</mouseControl>
1438  <resolution>0.01000000</resolution>
1439  <randomizable group="0">false</randomizable>
1440 </bsbObject>
1441 <bsbObject version="2" type="BSBLabel">
1442  <objectName/>
1443  <x>431</x>
1444  <y>164</y>
1445  <width>50</width>
1446  <height>25</height>
1447  <uuid>{bfcdf16c-2446-4a7d-abf3-fd4160a587bb}</uuid>
1448  <visible>true</visible>
1449  <midichan>0</midichan>
1450  <midicc>0</midicc>
1451  <label>Thresh</label>
1452  <alignment>center</alignment>
1453  <font>Liberation Sans</font>
1454  <fontsize>10</fontsize>
1455  <precision>3</precision>
1456  <color>
1457   <r>0</r>
1458   <g>0</g>
1459   <b>0</b>
1460  </color>
1461  <bgcolor mode="nobackground">
1462   <r>255</r>
1463   <g>255</g>
1464   <b>255</b>
1465  </bgcolor>
1466  <bordermode>noborder</bordermode>
1467  <borderradius>1</borderradius>
1468  <borderwidth>1</borderwidth>
1469 </bsbObject>
1470 <bsbObject version="2" type="BSBLabel">
1471  <objectName/>
1472  <x>482</x>
1473  <y>164</y>
1474  <width>50</width>
1475  <height>25</height>
1476  <uuid>{097325a6-18be-49ee-8daa-3852e9a6e033}</uuid>
1477  <visible>true</visible>
1478  <midichan>0</midichan>
1479  <midicc>0</midicc>
1480  <label>Ratio</label>
1481  <alignment>center</alignment>
1482  <font>Liberation Sans</font>
1483  <fontsize>10</fontsize>
1484  <precision>3</precision>
1485  <color>
1486   <r>0</r>
1487   <g>0</g>
1488   <b>0</b>
1489  </color>
1490  <bgcolor mode="nobackground">
1491   <r>255</r>
1492   <g>255</g>
1493   <b>255</b>
1494  </bgcolor>
1495  <bordermode>noborder</bordermode>
1496  <borderradius>1</borderradius>
1497  <borderwidth>1</borderwidth>
1498 </bsbObject>
1499 <bsbObject version="2" type="BSBLabel">
1500  <objectName/>
1501  <x>533</x>
1502  <y>164</y>
1503  <width>50</width>
1504  <height>25</height>
1505  <uuid>{376daff6-8270-4a23-a240-d653ef9a9f6d}</uuid>
1506  <visible>true</visible>
1507  <midichan>0</midichan>
1508  <midicc>0</midicc>
1509  <label>Att</label>
1510  <alignment>center</alignment>
1511  <font>Liberation Sans</font>
1512  <fontsize>10</fontsize>
1513  <precision>3</precision>
1514  <color>
1515   <r>0</r>
1516   <g>0</g>
1517   <b>0</b>
1518  </color>
1519  <bgcolor mode="nobackground">
1520   <r>255</r>
1521   <g>255</g>
1522   <b>255</b>
1523  </bgcolor>
1524  <bordermode>noborder</bordermode>
1525  <borderradius>1</borderradius>
1526  <borderwidth>1</borderwidth>
1527 </bsbObject>
1528 <bsbObject version="2" type="BSBLabel">
1529  <objectName/>
1530  <x>584</x>
1531  <y>164</y>
1532  <width>50</width>
1533  <height>50</height>
1534  <uuid>{a6f452b6-3fde-4703-97bb-1c7507a043bd}</uuid>
1535  <visible>true</visible>
1536  <midichan>0</midichan>
1537  <midicc>0</midicc>
1538  <label>Post
1539Gain</label>
1540  <alignment>center</alignment>
1541  <font>Liberation Sans</font>
1542  <fontsize>10</fontsize>
1543  <precision>3</precision>
1544  <color>
1545   <r>0</r>
1546   <g>0</g>
1547   <b>0</b>
1548  </color>
1549  <bgcolor mode="nobackground">
1550   <r>255</r>
1551   <g>255</g>
1552   <b>255</b>
1553  </bgcolor>
1554  <bordermode>noborder</bordermode>
1555  <borderradius>1</borderradius>
1556  <borderwidth>1</borderwidth>
1557 </bsbObject>
1558 <bsbObject version="2" type="BSBLabel">
1559  <objectName/>
1560  <x>638</x>
1561  <y>53</y>
1562  <width>212</width>
1563  <height>330</height>
1564  <uuid>{a231f9a8-4f0a-447b-a718-cc2c60223c59}</uuid>
1565  <visible>true</visible>
1566  <midichan>0</midichan>
1567  <midicc>0</midicc>
1568  <label/>
1569  <alignment>center</alignment>
1570  <font>Liberation Sans</font>
1571  <fontsize>18</fontsize>
1572  <precision>3</precision>
1573  <color>
1574   <r>0</r>
1575   <g>0</g>
1576   <b>0</b>
1577  </color>
1578  <bgcolor mode="background">
1579   <r>171</r>
1580   <g>156</g>
1581   <b>255</b>
1582  </bgcolor>
1583  <bordermode>border</bordermode>
1584  <borderradius>20</borderradius>
1585  <borderwidth>3</borderwidth>
1586 </bsbObject>
1587 <bsbObject version="2" type="BSBLabel">
1588  <objectName/>
1589  <x>640</x>
1590  <y>204</y>
1591  <width>210</width>
1592  <height>44</height>
1593  <uuid>{3db9bfd4-7172-495a-8b3a-6a8d31c9274e}</uuid>
1594  <visible>true</visible>
1595  <midichan>0</midichan>
1596  <midicc>0</midicc>
1597  <label>ENV FOLLOWER</label>
1598  <alignment>center</alignment>
1599  <font>Liberation Sans</font>
1600  <fontsize>26</fontsize>
1601  <precision>3</precision>
1602  <color>
1603   <r>0</r>
1604   <g>0</g>
1605   <b>0</b>
1606  </color>
1607  <bgcolor mode="nobackground">
1608   <r>255</r>
1609   <g>255</g>
1610   <b>255</b>
1611  </bgcolor>
1612  <bordermode>noborder</bordermode>
1613  <borderradius>1</borderradius>
1614  <borderwidth>1</borderwidth>
1615 </bsbObject>
1616 <bsbObject version="2" type="BSBButton">
1617  <objectName/>
1618  <x>654</x>
1619  <y>255</y>
1620  <width>180</width>
1621  <height>110</height>
1622  <uuid>{d53e0bf0-becf-44da-bf69-2943fc1415f6}</uuid>
1623  <visible>true</visible>
1624  <midichan>0</midichan>
1625  <midicc>0</midicc>
1626  <type>event</type>
1627  <pressedValue>1.00000000</pressedValue>
1628  <stringvalue/>
1629  <text/>
1630  <image>/</image>
1631  <eventLine>i 1 0 0.01 3</eventLine>
1632  <latch>false</latch>
1633  <latched>false</latched>
1634 </bsbObject>
1635 <bsbObject version="2" type="BSBController">
1636  <objectName/>
1637  <x>736</x>
1638  <y>61</y>
1639  <width>15</width>
1640  <height>15</height>
1641  <uuid>{96099d5b-12a6-42a6-aea5-33cc5525c7f5}</uuid>
1642  <visible>true</visible>
1643  <midichan>0</midichan>
1644  <midicc>0</midicc>
1645  <objectName2>ENVFOLLOWERLED</objectName2>
1646  <xMin>0.00000000</xMin>
1647  <xMax>1.00000000</xMax>
1648  <yMin>0.00000000</yMin>
1649  <yMax>1.00000000</yMax>
1650  <xValue>0.00000000</xValue>
1651  <yValue>0.00000000</yValue>
1652  <type>fill</type>
1653  <pointsize>1</pointsize>
1654  <fadeSpeed>0.00000000</fadeSpeed>
1655  <mouseControl act="press">jump</mouseControl>
1656  <color>
1657   <r>255</r>
1658   <g>0</g>
1659   <b>0</b>
1660  </color>
1661  <randomizable mode="both" group="0">false</randomizable>
1662  <bgcolor>
1663   <r>0</r>
1664   <g>0</g>
1665   <b>0</b>
1666  </bgcolor>
1667 </bsbObject>
1668 <bsbObject version="2" type="BSBKnob">
1669  <objectName>ENVFOLLOWER_Sens</objectName>
1670  <x>651</x>
1671  <y>113</y>
1672  <width>60</width>
1673  <height>60</height>
1674  <uuid>{b9bf3bec-4784-4b79-b770-6bd3c1e2a360}</uuid>
1675  <visible>true</visible>
1676  <midichan>0</midichan>
1677  <midicc>0</midicc>
1678  <minimum>0.00000000</minimum>
1679  <maximum>1.00000000</maximum>
1680  <value>0.79000000</value>
1681  <mode>lin</mode>
1682  <mouseControl act="jump">continuous</mouseControl>
1683  <resolution>0.01000000</resolution>
1684  <randomizable group="0">false</randomizable>
1685 </bsbObject>
1686 <bsbObject version="2" type="BSBLabel">
1687  <objectName/>
1688  <x>651</x>
1689  <y>175</y>
1690  <width>60</width>
1691  <height>25</height>
1692  <uuid>{6407d059-deac-4ad6-ae36-6f51ac7216c7}</uuid>
1693  <visible>true</visible>
1694  <midichan>0</midichan>
1695  <midicc>0</midicc>
1696  <label>Sens</label>
1697  <alignment>center</alignment>
1698  <font>Liberation Sans</font>
1699  <fontsize>10</fontsize>
1700  <precision>3</precision>
1701  <color>
1702   <r>0</r>
1703   <g>0</g>
1704   <b>0</b>
1705  </color>
1706  <bgcolor mode="nobackground">
1707   <r>255</r>
1708   <g>255</g>
1709   <b>255</b>
1710  </bgcolor>
1711  <bordermode>noborder</bordermode>
1712  <borderradius>1</borderradius>
1713  <borderwidth>1</borderwidth>
1714 </bsbObject>
1715 <bsbObject version="2" type="BSBKnob">
1716  <objectName>ENVFOLLOWER_Freq</objectName>
1717  <x>714</x>
1718  <y>113</y>
1719  <width>60</width>
1720  <height>60</height>
1721  <uuid>{62141e93-4e85-4682-8f3b-42c80b524692}</uuid>
1722  <visible>true</visible>
1723  <midichan>0</midichan>
1724  <midicc>0</midicc>
1725  <minimum>0.00000000</minimum>
1726  <maximum>1.00000000</maximum>
1727  <value>0.67000000</value>
1728  <mode>lin</mode>
1729  <mouseControl act="jump">continuous</mouseControl>
1730  <resolution>0.01000000</resolution>
1731  <randomizable group="0">false</randomizable>
1732 </bsbObject>
1733 <bsbObject version="2" type="BSBLabel">
1734  <objectName/>
1735  <x>714</x>
1736  <y>175</y>
1737  <width>60</width>
1738  <height>25</height>
1739  <uuid>{3132e6f6-7793-4a49-897d-320675ad0a37}</uuid>
1740  <visible>true</visible>
1741  <midichan>0</midichan>
1742  <midicc>0</midicc>
1743  <label>Freq</label>
1744  <alignment>center</alignment>
1745  <font>Liberation Sans</font>
1746  <fontsize>10</fontsize>
1747  <precision>3</precision>
1748  <color>
1749   <r>0</r>
1750   <g>0</g>
1751   <b>0</b>
1752  </color>
1753  <bgcolor mode="nobackground">
1754   <r>255</r>
1755   <g>255</g>
1756   <b>255</b>
1757  </bgcolor>
1758  <bordermode>noborder</bordermode>
1759  <borderradius>1</borderradius>
1760  <borderwidth>1</borderwidth>
1761 </bsbObject>
1762 <bsbObject version="2" type="BSBKnob">
1763  <objectName>ENVFOLLOWER_Res</objectName>
1764  <x>777</x>
1765  <y>113</y>
1766  <width>60</width>
1767  <height>60</height>
1768  <uuid>{2abde9a1-341c-4e0d-880b-99753ea32d26}</uuid>
1769  <visible>true</visible>
1770  <midichan>0</midichan>
1771  <midicc>0</midicc>
1772  <minimum>0.00000000</minimum>
1773  <maximum>0.95000000</maximum>
1774  <value>0.72200000</value>
1775  <mode>lin</mode>
1776  <mouseControl act="jump">continuous</mouseControl>
1777  <resolution>0.01000000</resolution>
1778  <randomizable group="0">false</randomizable>
1779 </bsbObject>
1780 <bsbObject version="2" type="BSBLabel">
1781  <objectName/>
1782  <x>777</x>
1783  <y>175</y>
1784  <width>60</width>
1785  <height>25</height>
1786  <uuid>{03e9f26e-7824-4581-bad9-b91c7c537ccc}</uuid>
1787  <visible>true</visible>
1788  <midichan>0</midichan>
1789  <midicc>0</midicc>
1790  <label>Res</label>
1791  <alignment>center</alignment>
1792  <font>Liberation Sans</font>
1793  <fontsize>10</fontsize>
1794  <precision>3</precision>
1795  <color>
1796   <r>0</r>
1797   <g>0</g>
1798   <b>0</b>
1799  </color>
1800  <bgcolor mode="nobackground">
1801   <r>255</r>
1802   <g>255</g>
1803   <b>255</b>
1804  </bgcolor>
1805  <bordermode>noborder</bordermode>
1806  <borderradius>1</borderradius>
1807  <borderwidth>1</borderwidth>
1808 </bsbObject>
1809 <bsbObject version="2" type="BSBLabel">
1810  <objectName/>
1811  <x>850</x>
1812  <y>53</y>
1813  <width>212</width>
1814  <height>330</height>
1815  <uuid>{547b2b4a-6c67-49e0-a840-14bf273601fd}</uuid>
1816  <visible>true</visible>
1817  <midichan>0</midichan>
1818  <midicc>0</midicc>
1819  <label/>
1820  <alignment>center</alignment>
1821  <font>Liberation Sans</font>
1822  <fontsize>18</fontsize>
1823  <precision>3</precision>
1824  <color>
1825   <r>0</r>
1826   <g>0</g>
1827   <b>0</b>
1828  </color>
1829  <bgcolor mode="background">
1830   <r>195</r>
1831   <g>0</g>
1832   <b>0</b>
1833  </bgcolor>
1834  <bordermode>border</bordermode>
1835  <borderradius>20</borderradius>
1836  <borderwidth>3</borderwidth>
1837 </bsbObject>
1838 <bsbObject version="2" type="BSBLabel">
1839  <objectName/>
1840  <x>852</x>
1841  <y>204</y>
1842  <width>210</width>
1843  <height>44</height>
1844  <uuid>{d106d31a-f0b3-4e64-9d42-19344d63ee97}</uuid>
1845  <visible>true</visible>
1846  <midichan>0</midichan>
1847  <midicc>0</midicc>
1848  <label>DISTORTION</label>
1849  <alignment>center</alignment>
1850  <font>Liberation Sans</font>
1851  <fontsize>26</fontsize>
1852  <precision>3</precision>
1853  <color>
1854   <r>0</r>
1855   <g>0</g>
1856   <b>0</b>
1857  </color>
1858  <bgcolor mode="nobackground">
1859   <r>255</r>
1860   <g>255</g>
1861   <b>255</b>
1862  </bgcolor>
1863  <bordermode>noborder</bordermode>
1864  <borderradius>1</borderradius>
1865  <borderwidth>1</borderwidth>
1866 </bsbObject>
1867 <bsbObject version="2" type="BSBButton">
1868  <objectName/>
1869  <x>865</x>
1870  <y>255</y>
1871  <width>180</width>
1872  <height>110</height>
1873  <uuid>{b506abe9-a93b-4c52-a1b9-923463fcbe4b}</uuid>
1874  <visible>true</visible>
1875  <midichan>0</midichan>
1876  <midicc>0</midicc>
1877  <type>event</type>
1878  <pressedValue>1.00000000</pressedValue>
1879  <stringvalue/>
1880  <text/>
1881  <image>/</image>
1882  <eventLine>i 1 0 0.01 4</eventLine>
1883  <latch>false</latch>
1884  <latched>false</latched>
1885 </bsbObject>
1886 <bsbObject version="2" type="BSBController">
1887  <objectName/>
1888  <x>948</x>
1889  <y>61</y>
1890  <width>15</width>
1891  <height>15</height>
1892  <uuid>{61de7a54-70c4-4394-a0b1-e3b23e2c47d1}</uuid>
1893  <visible>true</visible>
1894  <midichan>0</midichan>
1895  <midicc>0</midicc>
1896  <objectName2>DISTORTIONLED</objectName2>
1897  <xMin>0.00000000</xMin>
1898  <xMax>1.00000000</xMax>
1899  <yMin>0.00000000</yMin>
1900  <yMax>1.00000000</yMax>
1901  <xValue>0.00000000</xValue>
1902  <yValue>0.00000000</yValue>
1903  <type>fill</type>
1904  <pointsize>1</pointsize>
1905  <fadeSpeed>0.00000000</fadeSpeed>
1906  <mouseControl act="press">jump</mouseControl>
1907  <color>
1908   <r>255</r>
1909   <g>0</g>
1910   <b>0</b>
1911  </color>
1912  <randomizable mode="both" group="0">false</randomizable>
1913  <bgcolor>
1914   <r>0</r>
1915   <g>0</g>
1916   <b>0</b>
1917  </bgcolor>
1918 </bsbObject>
1919 <bsbObject version="2" type="BSBKnob">
1920  <objectName>DISTORTION_Level</objectName>
1921  <x>863</x>
1922  <y>113</y>
1923  <width>60</width>
1924  <height>60</height>
1925  <uuid>{94bd06ba-37d2-4008-8826-5a3d74136edd}</uuid>
1926  <visible>true</visible>
1927  <midichan>0</midichan>
1928  <midicc>0</midicc>
1929  <minimum>0.00000000</minimum>
1930  <maximum>0.80000000</maximum>
1931  <value>0.50400000</value>
1932  <mode>lin</mode>
1933  <mouseControl act="jump">continuous</mouseControl>
1934  <resolution>0.01000000</resolution>
1935  <randomizable group="0">false</randomizable>
1936 </bsbObject>
1937 <bsbObject version="2" type="BSBLabel">
1938  <objectName/>
1939  <x>863</x>
1940  <y>175</y>
1941  <width>60</width>
1942  <height>25</height>
1943  <uuid>{e6fc0d35-d0aa-495e-8525-3ffe59ccdd20}</uuid>
1944  <visible>true</visible>
1945  <midichan>0</midichan>
1946  <midicc>0</midicc>
1947  <label>Level</label>
1948  <alignment>center</alignment>
1949  <font>Liberation Sans</font>
1950  <fontsize>10</fontsize>
1951  <precision>3</precision>
1952  <color>
1953   <r>0</r>
1954   <g>0</g>
1955   <b>0</b>
1956  </color>
1957  <bgcolor mode="nobackground">
1958   <r>255</r>
1959   <g>255</g>
1960   <b>255</b>
1961  </bgcolor>
1962  <bordermode>noborder</bordermode>
1963  <borderradius>1</borderradius>
1964  <borderwidth>1</borderwidth>
1965 </bsbObject>
1966 <bsbObject version="2" type="BSBKnob">
1967  <objectName>DISTORTION_Drive</objectName>
1968  <x>926</x>
1969  <y>113</y>
1970  <width>60</width>
1971  <height>60</height>
1972  <uuid>{4de059a5-2f52-437c-84ab-d6bb028f83c8}</uuid>
1973  <visible>true</visible>
1974  <midichan>0</midichan>
1975  <midicc>0</midicc>
1976  <minimum>0.00000000</minimum>
1977  <maximum>1.00000000</maximum>
1978  <value>0.59000000</value>
1979  <mode>lin</mode>
1980  <mouseControl act="jump">continuous</mouseControl>
1981  <resolution>0.01000000</resolution>
1982  <randomizable group="0">false</randomizable>
1983 </bsbObject>
1984 <bsbObject version="2" type="BSBLabel">
1985  <objectName/>
1986  <x>926</x>
1987  <y>175</y>
1988  <width>60</width>
1989  <height>25</height>
1990  <uuid>{1ae9aba5-318f-4e27-b3bd-8f58456d2f7d}</uuid>
1991  <visible>true</visible>
1992  <midichan>0</midichan>
1993  <midicc>0</midicc>
1994  <label>Drive</label>
1995  <alignment>center</alignment>
1996  <font>Liberation Sans</font>
1997  <fontsize>10</fontsize>
1998  <precision>3</precision>
1999  <color>
2000   <r>0</r>
2001   <g>0</g>
2002   <b>0</b>
2003  </color>
2004  <bgcolor mode="nobackground">
2005   <r>255</r>
2006   <g>255</g>
2007   <b>255</b>
2008  </bgcolor>
2009  <bordermode>noborder</bordermode>
2010  <borderradius>1</borderradius>
2011  <borderwidth>1</borderwidth>
2012 </bsbObject>
2013 <bsbObject version="2" type="BSBKnob">
2014  <objectName>DISTORTION_Tone</objectName>
2015  <x>989</x>
2016  <y>113</y>
2017  <width>60</width>
2018  <height>60</height>
2019  <uuid>{7b22c693-bae5-4539-be61-94d2b59694e3}</uuid>
2020  <visible>true</visible>
2021  <midichan>0</midichan>
2022  <midicc>0</midicc>
2023  <minimum>0.00000000</minimum>
2024  <maximum>1.00000000</maximum>
2025  <value>0.77000000</value>
2026  <mode>lin</mode>
2027  <mouseControl act="jump">continuous</mouseControl>
2028  <resolution>0.01000000</resolution>
2029  <randomizable group="0">false</randomizable>
2030 </bsbObject>
2031 <bsbObject version="2" type="BSBLabel">
2032  <objectName/>
2033  <x>989</x>
2034  <y>175</y>
2035  <width>60</width>
2036  <height>25</height>
2037  <uuid>{78116d8b-ac99-4070-939b-49c4a924a99c}</uuid>
2038  <visible>true</visible>
2039  <midichan>0</midichan>
2040  <midicc>0</midicc>
2041  <label>Tone</label>
2042  <alignment>center</alignment>
2043  <font>Liberation Sans</font>
2044  <fontsize>10</fontsize>
2045  <precision>3</precision>
2046  <color>
2047   <r>0</r>
2048   <g>0</g>
2049   <b>0</b>
2050  </color>
2051  <bgcolor mode="nobackground">
2052   <r>255</r>
2053   <g>255</g>
2054   <b>255</b>
2055  </bgcolor>
2056  <bordermode>noborder</bordermode>
2057  <borderradius>1</borderradius>
2058  <borderwidth>1</borderwidth>
2059 </bsbObject>
2060 <bsbObject version="2" type="BSBLabel">
2061  <objectName/>
2062  <x>1062</x>
2063  <y>53</y>
2064  <width>212</width>
2065  <height>330</height>
2066  <uuid>{76f66b6b-f1b1-43bb-9d6f-0fe435462645}</uuid>
2067  <visible>true</visible>
2068  <midichan>0</midichan>
2069  <midicc>0</midicc>
2070  <label/>
2071  <alignment>center</alignment>
2072  <font>Liberation Sans</font>
2073  <fontsize>18</fontsize>
2074  <precision>3</precision>
2075  <color>
2076   <r>0</r>
2077   <g>0</g>
2078   <b>0</b>
2079  </color>
2080  <bgcolor mode="background">
2081   <r>122</r>
2082   <g>122</g>
2083   <b>122</b>
2084  </bgcolor>
2085  <bordermode>border</bordermode>
2086  <borderradius>20</borderradius>
2087  <borderwidth>3</borderwidth>
2088 </bsbObject>
2089 <bsbObject version="2" type="BSBKnob">
2090  <objectName>REVERSE_Time</objectName>
2091  <x>1128</x>
2092  <y>91</y>
2093  <width>80</width>
2094  <height>80</height>
2095  <uuid>{b92d7ecf-6af2-4ede-8cde-10042f18e8f5}</uuid>
2096  <visible>true</visible>
2097  <midichan>0</midichan>
2098  <midicc>0</midicc>
2099  <minimum>0.30000000</minimum>
2100  <maximum>2.00000000</maximum>
2101  <value>0.45300000</value>
2102  <mode>lin</mode>
2103  <mouseControl act="jump">continuous</mouseControl>
2104  <resolution>0.01000000</resolution>
2105  <randomizable group="0">false</randomizable>
2106 </bsbObject>
2107 <bsbObject version="2" type="BSBLabel">
2108  <objectName/>
2109  <x>1091</x>
2110  <y>202</y>
2111  <width>146</width>
2112  <height>44</height>
2113  <uuid>{5bdd6a16-f6e0-4d8d-8aec-c3922ac5bd43}</uuid>
2114  <visible>true</visible>
2115  <midichan>0</midichan>
2116  <midicc>0</midicc>
2117  <label>REVERSE</label>
2118  <alignment>center</alignment>
2119  <font>Liberation Sans</font>
2120  <fontsize>30</fontsize>
2121  <precision>3</precision>
2122  <color>
2123   <r>0</r>
2124   <g>0</g>
2125   <b>0</b>
2126  </color>
2127  <bgcolor mode="nobackground">
2128   <r>255</r>
2129   <g>255</g>
2130   <b>255</b>
2131  </bgcolor>
2132  <bordermode>noborder</bordermode>
2133  <borderradius>1</borderradius>
2134  <borderwidth>1</borderwidth>
2135 </bsbObject>
2136 <bsbObject version="2" type="BSBLabel">
2137  <objectName/>
2138  <x>1128</x>
2139  <y>176</y>
2140  <width>80</width>
2141  <height>25</height>
2142  <uuid>{5877f35a-81c0-47a3-86a7-699a7d69593f}</uuid>
2143  <visible>true</visible>
2144  <midichan>0</midichan>
2145  <midicc>0</midicc>
2146  <label>Time</label>
2147  <alignment>center</alignment>
2148  <font>Liberation Sans</font>
2149  <fontsize>10</fontsize>
2150  <precision>3</precision>
2151  <color>
2152   <r>0</r>
2153   <g>0</g>
2154   <b>0</b>
2155  </color>
2156  <bgcolor mode="nobackground">
2157   <r>255</r>
2158   <g>255</g>
2159   <b>255</b>
2160  </bgcolor>
2161  <bordermode>noborder</bordermode>
2162  <borderradius>1</borderradius>
2163  <borderwidth>1</borderwidth>
2164 </bsbObject>
2165 <bsbObject version="2" type="BSBButton">
2166  <objectName/>
2167  <x>1078</x>
2168  <y>255</y>
2169  <width>180</width>
2170  <height>110</height>
2171  <uuid>{0449dc7b-ed98-411a-ac01-4e413c2bb0f5}</uuid>
2172  <visible>true</visible>
2173  <midichan>0</midichan>
2174  <midicc>0</midicc>
2175  <type>event</type>
2176  <pressedValue>1.00000000</pressedValue>
2177  <stringvalue/>
2178  <text/>
2179  <image>/</image>
2180  <eventLine>i 1 0 0.01 5</eventLine>
2181  <latch>false</latch>
2182  <latched>false</latched>
2183 </bsbObject>
2184 <bsbObject version="2" type="BSBController">
2185  <objectName/>
2186  <x>1162</x>
2187  <y>61</y>
2188  <width>15</width>
2189  <height>15</height>
2190  <uuid>{90aaf314-1a2c-4993-aa13-b8493c328aef}</uuid>
2191  <visible>true</visible>
2192  <midichan>0</midichan>
2193  <midicc>0</midicc>
2194  <objectName2>REVERSELED</objectName2>
2195  <xMin>0.00000000</xMin>
2196  <xMax>1.00000000</xMax>
2197  <yMin>0.00000000</yMin>
2198  <yMax>1.00000000</yMax>
2199  <xValue>0.00000000</xValue>
2200  <yValue>0.00000000</yValue>
2201  <type>fill</type>
2202  <pointsize>1</pointsize>
2203  <fadeSpeed>0.00000000</fadeSpeed>
2204  <mouseControl act="press">jump</mouseControl>
2205  <color>
2206   <r>255</r>
2207   <g>0</g>
2208   <b>0</b>
2209  </color>
2210  <randomizable mode="both" group="0">false</randomizable>
2211  <bgcolor>
2212   <r>0</r>
2213   <g>0</g>
2214   <b>0</b>
2215  </bgcolor>
2216 </bsbObject>
2217 <bsbObject version="2" type="BSBLabel">
2218  <objectName/>
2219  <x>1274</x>
2220  <y>53</y>
2221  <width>212</width>
2222  <height>330</height>
2223  <uuid>{8acdec82-f102-4cfd-accd-f911139ca2b1}</uuid>
2224  <visible>true</visible>
2225  <midichan>0</midichan>
2226  <midicc>0</midicc>
2227  <label/>
2228  <alignment>center</alignment>
2229  <font>Liberation Sans</font>
2230  <fontsize>18</fontsize>
2231  <precision>3</precision>
2232  <color>
2233   <r>0</r>
2234   <g>0</g>
2235   <b>0</b>
2236  </color>
2237  <bgcolor mode="background">
2238   <r>209</r>
2239   <g>209</g>
2240   <b>0</b>
2241  </bgcolor>
2242  <bordermode>border</bordermode>
2243  <borderradius>20</borderradius>
2244  <borderwidth>3</borderwidth>
2245 </bsbObject>
2246 <bsbObject version="2" type="BSBLabel">
2247  <objectName/>
2248  <x>1276</x>
2249  <y>204</y>
2250  <width>210</width>
2251  <height>44</height>
2252  <uuid>{5c1099e3-515e-4300-9f41-70141594e7bc}</uuid>
2253  <visible>true</visible>
2254  <midichan>0</midichan>
2255  <midicc>0</midicc>
2256  <label>PITCH SHIFTER</label>
2257  <alignment>center</alignment>
2258  <font>Liberation Sans</font>
2259  <fontsize>26</fontsize>
2260  <precision>3</precision>
2261  <color>
2262   <r>0</r>
2263   <g>0</g>
2264   <b>0</b>
2265  </color>
2266  <bgcolor mode="nobackground">
2267   <r>255</r>
2268   <g>255</g>
2269   <b>255</b>
2270  </bgcolor>
2271  <bordermode>noborder</bordermode>
2272  <borderradius>1</borderradius>
2273  <borderwidth>1</borderwidth>
2274 </bsbObject>
2275 <bsbObject version="2" type="BSBButton">
2276  <objectName/>
2277  <x>1290</x>
2278  <y>255</y>
2279  <width>180</width>
2280  <height>110</height>
2281  <uuid>{49dbb414-2046-4f92-b16f-73e7573b1a0e}</uuid>
2282  <visible>true</visible>
2283  <midichan>0</midichan>
2284  <midicc>0</midicc>
2285  <type>event</type>
2286  <pressedValue>1.00000000</pressedValue>
2287  <stringvalue/>
2288  <text/>
2289  <image>/</image>
2290  <eventLine>i 1 0 0.01 6</eventLine>
2291  <latch>false</latch>
2292  <latched>false</latched>
2293 </bsbObject>
2294 <bsbObject version="2" type="BSBController">
2295  <objectName/>
2296  <x>1372</x>
2297  <y>61</y>
2298  <width>15</width>
2299  <height>15</height>
2300  <uuid>{75630bb2-487e-427e-8e57-463daeb4fe9d}</uuid>
2301  <visible>true</visible>
2302  <midichan>0</midichan>
2303  <midicc>0</midicc>
2304  <objectName2>PITCH_SHIFTERLED</objectName2>
2305  <xMin>0.00000000</xMin>
2306  <xMax>1.00000000</xMax>
2307  <yMin>0.00000000</yMin>
2308  <yMax>1.00000000</yMax>
2309  <xValue>0.00000000</xValue>
2310  <yValue>0.00000000</yValue>
2311  <type>fill</type>
2312  <pointsize>1</pointsize>
2313  <fadeSpeed>0.00000000</fadeSpeed>
2314  <mouseControl act="press">jump</mouseControl>
2315  <color>
2316   <r>255</r>
2317   <g>0</g>
2318   <b>0</b>
2319  </color>
2320  <randomizable mode="both" group="0">false</randomizable>
2321  <bgcolor>
2322   <r>0</r>
2323   <g>0</g>
2324   <b>0</b>
2325  </bgcolor>
2326 </bsbObject>
2327 <bsbObject version="2" type="BSBKnob">
2328  <objectName>PITCH_SHIFTER_Mix</objectName>
2329  <x>1279</x>
2330  <y>115</y>
2331  <width>50</width>
2332  <height>50</height>
2333  <uuid>{dbf55519-a68c-4772-a301-3764af207c61}</uuid>
2334  <visible>true</visible>
2335  <midichan>0</midichan>
2336  <midicc>0</midicc>
2337  <minimum>0.00000000</minimum>
2338  <maximum>1.00000000</maximum>
2339  <value>0.82000000</value>
2340  <mode>lin</mode>
2341  <mouseControl act="jump">continuous</mouseControl>
2342  <resolution>0.01000000</resolution>
2343  <randomizable group="0">false</randomizable>
2344 </bsbObject>
2345 <bsbObject version="2" type="BSBKnob">
2346  <objectName>PITCH_SHIFTER_Pitch</objectName>
2347  <x>1330</x>
2348  <y>115</y>
2349  <width>50</width>
2350  <height>50</height>
2351  <uuid>{d6fc6066-1cb5-4670-9e70-8e46b0ad4cc9}</uuid>
2352  <visible>true</visible>
2353  <midichan>0</midichan>
2354  <midicc>0</midicc>
2355  <minimum>-12.00000000</minimum>
2356  <maximum>12.00000000</maximum>
2357  <value>-1.20000000</value>
2358  <mode>lin</mode>
2359  <mouseControl act="jump">continuous</mouseControl>
2360  <resolution>0.01000000</resolution>
2361  <randomizable group="0">false</randomizable>
2362 </bsbObject>
2363 <bsbObject version="2" type="BSBKnob">
2364  <objectName>PITCH_SHIFTER_Fine</objectName>
2365  <x>1381</x>
2366  <y>115</y>
2367  <width>50</width>
2368  <height>50</height>
2369  <uuid>{1baced77-96fc-432a-aba9-a0eac5775dc2}</uuid>
2370  <visible>true</visible>
2371  <midichan>0</midichan>
2372  <midicc>0</midicc>
2373  <minimum>-0.08333300</minimum>
2374  <maximum>0.08333300</maximum>
2375  <value>-0.00166666</value>
2376  <mode>lin</mode>
2377  <mouseControl act="jump">continuous</mouseControl>
2378  <resolution>0.01000000</resolution>
2379  <randomizable group="0">false</randomizable>
2380 </bsbObject>
2381 <bsbObject version="2" type="BSBKnob">
2382  <objectName>PITCH_SHIFTER_FBack</objectName>
2383  <x>1432</x>
2384  <y>115</y>
2385  <width>50</width>
2386  <height>50</height>
2387  <uuid>{bb56c3e9-f329-4d78-b8ad-dc72c3a05eb5}</uuid>
2388  <visible>true</visible>
2389  <midichan>0</midichan>
2390  <midicc>0</midicc>
2391  <minimum>0.00000000</minimum>
2392  <maximum>1.00000000</maximum>
2393  <value>0.47000000</value>
2394  <mode>lin</mode>
2395  <mouseControl act="jump">continuous</mouseControl>
2396  <resolution>0.01000000</resolution>
2397  <randomizable group="0">false</randomizable>
2398 </bsbObject>
2399 <bsbObject version="2" type="BSBLabel">
2400  <objectName/>
2401  <x>1279</x>
2402  <y>164</y>
2403  <width>50</width>
2404  <height>25</height>
2405  <uuid>{2354a319-14be-4115-b085-5c1d3f502387}</uuid>
2406  <visible>true</visible>
2407  <midichan>0</midichan>
2408  <midicc>0</midicc>
2409  <label>Mix</label>
2410  <alignment>center</alignment>
2411  <font>Liberation Sans</font>
2412  <fontsize>10</fontsize>
2413  <precision>3</precision>
2414  <color>
2415   <r>0</r>
2416   <g>0</g>
2417   <b>0</b>
2418  </color>
2419  <bgcolor mode="nobackground">
2420   <r>255</r>
2421   <g>255</g>
2422   <b>255</b>
2423  </bgcolor>
2424  <bordermode>noborder</bordermode>
2425  <borderradius>1</borderradius>
2426  <borderwidth>1</borderwidth>
2427 </bsbObject>
2428 <bsbObject version="2" type="BSBLabel">
2429  <objectName/>
2430  <x>1330</x>
2431  <y>164</y>
2432  <width>50</width>
2433  <height>25</height>
2434  <uuid>{1d0c4e23-e102-45fb-8333-95448fb39118}</uuid>
2435  <visible>true</visible>
2436  <midichan>0</midichan>
2437  <midicc>0</midicc>
2438  <label>Pitch</label>
2439  <alignment>center</alignment>
2440  <font>Liberation Sans</font>
2441  <fontsize>10</fontsize>
2442  <precision>3</precision>
2443  <color>
2444   <r>0</r>
2445   <g>0</g>
2446   <b>0</b>
2447  </color>
2448  <bgcolor mode="nobackground">
2449   <r>255</r>
2450   <g>255</g>
2451   <b>255</b>
2452  </bgcolor>
2453  <bordermode>noborder</bordermode>
2454  <borderradius>1</borderradius>
2455  <borderwidth>1</borderwidth>
2456 </bsbObject>
2457 <bsbObject version="2" type="BSBLabel">
2458  <objectName/>
2459  <x>1381</x>
2460  <y>164</y>
2461  <width>50</width>
2462  <height>25</height>
2463  <uuid>{cdae8fe4-42fa-4fdd-9bb9-d6dec7dd6246}</uuid>
2464  <visible>true</visible>
2465  <midichan>0</midichan>
2466  <midicc>0</midicc>
2467  <label>Fine</label>
2468  <alignment>center</alignment>
2469  <font>Liberation Sans</font>
2470  <fontsize>10</fontsize>
2471  <precision>3</precision>
2472  <color>
2473   <r>0</r>
2474   <g>0</g>
2475   <b>0</b>
2476  </color>
2477  <bgcolor mode="nobackground">
2478   <r>255</r>
2479   <g>255</g>
2480   <b>255</b>
2481  </bgcolor>
2482  <bordermode>noborder</bordermode>
2483  <borderradius>1</borderradius>
2484  <borderwidth>1</borderwidth>
2485 </bsbObject>
2486 <bsbObject version="2" type="BSBLabel">
2487  <objectName/>
2488  <x>1432</x>
2489  <y>164</y>
2490  <width>50</width>
2491  <height>50</height>
2492  <uuid>{b68722fb-176a-4e8c-a71a-5cfebcfb82e9}</uuid>
2493  <visible>true</visible>
2494  <midichan>0</midichan>
2495  <midicc>0</midicc>
2496  <label>Feed
2497Back</label>
2498  <alignment>center</alignment>
2499  <font>Liberation Sans</font>
2500  <fontsize>10</fontsize>
2501  <precision>3</precision>
2502  <color>
2503   <r>0</r>
2504   <g>0</g>
2505   <b>0</b>
2506  </color>
2507  <bgcolor mode="nobackground">
2508   <r>255</r>
2509   <g>255</g>
2510   <b>255</b>
2511  </bgcolor>
2512  <bordermode>noborder</bordermode>
2513  <borderradius>1</borderradius>
2514  <borderwidth>1</borderwidth>
2515 </bsbObject>
2516 <bsbObject version="2" type="BSBLabel">
2517  <objectName/>
2518  <x>1486</x>
2519  <y>53</y>
2520  <width>212</width>
2521  <height>330</height>
2522  <uuid>{b50ccdc3-3cd8-4dde-935f-8bd1032ca1d6}</uuid>
2523  <visible>true</visible>
2524  <midichan>0</midichan>
2525  <midicc>0</midicc>
2526  <label/>
2527  <alignment>center</alignment>
2528  <font>Liberation Sans</font>
2529  <fontsize>18</fontsize>
2530  <precision>3</precision>
2531  <color>
2532   <r>0</r>
2533   <g>0</g>
2534   <b>0</b>
2535  </color>
2536  <bgcolor mode="background">
2537   <r>134</r>
2538   <g>0</g>
2539   <b>0</b>
2540  </bgcolor>
2541  <bordermode>border</bordermode>
2542  <borderradius>20</borderradius>
2543  <borderwidth>3</borderwidth>
2544 </bsbObject>
2545 <bsbObject version="2" type="BSBLabel">
2546  <objectName/>
2547  <x>1488</x>
2548  <y>204</y>
2549  <width>210</width>
2550  <height>44</height>
2551  <uuid>{82515e59-a788-45ac-8d8a-a5a2f29eaf5e}</uuid>
2552  <visible>true</visible>
2553  <midichan>0</midichan>
2554  <midicc>0</midicc>
2555  <label>FREQ SHIFTER</label>
2556  <alignment>center</alignment>
2557  <font>Liberation Sans</font>
2558  <fontsize>26</fontsize>
2559  <precision>3</precision>
2560  <color>
2561   <r>0</r>
2562   <g>0</g>
2563   <b>0</b>
2564  </color>
2565  <bgcolor mode="nobackground">
2566   <r>255</r>
2567   <g>255</g>
2568   <b>255</b>
2569  </bgcolor>
2570  <bordermode>noborder</bordermode>
2571  <borderradius>1</borderradius>
2572  <borderwidth>1</borderwidth>
2573 </bsbObject>
2574 <bsbObject version="2" type="BSBButton">
2575  <objectName/>
2576  <x>1502</x>
2577  <y>255</y>
2578  <width>180</width>
2579  <height>110</height>
2580  <uuid>{33e18e9b-2980-49a3-8198-f6d79d6e63ce}</uuid>
2581  <visible>true</visible>
2582  <midichan>0</midichan>
2583  <midicc>0</midicc>
2584  <type>event</type>
2585  <pressedValue>1.00000000</pressedValue>
2586  <stringvalue/>
2587  <text/>
2588  <image>/</image>
2589  <eventLine>i 1 0 0.01 7</eventLine>
2590  <latch>false</latch>
2591  <latched>false</latched>
2592 </bsbObject>
2593 <bsbObject version="2" type="BSBController">
2594  <objectName/>
2595  <x>1584</x>
2596  <y>61</y>
2597  <width>15</width>
2598  <height>15</height>
2599  <uuid>{3af52026-b284-49b0-9c9b-e573d9be946e}</uuid>
2600  <visible>true</visible>
2601  <midichan>0</midichan>
2602  <midicc>0</midicc>
2603  <objectName2>FREQSHIFTERLED</objectName2>
2604  <xMin>0.00000000</xMin>
2605  <xMax>1.00000000</xMax>
2606  <yMin>0.00000000</yMin>
2607  <yMax>1.00000000</yMax>
2608  <xValue>0.00000000</xValue>
2609  <yValue>0.00000000</yValue>
2610  <type>fill</type>
2611  <pointsize>1</pointsize>
2612  <fadeSpeed>0.00000000</fadeSpeed>
2613  <mouseControl act="press">jump</mouseControl>
2614  <color>
2615   <r>255</r>
2616   <g>0</g>
2617   <b>0</b>
2618  </color>
2619  <randomizable mode="both" group="0">false</randomizable>
2620  <bgcolor>
2621   <r>0</r>
2622   <g>0</g>
2623   <b>0</b>
2624  </bgcolor>
2625 </bsbObject>
2626 <bsbObject version="2" type="BSBKnob">
2627  <objectName>FREQSHIFTER_Mix</objectName>
2628  <x>1491</x>
2629  <y>115</y>
2630  <width>50</width>
2631  <height>50</height>
2632  <uuid>{e4eee056-2419-41b7-8c88-a4943bb50e84}</uuid>
2633  <visible>true</visible>
2634  <midichan>0</midichan>
2635  <midicc>0</midicc>
2636  <minimum>0.00000000</minimum>
2637  <maximum>1.00000000</maximum>
2638  <value>1.00000000</value>
2639  <mode>lin</mode>
2640  <mouseControl act="jump">continuous</mouseControl>
2641  <resolution>0.01000000</resolution>
2642  <randomizable group="0">false</randomizable>
2643 </bsbObject>
2644 <bsbObject version="2" type="BSBKnob">
2645  <objectName>FREQSHIFTER_Freq</objectName>
2646  <x>1542</x>
2647  <y>115</y>
2648  <width>50</width>
2649  <height>50</height>
2650  <uuid>{5aec8c49-6186-496b-bd73-a0f41875af4f}</uuid>
2651  <visible>true</visible>
2652  <midichan>0</midichan>
2653  <midicc>0</midicc>
2654  <minimum>-1000.00000000</minimum>
2655  <maximum>1000.00000000</maximum>
2656  <value>400.00000000</value>
2657  <mode>lin</mode>
2658  <mouseControl act="jump">continuous</mouseControl>
2659  <resolution>0.01000000</resolution>
2660  <randomizable group="0">false</randomizable>
2661 </bsbObject>
2662 <bsbObject version="2" type="BSBKnob">
2663  <objectName>FREQSHIFTER_Mult</objectName>
2664  <x>1593</x>
2665  <y>115</y>
2666  <width>50</width>
2667  <height>50</height>
2668  <uuid>{a266ecdc-4fcd-4495-9c51-11ea862b388e}</uuid>
2669  <visible>true</visible>
2670  <midichan>0</midichan>
2671  <midicc>0</midicc>
2672  <minimum>-1.00000000</minimum>
2673  <maximum>1.00000000</maximum>
2674  <value>-0.08000000</value>
2675  <mode>lin</mode>
2676  <mouseControl act="jump">continuous</mouseControl>
2677  <resolution>0.01000000</resolution>
2678  <randomizable group="0">false</randomizable>
2679 </bsbObject>
2680 <bsbObject version="2" type="BSBKnob">
2681  <objectName>FREQSHIFTER_Fback</objectName>
2682  <x>1644</x>
2683  <y>115</y>
2684  <width>50</width>
2685  <height>50</height>
2686  <uuid>{9ca1c6ab-cdb5-431f-972d-6ae759ef7cf8}</uuid>
2687  <visible>true</visible>
2688  <midichan>0</midichan>
2689  <midicc>0</midicc>
2690  <minimum>0.00000000</minimum>
2691  <maximum>0.75000000</maximum>
2692  <value>0.36750000</value>
2693  <mode>lin</mode>
2694  <mouseControl act="jump">continuous</mouseControl>
2695  <resolution>0.01000000</resolution>
2696  <randomizable group="0">false</randomizable>
2697 </bsbObject>
2698 <bsbObject version="2" type="BSBLabel">
2699  <objectName/>
2700  <x>1491</x>
2701  <y>164</y>
2702  <width>50</width>
2703  <height>25</height>
2704  <uuid>{06fbd614-c7c3-40b8-9a08-c9fa26e54443}</uuid>
2705  <visible>true</visible>
2706  <midichan>0</midichan>
2707  <midicc>0</midicc>
2708  <label>Mix</label>
2709  <alignment>center</alignment>
2710  <font>Liberation Sans</font>
2711  <fontsize>10</fontsize>
2712  <precision>3</precision>
2713  <color>
2714   <r>0</r>
2715   <g>0</g>
2716   <b>0</b>
2717  </color>
2718  <bgcolor mode="nobackground">
2719   <r>255</r>
2720   <g>255</g>
2721   <b>255</b>
2722  </bgcolor>
2723  <bordermode>noborder</bordermode>
2724  <borderradius>1</borderradius>
2725  <borderwidth>1</borderwidth>
2726 </bsbObject>
2727 <bsbObject version="2" type="BSBLabel">
2728  <objectName/>
2729  <x>1542</x>
2730  <y>164</y>
2731  <width>50</width>
2732  <height>25</height>
2733  <uuid>{7abee733-183b-4541-93ee-a64e433b8a9f}</uuid>
2734  <visible>true</visible>
2735  <midichan>0</midichan>
2736  <midicc>0</midicc>
2737  <label>Freq</label>
2738  <alignment>center</alignment>
2739  <font>Liberation Sans</font>
2740  <fontsize>10</fontsize>
2741  <precision>3</precision>
2742  <color>
2743   <r>0</r>
2744   <g>0</g>
2745   <b>0</b>
2746  </color>
2747  <bgcolor mode="nobackground">
2748   <r>255</r>
2749   <g>255</g>
2750   <b>255</b>
2751  </bgcolor>
2752  <bordermode>noborder</bordermode>
2753  <borderradius>1</borderradius>
2754  <borderwidth>1</borderwidth>
2755 </bsbObject>
2756 <bsbObject version="2" type="BSBLabel">
2757  <objectName/>
2758  <x>1593</x>
2759  <y>164</y>
2760  <width>50</width>
2761  <height>25</height>
2762  <uuid>{6d2fb5e6-ab22-449c-aeda-3729c30dea39}</uuid>
2763  <visible>true</visible>
2764  <midichan>0</midichan>
2765  <midicc>0</midicc>
2766  <label>Mult</label>
2767  <alignment>center</alignment>
2768  <font>Liberation Sans</font>
2769  <fontsize>10</fontsize>
2770  <precision>3</precision>
2771  <color>
2772   <r>0</r>
2773   <g>0</g>
2774   <b>0</b>
2775  </color>
2776  <bgcolor mode="nobackground">
2777   <r>255</r>
2778   <g>255</g>
2779   <b>255</b>
2780  </bgcolor>
2781  <bordermode>noborder</bordermode>
2782  <borderradius>1</borderradius>
2783  <borderwidth>1</borderwidth>
2784 </bsbObject>
2785 <bsbObject version="2" type="BSBLabel">
2786  <objectName/>
2787  <x>1644</x>
2788  <y>164</y>
2789  <width>50</width>
2790  <height>50</height>
2791  <uuid>{2f9e0dc9-623e-4e72-98d2-ea6c7d86343b}</uuid>
2792  <visible>true</visible>
2793  <midichan>0</midichan>
2794  <midicc>0</midicc>
2795  <label>Feed
2796Back</label>
2797  <alignment>center</alignment>
2798  <font>Liberation Sans</font>
2799  <fontsize>10</fontsize>
2800  <precision>3</precision>
2801  <color>
2802   <r>0</r>
2803   <g>0</g>
2804   <b>0</b>
2805  </color>
2806  <bgcolor mode="nobackground">
2807   <r>255</r>
2808   <g>255</g>
2809   <b>255</b>
2810  </bgcolor>
2811  <bordermode>noborder</bordermode>
2812  <borderradius>1</borderradius>
2813  <borderwidth>1</borderwidth>
2814 </bsbObject>
2815 <bsbObject version="2" type="BSBLabel">
2816  <objectName/>
2817  <x>1698</x>
2818  <y>53</y>
2819  <width>212</width>
2820  <height>330</height>
2821  <uuid>{ef54ae3b-2114-4ecc-bedb-e99705c16cc8}</uuid>
2822  <visible>true</visible>
2823  <midichan>0</midichan>
2824  <midicc>0</midicc>
2825  <label/>
2826  <alignment>center</alignment>
2827  <font>Liberation Sans</font>
2828  <fontsize>18</fontsize>
2829  <precision>3</precision>
2830  <color>
2831   <r>0</r>
2832   <g>0</g>
2833   <b>0</b>
2834  </color>
2835  <bgcolor mode="background">
2836   <r>0</r>
2837   <g>170</g>
2838   <b>127</b>
2839  </bgcolor>
2840  <bordermode>border</bordermode>
2841  <borderradius>20</borderradius>
2842  <borderwidth>3</borderwidth>
2843 </bsbObject>
2844 <bsbObject version="2" type="BSBLabel">
2845  <objectName/>
2846  <x>1700</x>
2847  <y>191</y>
2848  <width>210</width>
2849  <height>70</height>
2850  <uuid>{b5b95e56-c8e8-4d36-8efa-a944b1ea3882}</uuid>
2851  <visible>true</visible>
2852  <midichan>0</midichan>
2853  <midicc>0</midicc>
2854  <label>RING MODULATOR</label>
2855  <alignment>center</alignment>
2856  <font>Liberation Sans</font>
2857  <fontsize>26</fontsize>
2858  <precision>3</precision>
2859  <color>
2860   <r>0</r>
2861   <g>0</g>
2862   <b>0</b>
2863  </color>
2864  <bgcolor mode="nobackground">
2865   <r>255</r>
2866   <g>255</g>
2867   <b>255</b>
2868  </bgcolor>
2869  <bordermode>noborder</bordermode>
2870  <borderradius>1</borderradius>
2871  <borderwidth>1</borderwidth>
2872 </bsbObject>
2873 <bsbObject version="2" type="BSBButton">
2874  <objectName/>
2875  <x>1714</x>
2876  <y>255</y>
2877  <width>180</width>
2878  <height>110</height>
2879  <uuid>{681cdcfa-44bf-4db2-b533-5b2994226285}</uuid>
2880  <visible>true</visible>
2881  <midichan>0</midichan>
2882  <midicc>0</midicc>
2883  <type>event</type>
2884  <pressedValue>1.00000000</pressedValue>
2885  <stringvalue/>
2886  <text/>
2887  <image>/</image>
2888  <eventLine>i 1 0 0.01 8</eventLine>
2889  <latch>false</latch>
2890  <latched>false</latched>
2891 </bsbObject>
2892 <bsbObject version="2" type="BSBController">
2893  <objectName/>
2894  <x>1796</x>
2895  <y>61</y>
2896  <width>15</width>
2897  <height>15</height>
2898  <uuid>{c7baf4c2-715f-4001-9e8a-58188589d4ea}</uuid>
2899  <visible>true</visible>
2900  <midichan>0</midichan>
2901  <midicc>0</midicc>
2902  <objectName2>RINGMODULATORLED</objectName2>
2903  <xMin>0.00000000</xMin>
2904  <xMax>1.00000000</xMax>
2905  <yMin>0.00000000</yMin>
2906  <yMax>1.00000000</yMax>
2907  <xValue>0.00000000</xValue>
2908  <yValue>0.00000000</yValue>
2909  <type>fill</type>
2910  <pointsize>1</pointsize>
2911  <fadeSpeed>0.00000000</fadeSpeed>
2912  <mouseControl act="press">jump</mouseControl>
2913  <color>
2914   <r>255</r>
2915   <g>0</g>
2916   <b>0</b>
2917  </color>
2918  <randomizable mode="both" group="0">false</randomizable>
2919  <bgcolor>
2920   <r>0</r>
2921   <g>0</g>
2922   <b>0</b>
2923  </bgcolor>
2924 </bsbObject>
2925 <bsbObject version="2" type="BSBKnob">
2926  <objectName>RINGMODULATOR_Mix</objectName>
2927  <x>1711</x>
2928  <y>113</y>
2929  <width>60</width>
2930  <height>60</height>
2931  <uuid>{f1ea640c-354c-4ffa-b803-0880184a6fc7}</uuid>
2932  <visible>true</visible>
2933  <midichan>0</midichan>
2934  <midicc>0</midicc>
2935  <minimum>0.00000000</minimum>
2936  <maximum>1.00000000</maximum>
2937  <value>0.51000000</value>
2938  <mode>lin</mode>
2939  <mouseControl act="jump">continuous</mouseControl>
2940  <resolution>0.01000000</resolution>
2941  <randomizable group="0">false</randomizable>
2942 </bsbObject>
2943 <bsbObject version="2" type="BSBLabel">
2944  <objectName/>
2945  <x>1711</x>
2946  <y>175</y>
2947  <width>60</width>
2948  <height>25</height>
2949  <uuid>{5ffcf4f4-78cc-4555-b09f-9a6aa284c4ab}</uuid>
2950  <visible>true</visible>
2951  <midichan>0</midichan>
2952  <midicc>0</midicc>
2953  <label>Mix</label>
2954  <alignment>center</alignment>
2955  <font>Liberation Sans</font>
2956  <fontsize>10</fontsize>
2957  <precision>3</precision>
2958  <color>
2959   <r>0</r>
2960   <g>0</g>
2961   <b>0</b>
2962  </color>
2963  <bgcolor mode="nobackground">
2964   <r>255</r>
2965   <g>255</g>
2966   <b>255</b>
2967  </bgcolor>
2968  <bordermode>noborder</bordermode>
2969  <borderradius>1</borderradius>
2970  <borderwidth>1</borderwidth>
2971 </bsbObject>
2972 <bsbObject version="2" type="BSBKnob">
2973  <objectName>RINGMODULATOR_Freq</objectName>
2974  <x>1774</x>
2975  <y>113</y>
2976  <width>60</width>
2977  <height>60</height>
2978  <uuid>{674f6958-19e4-43ff-b163-6c7e395fd9a4}</uuid>
2979  <visible>true</visible>
2980  <midichan>0</midichan>
2981  <midicc>0</midicc>
2982  <minimum>10.00000000</minimum>
2983  <maximum>5000.00000000</maximum>
2984  <value>1806.40000000</value>
2985  <mode>lin</mode>
2986  <mouseControl act="jump">continuous</mouseControl>
2987  <resolution>0.01000000</resolution>
2988  <randomizable group="0">false</randomizable>
2989 </bsbObject>
2990 <bsbObject version="2" type="BSBLabel">
2991  <objectName/>
2992  <x>1774</x>
2993  <y>175</y>
2994  <width>60</width>
2995  <height>25</height>
2996  <uuid>{b91982d4-fc58-4ba5-ab54-d47db1f955bb}</uuid>
2997  <visible>true</visible>
2998  <midichan>0</midichan>
2999  <midicc>0</midicc>
3000  <label>Freq</label>
3001  <alignment>center</alignment>
3002  <font>Liberation Sans</font>
3003  <fontsize>10</fontsize>
3004  <precision>3</precision>
3005  <color>
3006   <r>0</r>
3007   <g>0</g>
3008   <b>0</b>
3009  </color>
3010  <bgcolor mode="nobackground">
3011   <r>255</r>
3012   <g>255</g>
3013   <b>255</b>
3014  </bgcolor>
3015  <bordermode>noborder</bordermode>
3016  <borderradius>1</borderradius>
3017  <borderwidth>1</borderwidth>
3018 </bsbObject>
3019 <bsbObject version="2" type="BSBKnob">
3020  <objectName>RINGMODULATOR_Env</objectName>
3021  <x>1837</x>
3022  <y>113</y>
3023  <width>60</width>
3024  <height>60</height>
3025  <uuid>{62be06c6-09ad-483c-8878-14479f7d35f4}</uuid>
3026  <visible>true</visible>
3027  <midichan>0</midichan>
3028  <midicc>0</midicc>
3029  <minimum>0.00000000</minimum>
3030  <maximum>1.00000000</maximum>
3031  <value>0.36000000</value>
3032  <mode>lin</mode>
3033  <mouseControl act="jump">continuous</mouseControl>
3034  <resolution>0.01000000</resolution>
3035  <randomizable group="0">false</randomizable>
3036 </bsbObject>
3037 <bsbObject version="2" type="BSBLabel">
3038  <objectName/>
3039  <x>1837</x>
3040  <y>175</y>
3041  <width>60</width>
3042  <height>25</height>
3043  <uuid>{4d7ab64b-2129-4186-b7d3-89d4580a2650}</uuid>
3044  <visible>true</visible>
3045  <midichan>0</midichan>
3046  <midicc>0</midicc>
3047  <label>Env</label>
3048  <alignment>center</alignment>
3049  <font>Liberation Sans</font>
3050  <fontsize>10</fontsize>
3051  <precision>3</precision>
3052  <color>
3053   <r>0</r>
3054   <g>0</g>
3055   <b>0</b>
3056  </color>
3057  <bgcolor mode="nobackground">
3058   <r>255</r>
3059   <g>255</g>
3060   <b>255</b>
3061  </bgcolor>
3062  <bordermode>noborder</bordermode>
3063  <borderradius>1</borderradius>
3064  <borderwidth>1</borderwidth>
3065 </bsbObject>
3066 <bsbObject version="2" type="BSBLabel">
3067  <objectName/>
3068  <x>2</x>
3069  <y>383</y>
3070  <width>212</width>
3071  <height>330</height>
3072  <uuid>{3eb85a3f-27d0-4b5c-a462-8cbcf1c4184c}</uuid>
3073  <visible>true</visible>
3074  <midichan>0</midichan>
3075  <midicc>0</midicc>
3076  <label/>
3077  <alignment>center</alignment>
3078  <font>Liberation Sans</font>
3079  <fontsize>18</fontsize>
3080  <precision>3</precision>
3081  <color>
3082   <r>0</r>
3083   <g>0</g>
3084   <b>0</b>
3085  </color>
3086  <bgcolor mode="background">
3087   <r>255</r>
3088   <g>85</g>
3089   <b>0</b>
3090  </bgcolor>
3091  <bordermode>border</bordermode>
3092  <borderradius>20</borderradius>
3093  <borderwidth>3</borderwidth>
3094 </bsbObject>
3095 <bsbObject version="2" type="BSBLabel">
3096  <objectName/>
3097  <x>4</x>
3098  <y>534</y>
3099  <width>210</width>
3100  <height>44</height>
3101  <uuid>{d7aab340-0068-4569-bc30-4f3140d4b160}</uuid>
3102  <visible>true</visible>
3103  <midichan>0</midichan>
3104  <midicc>0</midicc>
3105  <label>PHASER</label>
3106  <alignment>center</alignment>
3107  <font>Liberation Sans</font>
3108  <fontsize>26</fontsize>
3109  <precision>3</precision>
3110  <color>
3111   <r>0</r>
3112   <g>0</g>
3113   <b>0</b>
3114  </color>
3115  <bgcolor mode="nobackground">
3116   <r>255</r>
3117   <g>255</g>
3118   <b>255</b>
3119  </bgcolor>
3120  <bordermode>noborder</bordermode>
3121  <borderradius>1</borderradius>
3122  <borderwidth>1</borderwidth>
3123 </bsbObject>
3124 <bsbObject version="2" type="BSBButton">
3125  <objectName/>
3126  <x>18</x>
3127  <y>585</y>
3128  <width>180</width>
3129  <height>110</height>
3130  <uuid>{15c085ab-9775-4baa-ad41-2081d958e882}</uuid>
3131  <visible>true</visible>
3132  <midichan>0</midichan>
3133  <midicc>0</midicc>
3134  <type>event</type>
3135  <pressedValue>1.00000000</pressedValue>
3136  <stringvalue/>
3137  <text/>
3138  <image>/</image>
3139  <eventLine>i 1 0 0.01 9</eventLine>
3140  <latch>false</latch>
3141  <latched>false</latched>
3142 </bsbObject>
3143 <bsbObject version="2" type="BSBController">
3144  <objectName/>
3145  <x>100</x>
3146  <y>391</y>
3147  <width>15</width>
3148  <height>15</height>
3149  <uuid>{d233959c-c33d-45d1-a49a-789611797623}</uuid>
3150  <visible>true</visible>
3151  <midichan>0</midichan>
3152  <midicc>0</midicc>
3153  <objectName2>PHASERLED</objectName2>
3154  <xMin>0.00000000</xMin>
3155  <xMax>1.00000000</xMax>
3156  <yMin>0.00000000</yMin>
3157  <yMax>1.00000000</yMax>
3158  <xValue>0.00000000</xValue>
3159  <yValue>0.00000000</yValue>
3160  <type>fill</type>
3161  <pointsize>1</pointsize>
3162  <fadeSpeed>0.00000000</fadeSpeed>
3163  <mouseControl act="press">jump</mouseControl>
3164  <color>
3165   <r>255</r>
3166   <g>0</g>
3167   <b>0</b>
3168  </color>
3169  <randomizable mode="both" group="0">false</randomizable>
3170  <bgcolor>
3171   <r>0</r>
3172   <g>0</g>
3173   <b>0</b>
3174  </bgcolor>
3175 </bsbObject>
3176 <bsbObject version="2" type="BSBKnob">
3177  <objectName>PHASER_Rate</objectName>
3178  <x>7</x>
3179  <y>445</y>
3180  <width>50</width>
3181  <height>50</height>
3182  <uuid>{4258aaf0-73c4-47c2-8c36-9cf7fe58392f}</uuid>
3183  <visible>true</visible>
3184  <midichan>0</midichan>
3185  <midicc>0</midicc>
3186  <minimum>0.00000000</minimum>
3187  <maximum>1.00000000</maximum>
3188  <value>0.33000000</value>
3189  <mode>lin</mode>
3190  <mouseControl act="jump">continuous</mouseControl>
3191  <resolution>0.01000000</resolution>
3192  <randomizable group="0">false</randomizable>
3193 </bsbObject>
3194 <bsbObject version="2" type="BSBKnob">
3195  <objectName>PHASER_Depth</objectName>
3196  <x>58</x>
3197  <y>445</y>
3198  <width>50</width>
3199  <height>50</height>
3200  <uuid>{f78f8546-82d0-4143-9420-ba46731ae18e}</uuid>
3201  <visible>true</visible>
3202  <midichan>0</midichan>
3203  <midicc>0</midicc>
3204  <minimum>0.00000000</minimum>
3205  <maximum>8.00000000</maximum>
3206  <value>5.52000000</value>
3207  <mode>lin</mode>
3208  <mouseControl act="jump">continuous</mouseControl>
3209  <resolution>0.01000000</resolution>
3210  <randomizable group="0">false</randomizable>
3211 </bsbObject>
3212 <bsbObject version="2" type="BSBKnob">
3213  <objectName>PHASER_Freq</objectName>
3214  <x>109</x>
3215  <y>445</y>
3216  <width>50</width>
3217  <height>50</height>
3218  <uuid>{df02ebf9-dfe5-4e2e-a862-3c4207e17027}</uuid>
3219  <visible>true</visible>
3220  <midichan>0</midichan>
3221  <midicc>0</midicc>
3222  <minimum>6.00000000</minimum>
3223  <maximum>11.00000000</maximum>
3224  <value>6.90000000</value>
3225  <mode>lin</mode>
3226  <mouseControl act="jump">continuous</mouseControl>
3227  <resolution>0.01000000</resolution>
3228  <randomizable group="0">false</randomizable>
3229 </bsbObject>
3230 <bsbObject version="2" type="BSBKnob">
3231  <objectName>PHASER_FBack</objectName>
3232  <x>160</x>
3233  <y>445</y>
3234  <width>50</width>
3235  <height>50</height>
3236  <uuid>{c2289a26-6049-4641-b6f0-67c40ed69ed9}</uuid>
3237  <visible>true</visible>
3238  <midichan>0</midichan>
3239  <midicc>0</midicc>
3240  <minimum>0.00000000</minimum>
3241  <maximum>0.90000000</maximum>
3242  <value>0.70200000</value>
3243  <mode>lin</mode>
3244  <mouseControl act="jump">continuous</mouseControl>
3245  <resolution>0.01000000</resolution>
3246  <randomizable group="0">false</randomizable>
3247 </bsbObject>
3248 <bsbObject version="2" type="BSBLabel">
3249  <objectName/>
3250  <x>7</x>
3251  <y>494</y>
3252  <width>50</width>
3253  <height>25</height>
3254  <uuid>{c64162ab-f700-4d5a-aadf-9c439e142482}</uuid>
3255  <visible>true</visible>
3256  <midichan>0</midichan>
3257  <midicc>0</midicc>
3258  <label>Rate</label>
3259  <alignment>center</alignment>
3260  <font>Liberation Sans</font>
3261  <fontsize>10</fontsize>
3262  <precision>3</precision>
3263  <color>
3264   <r>0</r>
3265   <g>0</g>
3266   <b>0</b>
3267  </color>
3268  <bgcolor mode="nobackground">
3269   <r>255</r>
3270   <g>255</g>
3271   <b>255</b>
3272  </bgcolor>
3273  <bordermode>noborder</bordermode>
3274  <borderradius>1</borderradius>
3275  <borderwidth>1</borderwidth>
3276 </bsbObject>
3277 <bsbObject version="2" type="BSBLabel">
3278  <objectName/>
3279  <x>58</x>
3280  <y>494</y>
3281  <width>50</width>
3282  <height>25</height>
3283  <uuid>{ec98f825-7cd0-433e-b227-16d28ac9fcf9}</uuid>
3284  <visible>true</visible>
3285  <midichan>0</midichan>
3286  <midicc>0</midicc>
3287  <label>Depth</label>
3288  <alignment>center</alignment>
3289  <font>Liberation Sans</font>
3290  <fontsize>10</fontsize>
3291  <precision>3</precision>
3292  <color>
3293   <r>0</r>
3294   <g>0</g>
3295   <b>0</b>
3296  </color>
3297  <bgcolor mode="nobackground">
3298   <r>255</r>
3299   <g>255</g>
3300   <b>255</b>
3301  </bgcolor>
3302  <bordermode>noborder</bordermode>
3303  <borderradius>1</borderradius>
3304  <borderwidth>1</borderwidth>
3305 </bsbObject>
3306 <bsbObject version="2" type="BSBLabel">
3307  <objectName/>
3308  <x>109</x>
3309  <y>494</y>
3310  <width>50</width>
3311  <height>25</height>
3312  <uuid>{12862cf1-dc3d-43c1-b9d1-499e6917d815}</uuid>
3313  <visible>true</visible>
3314  <midichan>0</midichan>
3315  <midicc>0</midicc>
3316  <label>Freq</label>
3317  <alignment>center</alignment>
3318  <font>Liberation Sans</font>
3319  <fontsize>10</fontsize>
3320  <precision>3</precision>
3321  <color>
3322   <r>0</r>
3323   <g>0</g>
3324   <b>0</b>
3325  </color>
3326  <bgcolor mode="nobackground">
3327   <r>255</r>
3328   <g>255</g>
3329   <b>255</b>
3330  </bgcolor>
3331  <bordermode>noborder</bordermode>
3332  <borderradius>1</borderradius>
3333  <borderwidth>1</borderwidth>
3334 </bsbObject>
3335 <bsbObject version="2" type="BSBLabel">
3336  <objectName/>
3337  <x>160</x>
3338  <y>494</y>
3339  <width>50</width>
3340  <height>50</height>
3341  <uuid>{f15ac32b-f98c-46cd-afe2-58f28f1a98a6}</uuid>
3342  <visible>true</visible>
3343  <midichan>0</midichan>
3344  <midicc>0</midicc>
3345  <label>Feed
3346Back</label>
3347  <alignment>center</alignment>
3348  <font>Liberation Sans</font>
3349  <fontsize>10</fontsize>
3350  <precision>3</precision>
3351  <color>
3352   <r>0</r>
3353   <g>0</g>
3354   <b>0</b>
3355  </color>
3356  <bgcolor mode="nobackground">
3357   <r>255</r>
3358   <g>255</g>
3359   <b>255</b>
3360  </bgcolor>
3361  <bordermode>noborder</bordermode>
3362  <borderradius>1</borderradius>
3363  <borderwidth>1</borderwidth>
3364 </bsbObject>
3365 <bsbObject version="2" type="BSBLabel">
3366  <objectName/>
3367  <x>214</x>
3368  <y>383</y>
3369  <width>212</width>
3370  <height>330</height>
3371  <uuid>{1e6378b0-b6c4-400e-be59-af3411fd0179}</uuid>
3372  <visible>true</visible>
3373  <midichan>0</midichan>
3374  <midicc>0</midicc>
3375  <label/>
3376  <alignment>center</alignment>
3377  <font>Liberation Sans</font>
3378  <fontsize>18</fontsize>
3379  <precision>3</precision>
3380  <color>
3381   <r>0</r>
3382   <g>0</g>
3383   <b>0</b>
3384  </color>
3385  <bgcolor mode="background">
3386   <r>85</r>
3387   <g>0</g>
3388   <b>0</b>
3389  </bgcolor>
3390  <bordermode>border</bordermode>
3391  <borderradius>20</borderradius>
3392  <borderwidth>3</borderwidth>
3393 </bsbObject>
3394 <bsbObject version="2" type="BSBKnob">
3395  <objectName>LoFi_Bits</objectName>
3396  <x>241</x>
3397  <y>436</y>
3398  <width>70</width>
3399  <height>70</height>
3400  <uuid>{8ae8131e-f7a7-4f52-953e-84e7c5e6ed55}</uuid>
3401  <visible>true</visible>
3402  <midichan>0</midichan>
3403  <midicc>0</midicc>
3404  <minimum>0.00000000</minimum>
3405  <maximum>1.00000000</maximum>
3406  <value>0.32000000</value>
3407  <mode>lin</mode>
3408  <mouseControl act="jump">continuous</mouseControl>
3409  <resolution>0.01000000</resolution>
3410  <randomizable group="0">false</randomizable>
3411 </bsbObject>
3412 <bsbObject version="2" type="BSBLabel">
3413  <objectName/>
3414  <x>216</x>
3415  <y>534</y>
3416  <width>210</width>
3417  <height>44</height>
3418  <uuid>{044b5bd2-9dbc-408c-a096-49a93ff51682}</uuid>
3419  <visible>true</visible>
3420  <midichan>0</midichan>
3421  <midicc>0</midicc>
3422  <label>LoFi</label>
3423  <alignment>center</alignment>
3424  <font>Liberation Sans</font>
3425  <fontsize>26</fontsize>
3426  <precision>3</precision>
3427  <color>
3428   <r>0</r>
3429   <g>0</g>
3430   <b>0</b>
3431  </color>
3432  <bgcolor mode="nobackground">
3433   <r>255</r>
3434   <g>255</g>
3435   <b>255</b>
3436  </bgcolor>
3437  <bordermode>noborder</bordermode>
3438  <borderradius>1</borderradius>
3439  <borderwidth>1</borderwidth>
3440 </bsbObject>
3441 <bsbObject version="2" type="BSBLabel">
3442  <objectName/>
3443  <x>241</x>
3444  <y>506</y>
3445  <width>70</width>
3446  <height>25</height>
3447  <uuid>{b3cb0fe9-8c48-4b60-8d62-3cb4d44f7bbe}</uuid>
3448  <visible>true</visible>
3449  <midichan>0</midichan>
3450  <midicc>0</midicc>
3451  <label>Bits</label>
3452  <alignment>center</alignment>
3453  <font>Liberation Sans</font>
3454  <fontsize>10</fontsize>
3455  <precision>3</precision>
3456  <color>
3457   <r>0</r>
3458   <g>0</g>
3459   <b>0</b>
3460  </color>
3461  <bgcolor mode="nobackground">
3462   <r>255</r>
3463   <g>255</g>
3464   <b>255</b>
3465  </bgcolor>
3466  <bordermode>noborder</bordermode>
3467  <borderradius>1</borderradius>
3468  <borderwidth>1</borderwidth>
3469 </bsbObject>
3470 <bsbObject version="2" type="BSBButton">
3471  <objectName/>
3472  <x>230</x>
3473  <y>585</y>
3474  <width>180</width>
3475  <height>110</height>
3476  <uuid>{9ebff03f-b04f-43c6-88a6-a45e9913bc47}</uuid>
3477  <visible>true</visible>
3478  <midichan>0</midichan>
3479  <midicc>0</midicc>
3480  <type>event</type>
3481  <pressedValue>1.00000000</pressedValue>
3482  <stringvalue/>
3483  <text/>
3484  <image>/</image>
3485  <eventLine>i 1 0 0.01 10</eventLine>
3486  <latch>false</latch>
3487  <latched>false</latched>
3488 </bsbObject>
3489 <bsbObject version="2" type="BSBController">
3490  <objectName/>
3491  <x>312</x>
3492  <y>391</y>
3493  <width>15</width>
3494  <height>15</height>
3495  <uuid>{a67dcd71-e496-4989-be6b-e59a636fbd56}</uuid>
3496  <visible>true</visible>
3497  <midichan>0</midichan>
3498  <midicc>0</midicc>
3499  <objectName2>LoFiLED</objectName2>
3500  <xMin>0.00000000</xMin>
3501  <xMax>1.00000000</xMax>
3502  <yMin>0.00000000</yMin>
3503  <yMax>1.00000000</yMax>
3504  <xValue>0.00000000</xValue>
3505  <yValue>0.00000000</yValue>
3506  <type>fill</type>
3507  <pointsize>1</pointsize>
3508  <fadeSpeed>0.00000000</fadeSpeed>
3509  <mouseControl act="press">jump</mouseControl>
3510  <color>
3511   <r>255</r>
3512   <g>0</g>
3513   <b>0</b>
3514  </color>
3515  <randomizable mode="both" group="0">false</randomizable>
3516  <bgcolor>
3517   <r>0</r>
3518   <g>0</g>
3519   <b>0</b>
3520  </bgcolor>
3521 </bsbObject>
3522 <bsbObject version="2" type="BSBKnob">
3523  <objectName>LoFi_Fold</objectName>
3524  <x>323</x>
3525  <y>436</y>
3526  <width>70</width>
3527  <height>70</height>
3528  <uuid>{884367de-15a4-4858-9cac-4cf7c87f3620}</uuid>
3529  <visible>true</visible>
3530  <midichan>0</midichan>
3531  <midicc>0</midicc>
3532  <minimum>0.00000000</minimum>
3533  <maximum>1.00000000</maximum>
3534  <value>0.73000000</value>
3535  <mode>lin</mode>
3536  <mouseControl act="jump">continuous</mouseControl>
3537  <resolution>0.01000000</resolution>
3538  <randomizable group="0">false</randomizable>
3539 </bsbObject>
3540 <bsbObject version="2" type="BSBLabel">
3541  <objectName/>
3542  <x>323</x>
3543  <y>506</y>
3544  <width>70</width>
3545  <height>25</height>
3546  <uuid>{dd7a7ba0-1dbb-4822-9075-139e1c6b2155}</uuid>
3547  <visible>true</visible>
3548  <midichan>0</midichan>
3549  <midicc>0</midicc>
3550  <label>Fold</label>
3551  <alignment>center</alignment>
3552  <font>Liberation Sans</font>
3553  <fontsize>10</fontsize>
3554  <precision>3</precision>
3555  <color>
3556   <r>0</r>
3557   <g>0</g>
3558   <b>0</b>
3559  </color>
3560  <bgcolor mode="nobackground">
3561   <r>255</r>
3562   <g>255</g>
3563   <b>255</b>
3564  </bgcolor>
3565  <bordermode>noborder</bordermode>
3566  <borderradius>1</borderradius>
3567  <borderwidth>1</borderwidth>
3568 </bsbObject>
3569 <bsbObject version="2" type="BSBLabel">
3570  <objectName/>
3571  <x>426</x>
3572  <y>383</y>
3573  <width>212</width>
3574  <height>330</height>
3575  <uuid>{1b57d097-e4e2-4cbb-87c6-add574513b22}</uuid>
3576  <visible>true</visible>
3577  <midichan>0</midichan>
3578  <midicc>0</midicc>
3579  <label/>
3580  <alignment>center</alignment>
3581  <font>Liberation Sans</font>
3582  <fontsize>18</fontsize>
3583  <precision>3</precision>
3584  <color>
3585   <r>0</r>
3586   <g>0</g>
3587   <b>0</b>
3588  </color>
3589  <bgcolor mode="background">
3590   <r>75</r>
3591   <g>0</g>
3592   <b>115</b>
3593  </bgcolor>
3594  <bordermode>border</bordermode>
3595  <borderradius>20</borderradius>
3596  <borderwidth>3</borderwidth>
3597 </bsbObject>
3598 <bsbObject version="2" type="BSBLabel">
3599  <objectName/>
3600  <x>428</x>
3601  <y>534</y>
3602  <width>210</width>
3603  <height>44</height>
3604  <uuid>{933b2e5e-54de-45dc-ada5-4a00a65c5430}</uuid>
3605  <visible>true</visible>
3606  <midichan>0</midichan>
3607  <midicc>0</midicc>
3608  <label>FILTER</label>
3609  <alignment>center</alignment>
3610  <font>Liberation Sans</font>
3611  <fontsize>26</fontsize>
3612  <precision>3</precision>
3613  <color>
3614   <r>0</r>
3615   <g>0</g>
3616   <b>0</b>
3617  </color>
3618  <bgcolor mode="nobackground">
3619   <r>255</r>
3620   <g>255</g>
3621   <b>255</b>
3622  </bgcolor>
3623  <bordermode>noborder</bordermode>
3624  <borderradius>1</borderradius>
3625  <borderwidth>1</borderwidth>
3626 </bsbObject>
3627 <bsbObject version="2" type="BSBButton">
3628  <objectName/>
3629  <x>442</x>
3630  <y>585</y>
3631  <width>180</width>
3632  <height>110</height>
3633  <uuid>{727f5453-4933-4f5d-af16-441c45b03f24}</uuid>
3634  <visible>true</visible>
3635  <midichan>0</midichan>
3636  <midicc>0</midicc>
3637  <type>event</type>
3638  <pressedValue>1.00000000</pressedValue>
3639  <stringvalue/>
3640  <text/>
3641  <image>/</image>
3642  <eventLine>i 1 0 0.01 11</eventLine>
3643  <latch>false</latch>
3644  <latched>false</latched>
3645 </bsbObject>
3646 <bsbObject version="2" type="BSBController">
3647  <objectName/>
3648  <x>524</x>
3649  <y>391</y>
3650  <width>15</width>
3651  <height>15</height>
3652  <uuid>{c25a0992-ab26-410b-ba1b-ffc3a86db31e}</uuid>
3653  <visible>true</visible>
3654  <midichan>0</midichan>
3655  <midicc>0</midicc>
3656  <objectName2>FILTERLED</objectName2>
3657  <xMin>0.00000000</xMin>
3658  <xMax>1.00000000</xMax>
3659  <yMin>0.00000000</yMin>
3660  <yMax>1.00000000</yMax>
3661  <xValue>0.00000000</xValue>
3662  <yValue>0.00000000</yValue>
3663  <type>fill</type>
3664  <pointsize>1</pointsize>
3665  <fadeSpeed>0.00000000</fadeSpeed>
3666  <mouseControl act="press">jump</mouseControl>
3667  <color>
3668   <r>255</r>
3669   <g>0</g>
3670   <b>0</b>
3671  </color>
3672  <randomizable mode="both" group="0">false</randomizable>
3673  <bgcolor>
3674   <r>0</r>
3675   <g>0</g>
3676   <b>0</b>
3677  </bgcolor>
3678 </bsbObject>
3679 <bsbObject version="2" type="BSBKnob">
3680  <objectName>FILTER_HPF</objectName>
3681  <x>439</x>
3682  <y>443</y>
3683  <width>60</width>
3684  <height>60</height>
3685  <uuid>{682c10f9-59bd-4eb7-bcbb-ab2de3bfa83c}</uuid>
3686  <visible>true</visible>
3687  <midichan>0</midichan>
3688  <midicc>0</midicc>
3689  <minimum>0.00000000</minimum>
3690  <maximum>1.00000000</maximum>
3691  <value>0.49000000</value>
3692  <mode>lin</mode>
3693  <mouseControl act="jump">continuous</mouseControl>
3694  <resolution>0.01000000</resolution>
3695  <randomizable group="0">false</randomizable>
3696 </bsbObject>
3697 <bsbObject version="2" type="BSBLabel">
3698  <objectName/>
3699  <x>439</x>
3700  <y>505</y>
3701  <width>60</width>
3702  <height>25</height>
3703  <uuid>{25412d24-3dbc-4833-a1f4-942bccbbdb96}</uuid>
3704  <visible>true</visible>
3705  <midichan>0</midichan>
3706  <midicc>0</midicc>
3707  <label>HPF</label>
3708  <alignment>center</alignment>
3709  <font>Liberation Sans</font>
3710  <fontsize>10</fontsize>
3711  <precision>3</precision>
3712  <color>
3713   <r>0</r>
3714   <g>0</g>
3715   <b>0</b>
3716  </color>
3717  <bgcolor mode="nobackground">
3718   <r>255</r>
3719   <g>255</g>
3720   <b>255</b>
3721  </bgcolor>
3722  <bordermode>noborder</bordermode>
3723  <borderradius>1</borderradius>
3724  <borderwidth>1</borderwidth>
3725 </bsbObject>
3726 <bsbObject version="2" type="BSBKnob">
3727  <objectName>FILTER_LPF</objectName>
3728  <x>502</x>
3729  <y>443</y>
3730  <width>60</width>
3731  <height>60</height>
3732  <uuid>{16e02472-35a9-4965-96d0-30acf6931bc2}</uuid>
3733  <visible>true</visible>
3734  <midichan>0</midichan>
3735  <midicc>0</midicc>
3736  <minimum>0.00000000</minimum>
3737  <maximum>1.00000000</maximum>
3738  <value>0.69000000</value>
3739  <mode>lin</mode>
3740  <mouseControl act="jump">continuous</mouseControl>
3741  <resolution>0.01000000</resolution>
3742  <randomizable group="0">false</randomizable>
3743 </bsbObject>
3744 <bsbObject version="2" type="BSBLabel">
3745  <objectName/>
3746  <x>502</x>
3747  <y>505</y>
3748  <width>60</width>
3749  <height>25</height>
3750  <uuid>{b67abcfd-2dc9-49f6-8954-c0b9b8602a4f}</uuid>
3751  <visible>true</visible>
3752  <midichan>0</midichan>
3753  <midicc>0</midicc>
3754  <label>LPF</label>
3755  <alignment>center</alignment>
3756  <font>Liberation Sans</font>
3757  <fontsize>10</fontsize>
3758  <precision>3</precision>
3759  <color>
3760   <r>0</r>
3761   <g>0</g>
3762   <b>0</b>
3763  </color>
3764  <bgcolor mode="nobackground">
3765   <r>255</r>
3766   <g>255</g>
3767   <b>255</b>
3768  </bgcolor>
3769  <bordermode>noborder</bordermode>
3770  <borderradius>1</borderradius>
3771  <borderwidth>1</borderwidth>
3772 </bsbObject>
3773 <bsbObject version="2" type="BSBKnob">
3774  <objectName>FILTER_Gain</objectName>
3775  <x>565</x>
3776  <y>443</y>
3777  <width>60</width>
3778  <height>60</height>
3779  <uuid>{593db4a5-0420-4dd2-a782-9ffa2650ed4a}</uuid>
3780  <visible>true</visible>
3781  <midichan>0</midichan>
3782  <midicc>0</midicc>
3783  <minimum>0.00000000</minimum>
3784  <maximum>1.00000000</maximum>
3785  <value>0.46000000</value>
3786  <mode>lin</mode>
3787  <mouseControl act="jump">continuous</mouseControl>
3788  <resolution>0.01000000</resolution>
3789  <randomizable group="0">false</randomizable>
3790 </bsbObject>
3791 <bsbObject version="2" type="BSBLabel">
3792  <objectName/>
3793  <x>565</x>
3794  <y>505</y>
3795  <width>60</width>
3796  <height>25</height>
3797  <uuid>{3080d505-9c73-44b7-9b58-f5b015823cbe}</uuid>
3798  <visible>true</visible>
3799  <midichan>0</midichan>
3800  <midicc>0</midicc>
3801  <label>Gain</label>
3802  <alignment>center</alignment>
3803  <font>Liberation Sans</font>
3804  <fontsize>10</fontsize>
3805  <precision>3</precision>
3806  <color>
3807   <r>0</r>
3808   <g>0</g>
3809   <b>0</b>
3810  </color>
3811  <bgcolor mode="nobackground">
3812   <r>255</r>
3813   <g>255</g>
3814   <b>255</b>
3815  </bgcolor>
3816  <bordermode>noborder</bordermode>
3817  <borderradius>1</borderradius>
3818  <borderwidth>1</borderwidth>
3819 </bsbObject>
3820 <bsbObject version="2" type="BSBLabel">
3821  <objectName/>
3822  <x>638</x>
3823  <y>383</y>
3824  <width>212</width>
3825  <height>330</height>
3826  <uuid>{c996df7a-e048-4a88-94e1-33bb1b18c3ad}</uuid>
3827  <visible>true</visible>
3828  <midichan>0</midichan>
3829  <midicc>0</midicc>
3830  <label/>
3831  <alignment>center</alignment>
3832  <font>Liberation Sans</font>
3833  <fontsize>18</fontsize>
3834  <precision>3</precision>
3835  <color>
3836   <r>0</r>
3837   <g>0</g>
3838   <b>0</b>
3839  </color>
3840  <bgcolor mode="background">
3841   <r>255</r>
3842   <g>85</g>
3843   <b>255</b>
3844  </bgcolor>
3845  <bordermode>border</bordermode>
3846  <borderradius>20</borderradius>
3847  <borderwidth>3</borderwidth>
3848 </bsbObject>
3849 <bsbObject version="2" type="BSBLabel">
3850  <objectName/>
3851  <x>640</x>
3852  <y>521</y>
3853  <width>210</width>
3854  <height>70</height>
3855  <uuid>{8ddd9122-aee3-470a-be23-98138b3d7f1a}</uuid>
3856  <visible>true</visible>
3857  <midichan>0</midichan>
3858  <midicc>0</midicc>
3859  <label>AUTO PAN
3860TREMOLO</label>
3861  <alignment>center</alignment>
3862  <font>Liberation Sans</font>
3863  <fontsize>26</fontsize>
3864  <precision>3</precision>
3865  <color>
3866   <r>0</r>
3867   <g>0</g>
3868   <b>0</b>
3869  </color>
3870  <bgcolor mode="nobackground">
3871   <r>255</r>
3872   <g>255</g>
3873   <b>255</b>
3874  </bgcolor>
3875  <bordermode>noborder</bordermode>
3876  <borderradius>1</borderradius>
3877  <borderwidth>1</borderwidth>
3878 </bsbObject>
3879 <bsbObject version="2" type="BSBButton">
3880  <objectName/>
3881  <x>654</x>
3882  <y>585</y>
3883  <width>180</width>
3884  <height>110</height>
3885  <uuid>{428dbeda-e94a-4e04-871a-8a507c131281}</uuid>
3886  <visible>true</visible>
3887  <midichan>0</midichan>
3888  <midicc>0</midicc>
3889  <type>event</type>
3890  <pressedValue>1.00000000</pressedValue>
3891  <stringvalue/>
3892  <text/>
3893  <image>/</image>
3894  <eventLine>i 1 0 0.01 12</eventLine>
3895  <latch>false</latch>
3896  <latched>false</latched>
3897 </bsbObject>
3898 <bsbObject version="2" type="BSBController">
3899  <objectName/>
3900  <x>736</x>
3901  <y>391</y>
3902  <width>15</width>
3903  <height>15</height>
3904  <uuid>{88fb1d3f-7e41-4f52-9bce-4c24c3b46f5a}</uuid>
3905  <visible>true</visible>
3906  <midichan>0</midichan>
3907  <midicc>0</midicc>
3908  <objectName2>PANTREMLED</objectName2>
3909  <xMin>0.00000000</xMin>
3910  <xMax>1.00000000</xMax>
3911  <yMin>0.00000000</yMin>
3912  <yMax>1.00000000</yMax>
3913  <xValue>0.00000000</xValue>
3914  <yValue>0.00000000</yValue>
3915  <type>fill</type>
3916  <pointsize>1</pointsize>
3917  <fadeSpeed>0.00000000</fadeSpeed>
3918  <mouseControl act="press">jump</mouseControl>
3919  <color>
3920   <r>255</r>
3921   <g>0</g>
3922   <b>0</b>
3923  </color>
3924  <randomizable mode="both" group="0">false</randomizable>
3925  <bgcolor>
3926   <r>0</r>
3927   <g>0</g>
3928   <b>0</b>
3929  </bgcolor>
3930 </bsbObject>
3931 <bsbObject version="2" type="BSBKnob">
3932  <objectName>PANTREM_Rate</objectName>
3933  <x>643</x>
3934  <y>445</y>
3935  <width>50</width>
3936  <height>50</height>
3937  <uuid>{de8474ad-464e-46d1-a844-2eddf3515f9b}</uuid>
3938  <visible>true</visible>
3939  <midichan>0</midichan>
3940  <midicc>0</midicc>
3941  <minimum>0.00000000</minimum>
3942  <maximum>1.00000000</maximum>
3943  <value>0.10000000</value>
3944  <mode>lin</mode>
3945  <mouseControl act="jump">continuous</mouseControl>
3946  <resolution>0.01000000</resolution>
3947  <randomizable group="0">false</randomizable>
3948 </bsbObject>
3949 <bsbObject version="2" type="BSBKnob">
3950  <objectName>PANTREM_Depth</objectName>
3951  <x>694</x>
3952  <y>445</y>
3953  <width>50</width>
3954  <height>50</height>
3955  <uuid>{1c738d41-2bb5-4c32-9982-676563059b34}</uuid>
3956  <visible>true</visible>
3957  <midichan>0</midichan>
3958  <midicc>0</midicc>
3959  <minimum>0.00000000</minimum>
3960  <maximum>1.00000000</maximum>
3961  <value>0.82000000</value>
3962  <mode>lin</mode>
3963  <mouseControl act="jump">continuous</mouseControl>
3964  <resolution>0.01000000</resolution>
3965  <randomizable group="0">false</randomizable>
3966 </bsbObject>
3967 <bsbObject version="2" type="BSBLabel">
3968  <objectName/>
3969  <x>643</x>
3970  <y>494</y>
3971  <width>50</width>
3972  <height>25</height>
3973  <uuid>{29a9f349-64fc-4237-91f8-10a6bf32c93e}</uuid>
3974  <visible>true</visible>
3975  <midichan>0</midichan>
3976  <midicc>0</midicc>
3977  <label>Rate</label>
3978  <alignment>center</alignment>
3979  <font>Liberation Sans</font>
3980  <fontsize>10</fontsize>
3981  <precision>3</precision>
3982  <color>
3983   <r>0</r>
3984   <g>0</g>
3985   <b>0</b>
3986  </color>
3987  <bgcolor mode="nobackground">
3988   <r>255</r>
3989   <g>255</g>
3990   <b>255</b>
3991  </bgcolor>
3992  <bordermode>noborder</bordermode>
3993  <borderradius>1</borderradius>
3994  <borderwidth>1</borderwidth>
3995 </bsbObject>
3996 <bsbObject version="2" type="BSBLabel">
3997  <objectName/>
3998  <x>694</x>
3999  <y>494</y>
4000  <width>50</width>
4001  <height>25</height>
4002  <uuid>{364da89a-a17f-4d85-9a72-3fc37eb996d1}</uuid>
4003  <visible>true</visible>
4004  <midichan>0</midichan>
4005  <midicc>0</midicc>
4006  <label>Depth</label>
4007  <alignment>center</alignment>
4008  <font>Liberation Sans</font>
4009  <fontsize>10</fontsize>
4010  <precision>3</precision>
4011  <color>
4012   <r>0</r>
4013   <g>0</g>
4014   <b>0</b>
4015  </color>
4016  <bgcolor mode="nobackground">
4017   <r>255</r>
4018   <g>255</g>
4019   <b>255</b>
4020  </bgcolor>
4021  <bordermode>noborder</bordermode>
4022  <borderradius>1</borderradius>
4023  <borderwidth>1</borderwidth>
4024 </bsbObject>
4025 <bsbObject version="2" type="BSBDropdown">
4026  <objectName>PAN_TREM</objectName>
4027  <x>766</x>
4028  <y>445</y>
4029  <width>70</width>
4030  <height>24</height>
4031  <uuid>{9bb8556e-af6a-4124-be71-7a8e6ff9d955}</uuid>
4032  <visible>true</visible>
4033  <midichan>0</midichan>
4034  <midicc>0</midicc>
4035  <bsbDropdownItemList>
4036   <bsbDropdownItem>
4037    <name>Pan</name>
4038    <value>0</value>
4039    <stringvalue/>
4040   </bsbDropdownItem>
4041   <bsbDropdownItem>
4042    <name>Trem</name>
4043    <value>1</value>
4044    <stringvalue/>
4045   </bsbDropdownItem>
4046  </bsbDropdownItemList>
4047  <selectedIndex>0</selectedIndex>
4048  <randomizable group="0">false</randomizable>
4049 </bsbObject>
4050 <bsbObject version="2" type="BSBDropdown">
4051  <objectName>PANTREM_Wave</objectName>
4052  <x>766</x>
4053  <y>474</y>
4054  <width>70</width>
4055  <height>24</height>
4056  <uuid>{e3a19424-1653-4c6e-b623-8cd752000714}</uuid>
4057  <visible>true</visible>
4058  <midichan>0</midichan>
4059  <midicc>0</midicc>
4060  <bsbDropdownItemList>
4061   <bsbDropdownItem>
4062    <name>Sine</name>
4063    <value>0</value>
4064    <stringvalue/>
4065   </bsbDropdownItem>
4066   <bsbDropdownItem>
4067    <name>Tri</name>
4068    <value>1</value>
4069    <stringvalue/>
4070   </bsbDropdownItem>
4071   <bsbDropdownItem>
4072    <name>Sq</name>
4073    <value>2</value>
4074    <stringvalue/>
4075   </bsbDropdownItem>
4076  </bsbDropdownItemList>
4077  <selectedIndex>0</selectedIndex>
4078  <randomizable group="0">false</randomizable>
4079 </bsbObject>
4080 <bsbObject version="2" type="BSBLabel">
4081  <objectName/>
4082  <x>850</x>
4083  <y>383</y>
4084  <width>212</width>
4085  <height>330</height>
4086  <uuid>{feb0a2fa-7d3e-4f25-9c14-b83cc56396eb}</uuid>
4087  <visible>true</visible>
4088  <midichan>0</midichan>
4089  <midicc>0</midicc>
4090  <label/>
4091  <alignment>center</alignment>
4092  <font>Liberation Sans</font>
4093  <fontsize>18</fontsize>
4094  <precision>3</precision>
4095  <color>
4096   <r>0</r>
4097   <g>0</g>
4098   <b>0</b>
4099  </color>
4100  <bgcolor mode="background">
4101   <r>0</r>
4102   <g>85</g>
4103   <b>255</b>
4104  </bgcolor>
4105  <bordermode>border</bordermode>
4106  <borderradius>20</borderradius>
4107  <borderwidth>3</borderwidth>
4108 </bsbObject>
4109 <bsbObject version="2" type="BSBLabel">
4110  <objectName/>
4111  <x>852</x>
4112  <y>521</y>
4113  <width>210</width>
4114  <height>70</height>
4115  <uuid>{89cdefa8-53cd-4438-bd26-70e587cdae48}</uuid>
4116  <visible>true</visible>
4117  <midichan>0</midichan>
4118  <midicc>0</midicc>
4119  <label>STEREO
4120CHORUS</label>
4121  <alignment>center</alignment>
4122  <font>Liberation Sans</font>
4123  <fontsize>26</fontsize>
4124  <precision>3</precision>
4125  <color>
4126   <r>0</r>
4127   <g>0</g>
4128   <b>0</b>
4129  </color>
4130  <bgcolor mode="nobackground">
4131   <r>255</r>
4132   <g>255</g>
4133   <b>255</b>
4134  </bgcolor>
4135  <bordermode>noborder</bordermode>
4136  <borderradius>1</borderradius>
4137  <borderwidth>1</borderwidth>
4138 </bsbObject>
4139 <bsbObject version="2" type="BSBButton">
4140  <objectName/>
4141  <x>866</x>
4142  <y>585</y>
4143  <width>180</width>
4144  <height>110</height>
4145  <uuid>{16b14937-a0e5-45e8-85ef-925b7f504e75}</uuid>
4146  <visible>true</visible>
4147  <midichan>0</midichan>
4148  <midicc>0</midicc>
4149  <type>event</type>
4150  <pressedValue>1.00000000</pressedValue>
4151  <stringvalue/>
4152  <text/>
4153  <image>/</image>
4154  <eventLine>i 1 0 0.01 13</eventLine>
4155  <latch>false</latch>
4156  <latched>false</latched>
4157 </bsbObject>
4158 <bsbObject version="2" type="BSBController">
4159  <objectName/>
4160  <x>948</x>
4161  <y>391</y>
4162  <width>15</width>
4163  <height>15</height>
4164  <uuid>{d8b8fa64-d66b-460f-83ed-5583a2982f2c}</uuid>
4165  <visible>true</visible>
4166  <midichan>0</midichan>
4167  <midicc>0</midicc>
4168  <objectName2>CHORUSLED</objectName2>
4169  <xMin>0.00000000</xMin>
4170  <xMax>1.00000000</xMax>
4171  <yMin>0.00000000</yMin>
4172  <yMax>1.00000000</yMax>
4173  <xValue>0.00000000</xValue>
4174  <yValue>0.00000000</yValue>
4175  <type>fill</type>
4176  <pointsize>1</pointsize>
4177  <fadeSpeed>0.00000000</fadeSpeed>
4178  <mouseControl act="press">jump</mouseControl>
4179  <color>
4180   <r>255</r>
4181   <g>0</g>
4182   <b>0</b>
4183  </color>
4184  <randomizable mode="both" group="0">false</randomizable>
4185  <bgcolor>
4186   <r>0</r>
4187   <g>0</g>
4188   <b>0</b>
4189  </bgcolor>
4190 </bsbObject>
4191 <bsbObject version="2" type="BSBKnob">
4192  <objectName>CHORUS_Rate</objectName>
4193  <x>863</x>
4194  <y>443</y>
4195  <width>60</width>
4196  <height>60</height>
4197  <uuid>{df2e41ac-4c04-425a-82b0-19dda4473024}</uuid>
4198  <visible>true</visible>
4199  <midichan>0</midichan>
4200  <midicc>0</midicc>
4201  <minimum>0.00100000</minimum>
4202  <maximum>7.00000000</maximum>
4203  <value>2.59063000</value>
4204  <mode>lin</mode>
4205  <mouseControl act="jump">continuous</mouseControl>
4206  <resolution>0.01000000</resolution>
4207  <randomizable group="0">false</randomizable>
4208 </bsbObject>
4209 <bsbObject version="2" type="BSBLabel">
4210  <objectName/>
4211  <x>863</x>
4212  <y>505</y>
4213  <width>60</width>
4214  <height>25</height>
4215  <uuid>{1545654c-7315-44b7-90b7-1905fbf84090}</uuid>
4216  <visible>true</visible>
4217  <midichan>0</midichan>
4218  <midicc>0</midicc>
4219  <label>Rate</label>
4220  <alignment>center</alignment>
4221  <font>Liberation Sans</font>
4222  <fontsize>10</fontsize>
4223  <precision>3</precision>
4224  <color>
4225   <r>0</r>
4226   <g>0</g>
4227   <b>0</b>
4228  </color>
4229  <bgcolor mode="nobackground">
4230   <r>255</r>
4231   <g>255</g>
4232   <b>255</b>
4233  </bgcolor>
4234  <bordermode>noborder</bordermode>
4235  <borderradius>1</borderradius>
4236  <borderwidth>1</borderwidth>
4237 </bsbObject>
4238 <bsbObject version="2" type="BSBKnob">
4239  <objectName>CHORUS_Depth</objectName>
4240  <x>926</x>
4241  <y>443</y>
4242  <width>60</width>
4243  <height>60</height>
4244  <uuid>{c28daf42-a2c3-42e9-ba81-bcb3dc5d159f}</uuid>
4245  <visible>true</visible>
4246  <midichan>0</midichan>
4247  <midicc>0</midicc>
4248  <minimum>0.00000000</minimum>
4249  <maximum>10.00000000</maximum>
4250  <value>5.10000000</value>
4251  <mode>lin</mode>
4252  <mouseControl act="jump">continuous</mouseControl>
4253  <resolution>0.01000000</resolution>
4254  <randomizable group="0">false</randomizable>
4255 </bsbObject>
4256 <bsbObject version="2" type="BSBLabel">
4257  <objectName/>
4258  <x>926</x>
4259  <y>505</y>
4260  <width>60</width>
4261  <height>25</height>
4262  <uuid>{8a115549-47f3-4ec6-8d9b-333d3b0d74fb}</uuid>
4263  <visible>true</visible>
4264  <midichan>0</midichan>
4265  <midicc>0</midicc>
4266  <label>Depth</label>
4267  <alignment>center</alignment>
4268  <font>Liberation Sans</font>
4269  <fontsize>10</fontsize>
4270  <precision>3</precision>
4271  <color>
4272   <r>0</r>
4273   <g>0</g>
4274   <b>0</b>
4275  </color>
4276  <bgcolor mode="nobackground">
4277   <r>255</r>
4278   <g>255</g>
4279   <b>255</b>
4280  </bgcolor>
4281  <bordermode>noborder</bordermode>
4282  <borderradius>1</borderradius>
4283  <borderwidth>1</borderwidth>
4284 </bsbObject>
4285 <bsbObject version="2" type="BSBKnob">
4286  <objectName>CHORUS_Width</objectName>
4287  <x>989</x>
4288  <y>443</y>
4289  <width>60</width>
4290  <height>60</height>
4291  <uuid>{6b55a4e0-b94a-4625-9583-fb11cfb746cc}</uuid>
4292  <visible>true</visible>
4293  <midichan>0</midichan>
4294  <midicc>0</midicc>
4295  <minimum>0.00000000</minimum>
4296  <maximum>0.50000000</maximum>
4297  <value>0.31500000</value>
4298  <mode>lin</mode>
4299  <mouseControl act="jump">continuous</mouseControl>
4300  <resolution>0.01000000</resolution>
4301  <randomizable group="0">false</randomizable>
4302 </bsbObject>
4303 <bsbObject version="2" type="BSBLabel">
4304  <objectName/>
4305  <x>989</x>
4306  <y>505</y>
4307  <width>60</width>
4308  <height>25</height>
4309  <uuid>{418ae342-6f2d-42c3-a1b8-3bbe0bf439b4}</uuid>
4310  <visible>true</visible>
4311  <midichan>0</midichan>
4312  <midicc>0</midicc>
4313  <label>Width</label>
4314  <alignment>center</alignment>
4315  <font>Liberation Sans</font>
4316  <fontsize>10</fontsize>
4317  <precision>3</precision>
4318  <color>
4319   <r>0</r>
4320   <g>0</g>
4321   <b>0</b>
4322  </color>
4323  <bgcolor mode="nobackground">
4324   <r>255</r>
4325   <g>255</g>
4326   <b>255</b>
4327  </bgcolor>
4328  <bordermode>noborder</bordermode>
4329  <borderradius>1</borderradius>
4330  <borderwidth>1</borderwidth>
4331 </bsbObject>
4332 <bsbObject version="2" type="BSBLabel">
4333  <objectName/>
4334  <x>1062</x>
4335  <y>383</y>
4336  <width>212</width>
4337  <height>330</height>
4338  <uuid>{441c516e-bbc1-4a8d-bcc9-56ea24724d52}</uuid>
4339  <visible>true</visible>
4340  <midichan>0</midichan>
4341  <midicc>0</midicc>
4342  <label/>
4343  <alignment>center</alignment>
4344  <font>Liberation Sans</font>
4345  <fontsize>18</fontsize>
4346  <precision>3</precision>
4347  <color>
4348   <r>0</r>
4349   <g>0</g>
4350   <b>0</b>
4351  </color>
4352  <bgcolor mode="background">
4353   <r>0</r>
4354   <g>255</g>
4355   <b>0</b>
4356  </bgcolor>
4357  <bordermode>border</bordermode>
4358  <borderradius>20</borderradius>
4359  <borderwidth>3</borderwidth>
4360 </bsbObject>
4361 <bsbObject version="2" type="BSBLabel">
4362  <objectName/>
4363  <x>1064</x>
4364  <y>534</y>
4365  <width>210</width>
4366  <height>44</height>
4367  <uuid>{86303020-0eeb-4f26-b437-9a5a11cc13c1}</uuid>
4368  <visible>true</visible>
4369  <midichan>0</midichan>
4370  <midicc>0</midicc>
4371  <label>FLANGER</label>
4372  <alignment>center</alignment>
4373  <font>Liberation Sans</font>
4374  <fontsize>26</fontsize>
4375  <precision>3</precision>
4376  <color>
4377   <r>0</r>
4378   <g>0</g>
4379   <b>0</b>
4380  </color>
4381  <bgcolor mode="nobackground">
4382   <r>255</r>
4383   <g>255</g>
4384   <b>255</b>
4385  </bgcolor>
4386  <bordermode>noborder</bordermode>
4387  <borderradius>1</borderradius>
4388  <borderwidth>1</borderwidth>
4389 </bsbObject>
4390 <bsbObject version="2" type="BSBButton">
4391  <objectName/>
4392  <x>1078</x>
4393  <y>585</y>
4394  <width>180</width>
4395  <height>110</height>
4396  <uuid>{f737cfd5-c250-4e90-9682-5e6f85ad9297}</uuid>
4397  <visible>true</visible>
4398  <midichan>0</midichan>
4399  <midicc>0</midicc>
4400  <type>event</type>
4401  <pressedValue>1.00000000</pressedValue>
4402  <stringvalue/>
4403  <text/>
4404  <image>/</image>
4405  <eventLine>i 1 0 0.01 14</eventLine>
4406  <latch>false</latch>
4407  <latched>false</latched>
4408 </bsbObject>
4409 <bsbObject version="2" type="BSBController">
4410  <objectName/>
4411  <x>1160</x>
4412  <y>391</y>
4413  <width>15</width>
4414  <height>15</height>
4415  <uuid>{e28f60cb-4155-4275-af32-d7a4f6bb92e8}</uuid>
4416  <visible>true</visible>
4417  <midichan>0</midichan>
4418  <midicc>0</midicc>
4419  <objectName2>FLANGERLED</objectName2>
4420  <xMin>0.00000000</xMin>
4421  <xMax>1.00000000</xMax>
4422  <yMin>0.00000000</yMin>
4423  <yMax>1.00000000</yMax>
4424  <xValue>0.00000000</xValue>
4425  <yValue>0.00000000</yValue>
4426  <type>fill</type>
4427  <pointsize>1</pointsize>
4428  <fadeSpeed>0.00000000</fadeSpeed>
4429  <mouseControl act="press">jump</mouseControl>
4430  <color>
4431   <r>255</r>
4432   <g>0</g>
4433   <b>0</b>
4434  </color>
4435  <randomizable mode="both" group="0">false</randomizable>
4436  <bgcolor>
4437   <r>0</r>
4438   <g>0</g>
4439   <b>0</b>
4440  </bgcolor>
4441 </bsbObject>
4442 <bsbObject version="2" type="BSBKnob">
4443  <objectName>FLANGER_Rate</objectName>
4444  <x>1067</x>
4445  <y>445</y>
4446  <width>50</width>
4447  <height>50</height>
4448  <uuid>{6f5e3afd-f11f-40cd-8cc5-62939992cfc2}</uuid>
4449  <visible>true</visible>
4450  <midichan>0</midichan>
4451  <midicc>0</midicc>
4452  <minimum>0.00000000</minimum>
4453  <maximum>1.00000000</maximum>
4454  <value>0.52000000</value>
4455  <mode>lin</mode>
4456  <mouseControl act="jump">continuous</mouseControl>
4457  <resolution>0.01000000</resolution>
4458  <randomizable group="0">false</randomizable>
4459 </bsbObject>
4460 <bsbObject version="2" type="BSBKnob">
4461  <objectName>FLANGER_Depth</objectName>
4462  <x>1118</x>
4463  <y>445</y>
4464  <width>50</width>
4465  <height>50</height>
4466  <uuid>{21069229-2c93-4b38-bac9-6aef62da17b1}</uuid>
4467  <visible>true</visible>
4468  <midichan>0</midichan>
4469  <midicc>0</midicc>
4470  <minimum>0.00000000</minimum>
4471  <maximum>10.00000000</maximum>
4472  <value>7.70000000</value>
4473  <mode>lin</mode>
4474  <mouseControl act="jump">continuous</mouseControl>
4475  <resolution>0.01000000</resolution>
4476  <randomizable group="0">false</randomizable>
4477 </bsbObject>
4478 <bsbObject version="2" type="BSBKnob">
4479  <objectName>FLANGER_Delay</objectName>
4480  <x>1169</x>
4481  <y>445</y>
4482  <width>50</width>
4483  <height>50</height>
4484  <uuid>{56e5b5cd-6456-4f94-85bb-238907365d3a}</uuid>
4485  <visible>true</visible>
4486  <midichan>0</midichan>
4487  <midicc>0</midicc>
4488  <minimum>0.10000000</minimum>
4489  <maximum>10.00000000</maximum>
4490  <value>0.99100000</value>
4491  <mode>lin</mode>
4492  <mouseControl act="jump">continuous</mouseControl>
4493  <resolution>0.01000000</resolution>
4494  <randomizable group="0">false</randomizable>
4495 </bsbObject>
4496 <bsbObject version="2" type="BSBKnob">
4497  <objectName>FLANGER_FBack</objectName>
4498  <x>1220</x>
4499  <y>445</y>
4500  <width>50</width>
4501  <height>50</height>
4502  <uuid>{cc33e524-f2cd-47c5-bc1a-ed4cfd494461}</uuid>
4503  <visible>true</visible>
4504  <midichan>0</midichan>
4505  <midicc>0</midicc>
4506  <minimum>0.00000000</minimum>
4507  <maximum>0.99000000</maximum>
4508  <value>0.69300000</value>
4509  <mode>lin</mode>
4510  <mouseControl act="jump">continuous</mouseControl>
4511  <resolution>0.01000000</resolution>
4512  <randomizable group="0">false</randomizable>
4513 </bsbObject>
4514 <bsbObject version="2" type="BSBLabel">
4515  <objectName/>
4516  <x>1067</x>
4517  <y>494</y>
4518  <width>50</width>
4519  <height>25</height>
4520  <uuid>{9864632d-401c-4993-aa75-014379b8b424}</uuid>
4521  <visible>true</visible>
4522  <midichan>0</midichan>
4523  <midicc>0</midicc>
4524  <label>Rate</label>
4525  <alignment>center</alignment>
4526  <font>Liberation Sans</font>
4527  <fontsize>10</fontsize>
4528  <precision>3</precision>
4529  <color>
4530   <r>0</r>
4531   <g>0</g>
4532   <b>0</b>
4533  </color>
4534  <bgcolor mode="nobackground">
4535   <r>255</r>
4536   <g>255</g>
4537   <b>255</b>
4538  </bgcolor>
4539  <bordermode>noborder</bordermode>
4540  <borderradius>1</borderradius>
4541  <borderwidth>1</borderwidth>
4542 </bsbObject>
4543 <bsbObject version="2" type="BSBLabel">
4544  <objectName/>
4545  <x>1118</x>
4546  <y>494</y>
4547  <width>50</width>
4548  <height>25</height>
4549  <uuid>{2ea576a4-ae2a-46c5-9d48-c60f6f2d797f}</uuid>
4550  <visible>true</visible>
4551  <midichan>0</midichan>
4552  <midicc>0</midicc>
4553  <label>Depth</label>
4554  <alignment>center</alignment>
4555  <font>Liberation Sans</font>
4556  <fontsize>10</fontsize>
4557  <precision>3</precision>
4558  <color>
4559   <r>0</r>
4560   <g>0</g>
4561   <b>0</b>
4562  </color>
4563  <bgcolor mode="nobackground">
4564   <r>255</r>
4565   <g>255</g>
4566   <b>255</b>
4567  </bgcolor>
4568  <bordermode>noborder</bordermode>
4569  <borderradius>1</borderradius>
4570  <borderwidth>1</borderwidth>
4571 </bsbObject>
4572 <bsbObject version="2" type="BSBLabel">
4573  <objectName/>
4574  <x>1169</x>
4575  <y>494</y>
4576  <width>50</width>
4577  <height>25</height>
4578  <uuid>{de406206-a09b-4d39-a221-7c7395466fe8}</uuid>
4579  <visible>true</visible>
4580  <midichan>0</midichan>
4581  <midicc>0</midicc>
4582  <label>Delay</label>
4583  <alignment>center</alignment>
4584  <font>Liberation Sans</font>
4585  <fontsize>10</fontsize>
4586  <precision>3</precision>
4587  <color>
4588   <r>0</r>
4589   <g>0</g>
4590   <b>0</b>
4591  </color>
4592  <bgcolor mode="nobackground">
4593   <r>255</r>
4594   <g>255</g>
4595   <b>255</b>
4596  </bgcolor>
4597  <bordermode>noborder</bordermode>
4598  <borderradius>1</borderradius>
4599  <borderwidth>1</borderwidth>
4600 </bsbObject>
4601 <bsbObject version="2" type="BSBLabel">
4602  <objectName/>
4603  <x>1220</x>
4604  <y>494</y>
4605  <width>50</width>
4606  <height>50</height>
4607  <uuid>{d2b96b90-7cd4-46be-867a-7e4a60a747d2}</uuid>
4608  <visible>true</visible>
4609  <midichan>0</midichan>
4610  <midicc>0</midicc>
4611  <label>Feed
4612Back</label>
4613  <alignment>center</alignment>
4614  <font>Liberation Sans</font>
4615  <fontsize>10</fontsize>
4616  <precision>3</precision>
4617  <color>
4618   <r>0</r>
4619   <g>0</g>
4620   <b>0</b>
4621  </color>
4622  <bgcolor mode="nobackground">
4623   <r>255</r>
4624   <g>255</g>
4625   <b>255</b>
4626  </bgcolor>
4627  <bordermode>noborder</bordermode>
4628  <borderradius>1</borderradius>
4629  <borderwidth>1</borderwidth>
4630 </bsbObject>
4631 <bsbObject version="2" type="BSBLabel">
4632  <objectName/>
4633  <x>1274</x>
4634  <y>383</y>
4635  <width>212</width>
4636  <height>330</height>
4637  <uuid>{5a2d7830-ac56-4764-8e11-6eca2b619270}</uuid>
4638  <visible>true</visible>
4639  <midichan>0</midichan>
4640  <midicc>0</midicc>
4641  <label/>
4642  <alignment>center</alignment>
4643  <font>Liberation Sans</font>
4644  <fontsize>18</fontsize>
4645  <precision>3</precision>
4646  <color>
4647   <r>0</r>
4648   <g>0</g>
4649   <b>0</b>
4650  </color>
4651  <bgcolor mode="background">
4652   <r>170</r>
4653   <g>0</g>
4654   <b>255</b>
4655  </bgcolor>
4656  <bordermode>border</bordermode>
4657  <borderradius>20</borderradius>
4658  <borderwidth>3</borderwidth>
4659 </bsbObject>
4660 <bsbObject version="2" type="BSBLabel">
4661  <objectName/>
4662  <x>1276</x>
4663  <y>534</y>
4664  <width>210</width>
4665  <height>44</height>
4666  <uuid>{d2a13c0d-246d-4f0c-83de-fb59869eeef0}</uuid>
4667  <visible>true</visible>
4668  <midichan>0</midichan>
4669  <midicc>0</midicc>
4670  <label>DELAY</label>
4671  <alignment>center</alignment>
4672  <font>Liberation Sans</font>
4673  <fontsize>26</fontsize>
4674  <precision>3</precision>
4675  <color>
4676   <r>0</r>
4677   <g>0</g>
4678   <b>0</b>
4679  </color>
4680  <bgcolor mode="nobackground">
4681   <r>255</r>
4682   <g>255</g>
4683   <b>255</b>
4684  </bgcolor>
4685  <bordermode>noborder</bordermode>
4686  <borderradius>1</borderradius>
4687  <borderwidth>1</borderwidth>
4688 </bsbObject>
4689 <bsbObject version="2" type="BSBButton">
4690  <objectName/>
4691  <x>1290</x>
4692  <y>585</y>
4693  <width>180</width>
4694  <height>110</height>
4695  <uuid>{6def73e6-5989-469d-a9e4-4a15fbbfe498}</uuid>
4696  <visible>true</visible>
4697  <midichan>0</midichan>
4698  <midicc>0</midicc>
4699  <type>event</type>
4700  <pressedValue>1.00000000</pressedValue>
4701  <stringvalue/>
4702  <text/>
4703  <image>/</image>
4704  <eventLine>i 1 0 0.01 15</eventLine>
4705  <latch>false</latch>
4706  <latched>false</latched>
4707 </bsbObject>
4708 <bsbObject version="2" type="BSBController">
4709  <objectName/>
4710  <x>1372</x>
4711  <y>391</y>
4712  <width>15</width>
4713  <height>15</height>
4714  <uuid>{d773279c-f4d3-4a18-b284-e60c01b4c741}</uuid>
4715  <visible>true</visible>
4716  <midichan>0</midichan>
4717  <midicc>0</midicc>
4718  <objectName2>DELAYLED</objectName2>
4719  <xMin>0.00000000</xMin>
4720  <xMax>1.00000000</xMax>
4721  <yMin>0.00000000</yMin>
4722  <yMax>1.00000000</yMax>
4723  <xValue>0.00000000</xValue>
4724  <yValue>0.00000000</yValue>
4725  <type>fill</type>
4726  <pointsize>1</pointsize>
4727  <fadeSpeed>0.00000000</fadeSpeed>
4728  <mouseControl act="press">jump</mouseControl>
4729  <color>
4730   <r>255</r>
4731   <g>0</g>
4732   <b>0</b>
4733  </color>
4734  <randomizable mode="both" group="0">false</randomizable>
4735  <bgcolor>
4736   <r>0</r>
4737   <g>0</g>
4738   <b>0</b>
4739  </bgcolor>
4740 </bsbObject>
4741 <bsbObject version="2" type="BSBKnob">
4742  <objectName>DELAY_Mix</objectName>
4743  <x>1279</x>
4744  <y>445</y>
4745  <width>50</width>
4746  <height>50</height>
4747  <uuid>{46ee6dd0-b835-419e-8f0d-619dd27d8970}</uuid>
4748  <visible>true</visible>
4749  <midichan>0</midichan>
4750  <midicc>0</midicc>
4751  <minimum>0.00000000</minimum>
4752  <maximum>1.00000000</maximum>
4753  <value>0.79000000</value>
4754  <mode>lin</mode>
4755  <mouseControl act="jump">continuous</mouseControl>
4756  <resolution>0.01000000</resolution>
4757  <randomizable group="0">false</randomizable>
4758 </bsbObject>
4759 <bsbObject version="2" type="BSBKnob">
4760  <objectName>DELAY_Time</objectName>
4761  <x>1330</x>
4762  <y>445</y>
4763  <width>50</width>
4764  <height>50</height>
4765  <uuid>{7fca63e2-4e56-413d-b0d7-436f67012b56}</uuid>
4766  <visible>true</visible>
4767  <midichan>0</midichan>
4768  <midicc>0</midicc>
4769  <minimum>0.00000000</minimum>
4770  <maximum>1.00000000</maximum>
4771  <value>0.51000000</value>
4772  <mode>lin</mode>
4773  <mouseControl act="jump">continuous</mouseControl>
4774  <resolution>0.01000000</resolution>
4775  <randomizable group="0">false</randomizable>
4776 </bsbObject>
4777 <bsbObject version="2" type="BSBKnob">
4778  <objectName>DELAY_FBack</objectName>
4779  <x>1381</x>
4780  <y>445</y>
4781  <width>50</width>
4782  <height>50</height>
4783  <uuid>{519715f4-6ea1-48f2-8629-2f777a3fdccf}</uuid>
4784  <visible>true</visible>
4785  <midichan>0</midichan>
4786  <midicc>0</midicc>
4787  <minimum>0.00000000</minimum>
4788  <maximum>1.00000000</maximum>
4789  <value>0.47000000</value>
4790  <mode>lin</mode>
4791  <mouseControl act="jump">continuous</mouseControl>
4792  <resolution>0.01000000</resolution>
4793  <randomizable group="0">false</randomizable>
4794 </bsbObject>
4795 <bsbObject version="2" type="BSBKnob">
4796  <objectName>DELAY_HFLoss</objectName>
4797  <x>1432</x>
4798  <y>445</y>
4799  <width>50</width>
4800  <height>50</height>
4801  <uuid>{180b9ae7-c93e-44ea-8464-9a75821d9c66}</uuid>
4802  <visible>true</visible>
4803  <midichan>0</midichan>
4804  <midicc>0</midicc>
4805  <minimum>500.00000000</minimum>
4806  <maximum>20000.00000000</maximum>
4807  <value>4595.00000000</value>
4808  <mode>lin</mode>
4809  <mouseControl act="jump">continuous</mouseControl>
4810  <resolution>0.01000000</resolution>
4811  <randomizable group="0">false</randomizable>
4812 </bsbObject>
4813 <bsbObject version="2" type="BSBLabel">
4814  <objectName/>
4815  <x>1279</x>
4816  <y>494</y>
4817  <width>50</width>
4818  <height>25</height>
4819  <uuid>{ba96005c-1b16-4d22-98dd-13f7b99d784f}</uuid>
4820  <visible>true</visible>
4821  <midichan>0</midichan>
4822  <midicc>0</midicc>
4823  <label>Mix</label>
4824  <alignment>center</alignment>
4825  <font>Liberation Sans</font>
4826  <fontsize>10</fontsize>
4827  <precision>3</precision>
4828  <color>
4829   <r>0</r>
4830   <g>0</g>
4831   <b>0</b>
4832  </color>
4833  <bgcolor mode="nobackground">
4834   <r>255</r>
4835   <g>255</g>
4836   <b>255</b>
4837  </bgcolor>
4838  <bordermode>noborder</bordermode>
4839  <borderradius>1</borderradius>
4840  <borderwidth>1</borderwidth>
4841 </bsbObject>
4842 <bsbObject version="2" type="BSBLabel">
4843  <objectName/>
4844  <x>1330</x>
4845  <y>494</y>
4846  <width>50</width>
4847  <height>25</height>
4848  <uuid>{2ccb66b4-0dd2-45b3-b6de-405417af8e6b}</uuid>
4849  <visible>true</visible>
4850  <midichan>0</midichan>
4851  <midicc>0</midicc>
4852  <label>Time</label>
4853  <alignment>center</alignment>
4854  <font>Liberation Sans</font>
4855  <fontsize>10</fontsize>
4856  <precision>3</precision>
4857  <color>
4858   <r>0</r>
4859   <g>0</g>
4860   <b>0</b>
4861  </color>
4862  <bgcolor mode="nobackground">
4863   <r>255</r>
4864   <g>255</g>
4865   <b>255</b>
4866  </bgcolor>
4867  <bordermode>noborder</bordermode>
4868  <borderradius>1</borderradius>
4869  <borderwidth>1</borderwidth>
4870 </bsbObject>
4871 <bsbObject version="2" type="BSBLabel">
4872  <objectName/>
4873  <x>1381</x>
4874  <y>494</y>
4875  <width>50</width>
4876  <height>50</height>
4877  <uuid>{ee47d90f-5bdc-4ea7-8dbf-bd315741da47}</uuid>
4878  <visible>true</visible>
4879  <midichan>0</midichan>
4880  <midicc>0</midicc>
4881  <label>Feed
4882Back</label>
4883  <alignment>center</alignment>
4884  <font>Liberation Sans</font>
4885  <fontsize>10</fontsize>
4886  <precision>3</precision>
4887  <color>
4888   <r>0</r>
4889   <g>0</g>
4890   <b>0</b>
4891  </color>
4892  <bgcolor mode="nobackground">
4893   <r>255</r>
4894   <g>255</g>
4895   <b>255</b>
4896  </bgcolor>
4897  <bordermode>noborder</bordermode>
4898  <borderradius>1</borderradius>
4899  <borderwidth>1</borderwidth>
4900 </bsbObject>
4901 <bsbObject version="2" type="BSBLabel">
4902  <objectName/>
4903  <x>1432</x>
4904  <y>494</y>
4905  <width>50</width>
4906  <height>50</height>
4907  <uuid>{0a8e694f-b45b-4407-8ed4-edfff14c761d}</uuid>
4908  <visible>true</visible>
4909  <midichan>0</midichan>
4910  <midicc>0</midicc>
4911  <label>HF
4912Loss</label>
4913  <alignment>center</alignment>
4914  <font>Liberation Sans</font>
4915  <fontsize>10</fontsize>
4916  <precision>3</precision>
4917  <color>
4918   <r>0</r>
4919   <g>0</g>
4920   <b>0</b>
4921  </color>
4922  <bgcolor mode="nobackground">
4923   <r>255</r>
4924   <g>255</g>
4925   <b>255</b>
4926  </bgcolor>
4927  <bordermode>noborder</bordermode>
4928  <borderradius>1</borderradius>
4929  <borderwidth>1</borderwidth>
4930 </bsbObject>
4931 <bsbObject version="2" type="BSBLabel">
4932  <objectName/>
4933  <x>1486</x>
4934  <y>383</y>
4935  <width>212</width>
4936  <height>330</height>
4937  <uuid>{19293415-d33a-4dfb-ab77-7bfb1ec77c51}</uuid>
4938  <visible>true</visible>
4939  <midichan>0</midichan>
4940  <midicc>0</midicc>
4941  <label/>
4942  <alignment>center</alignment>
4943  <font>Liberation Sans</font>
4944  <fontsize>18</fontsize>
4945  <precision>3</precision>
4946  <color>
4947   <r>0</r>
4948   <g>0</g>
4949   <b>0</b>
4950  </color>
4951  <bgcolor mode="background">
4952   <r>85</r>
4953   <g>0</g>
4954   <b>0</b>
4955  </bgcolor>
4956  <bordermode>border</bordermode>
4957  <borderradius>20</borderradius>
4958  <borderwidth>3</borderwidth>
4959 </bsbObject>
4960 <bsbObject version="2" type="BSBLabel">
4961  <objectName/>
4962  <x>1488</x>
4963  <y>534</y>
4964  <width>210</width>
4965  <height>44</height>
4966  <uuid>{bdb948c2-6121-407a-95f4-e7acd6a1e6f4}</uuid>
4967  <visible>true</visible>
4968  <midichan>0</midichan>
4969  <midicc>0</midicc>
4970  <label>REVERB</label>
4971  <alignment>center</alignment>
4972  <font>Liberation Sans</font>
4973  <fontsize>26</fontsize>
4974  <precision>3</precision>
4975  <color>
4976   <r>0</r>
4977   <g>0</g>
4978   <b>0</b>
4979  </color>
4980  <bgcolor mode="nobackground">
4981   <r>255</r>
4982   <g>255</g>
4983   <b>255</b>
4984  </bgcolor>
4985  <bordermode>noborder</bordermode>
4986  <borderradius>1</borderradius>
4987  <borderwidth>1</borderwidth>
4988 </bsbObject>
4989 <bsbObject version="2" type="BSBButton">
4990  <objectName/>
4991  <x>1502</x>
4992  <y>585</y>
4993  <width>180</width>
4994  <height>110</height>
4995  <uuid>{27d6b977-1f79-4b99-bca3-ebe8d4cfdb44}</uuid>
4996  <visible>true</visible>
4997  <midichan>0</midichan>
4998  <midicc>0</midicc>
4999  <type>event</type>
5000  <pressedValue>1.00000000</pressedValue>
5001  <stringvalue/>
5002  <text/>
5003  <image>/</image>
5004  <eventLine>i 1 0 0.01 16</eventLine>
5005  <latch>false</latch>
5006  <latched>false</latched>
5007 </bsbObject>
5008 <bsbObject version="2" type="BSBController">
5009  <objectName/>
5010  <x>1584</x>
5011  <y>391</y>
5012  <width>15</width>
5013  <height>15</height>
5014  <uuid>{12f09f14-b46c-4b7c-91d5-e5cf8f44532a}</uuid>
5015  <visible>true</visible>
5016  <midichan>0</midichan>
5017  <midicc>0</midicc>
5018  <objectName2>REVERBLED</objectName2>
5019  <xMin>0.00000000</xMin>
5020  <xMax>1.00000000</xMax>
5021  <yMin>0.00000000</yMin>
5022  <yMax>1.00000000</yMax>
5023  <xValue>0.00000000</xValue>
5024  <yValue>0.00000000</yValue>
5025  <type>fill</type>
5026  <pointsize>1</pointsize>
5027  <fadeSpeed>0.00000000</fadeSpeed>
5028  <mouseControl act="press">jump</mouseControl>
5029  <color>
5030   <r>255</r>
5031   <g>0</g>
5032   <b>0</b>
5033  </color>
5034  <randomizable mode="both" group="0">false</randomizable>
5035  <bgcolor>
5036   <r>0</r>
5037   <g>0</g>
5038   <b>0</b>
5039  </bgcolor>
5040 </bsbObject>
5041 <bsbObject version="2" type="BSBKnob">
5042  <objectName>REVERB_Mix</objectName>
5043  <x>1499</x>
5044  <y>443</y>
5045  <width>60</width>
5046  <height>60</height>
5047  <uuid>{c6bd053b-dee1-4818-86e2-7c4e41f482ba}</uuid>
5048  <visible>true</visible>
5049  <midichan>0</midichan>
5050  <midicc>0</midicc>
5051  <minimum>0.00000000</minimum>
5052  <maximum>1.00000000</maximum>
5053  <value>0.51000000</value>
5054  <mode>lin</mode>
5055  <mouseControl act="jump">continuous</mouseControl>
5056  <resolution>0.01000000</resolution>
5057  <randomizable group="0">false</randomizable>
5058 </bsbObject>
5059 <bsbObject version="2" type="BSBLabel">
5060  <objectName/>
5061  <x>1499</x>
5062  <y>505</y>
5063  <width>60</width>
5064  <height>25</height>
5065  <uuid>{16a90a4d-4e83-4580-8c19-4e1de4db5fb6}</uuid>
5066  <visible>true</visible>
5067  <midichan>0</midichan>
5068  <midicc>0</midicc>
5069  <label>Mix</label>
5070  <alignment>center</alignment>
5071  <font>Liberation Sans</font>
5072  <fontsize>10</fontsize>
5073  <precision>3</precision>
5074  <color>
5075   <r>0</r>
5076   <g>0</g>
5077   <b>0</b>
5078  </color>
5079  <bgcolor mode="nobackground">
5080   <r>255</r>
5081   <g>255</g>
5082   <b>255</b>
5083  </bgcolor>
5084  <bordermode>noborder</bordermode>
5085  <borderradius>1</borderradius>
5086  <borderwidth>1</borderwidth>
5087 </bsbObject>
5088 <bsbObject version="2" type="BSBKnob">
5089  <objectName>REVERB_Size</objectName>
5090  <x>1562</x>
5091  <y>443</y>
5092  <width>60</width>
5093  <height>60</height>
5094  <uuid>{e248bf6b-b7ba-43e4-93d6-cdc02fe1ed8a}</uuid>
5095  <visible>true</visible>
5096  <midichan>0</midichan>
5097  <midicc>0</midicc>
5098  <minimum>0.01000000</minimum>
5099  <maximum>1.00000000</maximum>
5100  <value>0.62380000</value>
5101  <mode>lin</mode>
5102  <mouseControl act="jump">continuous</mouseControl>
5103  <resolution>0.01000000</resolution>
5104  <randomizable group="0">false</randomizable>
5105 </bsbObject>
5106 <bsbObject version="2" type="BSBLabel">
5107  <objectName/>
5108  <x>1562</x>
5109  <y>505</y>
5110  <width>60</width>
5111  <height>25</height>
5112  <uuid>{15472c76-cfaf-4f26-8d62-87099c025051}</uuid>
5113  <visible>true</visible>
5114  <midichan>0</midichan>
5115  <midicc>0</midicc>
5116  <label>Size</label>
5117  <alignment>center</alignment>
5118  <font>Liberation Sans</font>
5119  <fontsize>10</fontsize>
5120  <precision>3</precision>
5121  <color>
5122   <r>0</r>
5123   <g>0</g>
5124   <b>0</b>
5125  </color>
5126  <bgcolor mode="nobackground">
5127   <r>255</r>
5128   <g>255</g>
5129   <b>255</b>
5130  </bgcolor>
5131  <bordermode>noborder</bordermode>
5132  <borderradius>1</borderradius>
5133  <borderwidth>1</borderwidth>
5134 </bsbObject>
5135 <bsbObject version="2" type="BSBKnob">
5136  <objectName>REVERB_Tone</objectName>
5137  <x>1625</x>
5138  <y>443</y>
5139  <width>60</width>
5140  <height>60</height>
5141  <uuid>{2726780e-444b-4f86-aa19-3d94642f984e}</uuid>
5142  <visible>true</visible>
5143  <midichan>0</midichan>
5144  <midicc>0</midicc>
5145  <minimum>0.00000000</minimum>
5146  <maximum>1.00000000</maximum>
5147  <value>0.81000000</value>
5148  <mode>lin</mode>
5149  <mouseControl act="jump">continuous</mouseControl>
5150  <resolution>0.01000000</resolution>
5151  <randomizable group="0">false</randomizable>
5152 </bsbObject>
5153 <bsbObject version="2" type="BSBLabel">
5154  <objectName/>
5155  <x>1625</x>
5156  <y>505</y>
5157  <width>60</width>
5158  <height>25</height>
5159  <uuid>{1b6fab95-d037-48e1-9c51-48c9805bd773}</uuid>
5160  <visible>true</visible>
5161  <midichan>0</midichan>
5162  <midicc>0</midicc>
5163  <label>Tone</label>
5164  <alignment>center</alignment>
5165  <font>Liberation Sans</font>
5166  <fontsize>10</fontsize>
5167  <precision>3</precision>
5168  <color>
5169   <r>0</r>
5170   <g>0</g>
5171   <b>0</b>
5172  </color>
5173  <bgcolor mode="nobackground">
5174   <r>255</r>
5175   <g>255</g>
5176   <b>255</b>
5177  </bgcolor>
5178  <bordermode>noborder</bordermode>
5179  <borderradius>1</borderradius>
5180  <borderwidth>1</borderwidth>
5181 </bsbObject>
5182 <bsbObject version="2" type="BSBLabel">
5183  <objectName/>
5184  <x>1698</x>
5185  <y>383</y>
5186  <width>212</width>
5187  <height>330</height>
5188  <uuid>{81b2df2c-2add-4b77-9456-495da97b0d5e}</uuid>
5189  <visible>true</visible>
5190  <midichan>0</midichan>
5191  <midicc>0</midicc>
5192  <label/>
5193  <alignment>center</alignment>
5194  <font>Liberation Sans</font>
5195  <fontsize>18</fontsize>
5196  <precision>3</precision>
5197  <color>
5198   <r>0</r>
5199   <g>0</g>
5200   <b>0</b>
5201  </color>
5202  <bgcolor mode="background">
5203   <r>255</r>
5204   <g>255</g>
5205   <b>255</b>
5206  </bgcolor>
5207  <bordermode>border</bordermode>
5208  <borderradius>20</borderradius>
5209  <borderwidth>3</borderwidth>
5210 </bsbObject>
5211 <bsbObject version="2" type="BSBLabel">
5212  <objectName/>
5213  <x>1700</x>
5214  <y>533</y>
5215  <width>210</width>
5216  <height>44</height>
5217  <uuid>{f5871db4-fc64-4332-8281-e7d0588559d6}</uuid>
5218  <visible>true</visible>
5219  <midichan>0</midichan>
5220  <midicc>0</midicc>
5221  <label>EQUALIZER</label>
5222  <alignment>center</alignment>
5223  <font>Liberation Sans</font>
5224  <fontsize>26</fontsize>
5225  <precision>3</precision>
5226  <color>
5227   <r>0</r>
5228   <g>0</g>
5229   <b>0</b>
5230  </color>
5231  <bgcolor mode="nobackground">
5232   <r>255</r>
5233   <g>255</g>
5234   <b>255</b>
5235  </bgcolor>
5236  <bordermode>noborder</bordermode>
5237  <borderradius>1</borderradius>
5238  <borderwidth>1</borderwidth>
5239 </bsbObject>
5240 <bsbObject version="2" type="BSBButton">
5241  <objectName/>
5242  <x>1714</x>
5243  <y>585</y>
5244  <width>180</width>
5245  <height>110</height>
5246  <uuid>{1e8a88ce-01b7-4831-9724-9170c56ab951}</uuid>
5247  <visible>true</visible>
5248  <midichan>0</midichan>
5249  <midicc>0</midicc>
5250  <type>event</type>
5251  <pressedValue>1.00000000</pressedValue>
5252  <stringvalue/>
5253  <text/>
5254  <image>/</image>
5255  <eventLine>i 1 0 0.01 17</eventLine>
5256  <latch>false</latch>
5257  <latched>false</latched>
5258 </bsbObject>
5259 <bsbObject version="2" type="BSBController">
5260  <objectName/>
5261  <x>1796</x>
5262  <y>390</y>
5263  <width>15</width>
5264  <height>15</height>
5265  <uuid>{b02228da-ec7e-4e9b-8594-eb54eb225a71}</uuid>
5266  <visible>true</visible>
5267  <midichan>0</midichan>
5268  <midicc>0</midicc>
5269  <objectName2>EQUALIZERLED</objectName2>
5270  <xMin>0.00000000</xMin>
5271  <xMax>1.00000000</xMax>
5272  <yMin>0.00000000</yMin>
5273  <yMax>1.00000000</yMax>
5274  <xValue>0.00000000</xValue>
5275  <yValue>0.00000000</yValue>
5276  <type>fill</type>
5277  <pointsize>1</pointsize>
5278  <fadeSpeed>0.00000000</fadeSpeed>
5279  <mouseControl act="press">jump</mouseControl>
5280  <color>
5281   <r>255</r>
5282   <g>0</g>
5283   <b>0</b>
5284  </color>
5285  <randomizable mode="both" group="0">false</randomizable>
5286  <bgcolor>
5287   <r>0</r>
5288   <g>0</g>
5289   <b>0</b>
5290  </bgcolor>
5291 </bsbObject>
5292 <bsbObject version="2" type="BSBLabel">
5293  <objectName/>
5294  <x>1715</x>
5295  <y>518</y>
5296  <width>35</width>
5297  <height>29</height>
5298  <uuid>{17b56f0f-40cd-4b8e-af2e-ebc902d36c7d}</uuid>
5299  <visible>true</visible>
5300  <midichan>0</midichan>
5301  <midicc>0</midicc>
5302  <label>100</label>
5303  <alignment>center</alignment>
5304  <font>Liberation Sans</font>
5305  <fontsize>9</fontsize>
5306  <precision>3</precision>
5307  <color>
5308   <r>0</r>
5309   <g>0</g>
5310   <b>0</b>
5311  </color>
5312  <bgcolor mode="nobackground">
5313   <r>255</r>
5314   <g>255</g>
5315   <b>255</b>
5316  </bgcolor>
5317  <bordermode>noborder</bordermode>
5318  <borderradius>1</borderradius>
5319  <borderwidth>1</borderwidth>
5320 </bsbObject>
5321 <bsbObject version="2" type="BSBController">
5322  <objectName/>
5323  <x>1725</x>
5324  <y>422</y>
5325  <width>15</width>
5326  <height>93</height>
5327  <uuid>{62cef37c-a2cf-4766-8074-26bd448a5b66}</uuid>
5328  <visible>true</visible>
5329  <midichan>0</midichan>
5330  <midicc>0</midicc>
5331  <objectName2>EQUALIZER_100</objectName2>
5332  <xMin>0.00000000</xMin>
5333  <xMax>1.00000000</xMax>
5334  <yMin>0.00000000</yMin>
5335  <yMax>1.00000000</yMax>
5336  <xValue>0.00000000</xValue>
5337  <yValue>0.53763441</yValue>
5338  <type>fill</type>
5339  <pointsize>1</pointsize>
5340  <fadeSpeed>0.00000000</fadeSpeed>
5341  <mouseControl act="press">jump</mouseControl>
5342  <color>
5343   <r>0</r>
5344   <g>234</g>
5345   <b>0</b>
5346  </color>
5347  <randomizable mode="both" group="0">false</randomizable>
5348  <bgcolor>
5349   <r>0</r>
5350   <g>0</g>
5351   <b>0</b>
5352  </bgcolor>
5353 </bsbObject>
5354 <bsbObject version="2" type="BSBController">
5355  <objectName/>
5356  <x>1745</x>
5357  <y>422</y>
5358  <width>15</width>
5359  <height>93</height>
5360  <uuid>{3254336d-003d-427a-94cc-a1e8a2ce7c32}</uuid>
5361  <visible>true</visible>
5362  <midichan>0</midichan>
5363  <midicc>0</midicc>
5364  <objectName2>EQUALIZER_200</objectName2>
5365  <xMin>0.00000000</xMin>
5366  <xMax>1.00000000</xMax>
5367  <yMin>0.00000000</yMin>
5368  <yMax>1.00000000</yMax>
5369  <xValue>0.00000000</xValue>
5370  <yValue>0.54838710</yValue>
5371  <type>fill</type>
5372  <pointsize>1</pointsize>
5373  <fadeSpeed>0.00000000</fadeSpeed>
5374  <mouseControl act="press">jump</mouseControl>
5375  <color>
5376   <r>0</r>
5377   <g>234</g>
5378   <b>0</b>
5379  </color>
5380  <randomizable mode="both" group="0">false</randomizable>
5381  <bgcolor>
5382   <r>0</r>
5383   <g>0</g>
5384   <b>0</b>
5385  </bgcolor>
5386 </bsbObject>
5387 <bsbObject version="2" type="BSBController">
5388  <objectName/>
5389  <x>1765</x>
5390  <y>422</y>
5391  <width>15</width>
5392  <height>93</height>
5393  <uuid>{55677a12-dc02-41e8-a9d9-2b4644985a1c}</uuid>
5394  <visible>true</visible>
5395  <midichan>0</midichan>
5396  <midicc>0</midicc>
5397  <objectName2>EQUALIZER_400</objectName2>
5398  <xMin>0.00000000</xMin>
5399  <xMax>1.00000000</xMax>
5400  <yMin>0.00000000</yMin>
5401  <yMax>1.00000000</yMax>
5402  <xValue>0.00000000</xValue>
5403  <yValue>0.54838710</yValue>
5404  <type>fill</type>
5405  <pointsize>1</pointsize>
5406  <fadeSpeed>0.00000000</fadeSpeed>
5407  <mouseControl act="press">jump</mouseControl>
5408  <color>
5409   <r>0</r>
5410   <g>234</g>
5411   <b>0</b>
5412  </color>
5413  <randomizable mode="both" group="0">false</randomizable>
5414  <bgcolor>
5415   <r>0</r>
5416   <g>0</g>
5417   <b>0</b>
5418  </bgcolor>
5419 </bsbObject>
5420 <bsbObject version="2" type="BSBController">
5421  <objectName/>
5422  <x>1785</x>
5423  <y>422</y>
5424  <width>15</width>
5425  <height>93</height>
5426  <uuid>{516859eb-6eea-4bcc-9071-2c60446708c7}</uuid>
5427  <visible>true</visible>
5428  <midichan>0</midichan>
5429  <midicc>0</midicc>
5430  <objectName2>EQUALIZER_800</objectName2>
5431  <xMin>0.00000000</xMin>
5432  <xMax>1.00000000</xMax>
5433  <yMin>0.00000000</yMin>
5434  <yMax>1.00000000</yMax>
5435  <xValue>0.00000000</xValue>
5436  <yValue>0.55913978</yValue>
5437  <type>fill</type>
5438  <pointsize>1</pointsize>
5439  <fadeSpeed>0.00000000</fadeSpeed>
5440  <mouseControl act="press">jump</mouseControl>
5441  <color>
5442   <r>0</r>
5443   <g>234</g>
5444   <b>0</b>
5445  </color>
5446  <randomizable mode="both" group="0">false</randomizable>
5447  <bgcolor>
5448   <r>0</r>
5449   <g>0</g>
5450   <b>0</b>
5451  </bgcolor>
5452 </bsbObject>
5453 <bsbObject version="2" type="BSBController">
5454  <objectName/>
5455  <x>1805</x>
5456  <y>422</y>
5457  <width>15</width>
5458  <height>93</height>
5459  <uuid>{381d6039-e67c-421c-9a6b-328d7aa48881}</uuid>
5460  <visible>true</visible>
5461  <midichan>0</midichan>
5462  <midicc>0</midicc>
5463  <objectName2>EQUALIZER_1k6</objectName2>
5464  <xMin>0.00000000</xMin>
5465  <xMax>1.00000000</xMax>
5466  <yMin>0.00000000</yMin>
5467  <yMax>1.00000000</yMax>
5468  <xValue>0.00000000</xValue>
5469  <yValue>0.56989247</yValue>
5470  <type>fill</type>
5471  <pointsize>1</pointsize>
5472  <fadeSpeed>0.00000000</fadeSpeed>
5473  <mouseControl act="press">jump</mouseControl>
5474  <color>
5475   <r>0</r>
5476   <g>234</g>
5477   <b>0</b>
5478  </color>
5479  <randomizable mode="both" group="0">false</randomizable>
5480  <bgcolor>
5481   <r>0</r>
5482   <g>0</g>
5483   <b>0</b>
5484  </bgcolor>
5485 </bsbObject>
5486 <bsbObject version="2" type="BSBController">
5487  <objectName/>
5488  <x>1825</x>
5489  <y>422</y>
5490  <width>15</width>
5491  <height>93</height>
5492  <uuid>{26e42cfd-7502-4301-9897-f3ef80c9ec46}</uuid>
5493  <visible>true</visible>
5494  <midichan>0</midichan>
5495  <midicc>0</midicc>
5496  <objectName2>EQUALIZER_3k2</objectName2>
5497  <xMin>0.00000000</xMin>
5498  <xMax>1.00000000</xMax>
5499  <yMin>0.00000000</yMin>
5500  <yMax>1.00000000</yMax>
5501  <xValue>0.00000000</xValue>
5502  <yValue>0.52688172</yValue>
5503  <type>fill</type>
5504  <pointsize>1</pointsize>
5505  <fadeSpeed>0.00000000</fadeSpeed>
5506  <mouseControl act="press">jump</mouseControl>
5507  <color>
5508   <r>0</r>
5509   <g>234</g>
5510   <b>0</b>
5511  </color>
5512  <randomizable mode="both" group="0">false</randomizable>
5513  <bgcolor>
5514   <r>0</r>
5515   <g>0</g>
5516   <b>0</b>
5517  </bgcolor>
5518 </bsbObject>
5519 <bsbObject version="2" type="BSBController">
5520  <objectName/>
5521  <x>1845</x>
5522  <y>422</y>
5523  <width>15</width>
5524  <height>93</height>
5525  <uuid>{c7614ef9-5985-4880-9cc9-dcf6ae4855be}</uuid>
5526  <visible>true</visible>
5527  <midichan>0</midichan>
5528  <midicc>0</midicc>
5529  <objectName2>EQUALIZER_6k4</objectName2>
5530  <xMin>0.00000000</xMin>
5531  <xMax>1.00000000</xMax>
5532  <yMin>0.00000000</yMin>
5533  <yMax>1.00000000</yMax>
5534  <xValue>0.00000000</xValue>
5535  <yValue>0.50537634</yValue>
5536  <type>fill</type>
5537  <pointsize>1</pointsize>
5538  <fadeSpeed>0.00000000</fadeSpeed>
5539  <mouseControl act="press">jump</mouseControl>
5540  <color>
5541   <r>0</r>
5542   <g>234</g>
5543   <b>0</b>
5544  </color>
5545  <randomizable mode="both" group="0">false</randomizable>
5546  <bgcolor>
5547   <r>0</r>
5548   <g>0</g>
5549   <b>0</b>
5550  </bgcolor>
5551 </bsbObject>
5552 <bsbObject version="2" type="BSBController">
5553  <objectName/>
5554  <x>1865</x>
5555  <y>422</y>
5556  <width>15</width>
5557  <height>93</height>
5558  <uuid>{4f2053ad-bfcd-48be-b5d4-815c1d99b13a}</uuid>
5559  <visible>true</visible>
5560  <midichan>0</midichan>
5561  <midicc>0</midicc>
5562  <objectName2>EQUALIZER_Gain</objectName2>
5563  <xMin>0.00000000</xMin>
5564  <xMax>1.00000000</xMax>
5565  <yMin>0.00000000</yMin>
5566  <yMax>1.00000000</yMax>
5567  <xValue>0.00000000</xValue>
5568  <yValue>0.40860215</yValue>
5569  <type>fill</type>
5570  <pointsize>1</pointsize>
5571  <fadeSpeed>0.00000000</fadeSpeed>
5572  <mouseControl act="press">jump</mouseControl>
5573  <color>
5574   <r>0</r>
5575   <g>234</g>
5576   <b>0</b>
5577  </color>
5578  <randomizable mode="both" group="0">false</randomizable>
5579  <bgcolor>
5580   <r>0</r>
5581   <g>0</g>
5582   <b>0</b>
5583  </bgcolor>
5584 </bsbObject>
5585 <bsbObject version="2" type="BSBLabel">
5586  <objectName/>
5587  <x>1735</x>
5588  <y>518</y>
5589  <width>35</width>
5590  <height>29</height>
5591  <uuid>{7fc3d75a-dc64-45a0-b590-7d27a72a40bb}</uuid>
5592  <visible>true</visible>
5593  <midichan>0</midichan>
5594  <midicc>0</midicc>
5595  <label>200</label>
5596  <alignment>center</alignment>
5597  <font>Liberation Sans</font>
5598  <fontsize>9</fontsize>
5599  <precision>3</precision>
5600  <color>
5601   <r>0</r>
5602   <g>0</g>
5603   <b>0</b>
5604  </color>
5605  <bgcolor mode="nobackground">
5606   <r>255</r>
5607   <g>255</g>
5608   <b>255</b>
5609  </bgcolor>
5610  <bordermode>noborder</bordermode>
5611  <borderradius>1</borderradius>
5612  <borderwidth>1</borderwidth>
5613 </bsbObject>
5614 <bsbObject version="2" type="BSBLabel">
5615  <objectName/>
5616  <x>1755</x>
5617  <y>518</y>
5618  <width>35</width>
5619  <height>29</height>
5620  <uuid>{a6d56902-e492-4d59-aecd-512ae46dee6a}</uuid>
5621  <visible>true</visible>
5622  <midichan>0</midichan>
5623  <midicc>0</midicc>
5624  <label>400</label>
5625  <alignment>center</alignment>
5626  <font>Liberation Sans</font>
5627  <fontsize>9</fontsize>
5628  <precision>3</precision>
5629  <color>
5630   <r>0</r>
5631   <g>0</g>
5632   <b>0</b>
5633  </color>
5634  <bgcolor mode="nobackground">
5635   <r>255</r>
5636   <g>255</g>
5637   <b>255</b>
5638  </bgcolor>
5639  <bordermode>noborder</bordermode>
5640  <borderradius>1</borderradius>
5641  <borderwidth>1</borderwidth>
5642 </bsbObject>
5643 <bsbObject version="2" type="BSBLabel">
5644  <objectName/>
5645  <x>1775</x>
5646  <y>518</y>
5647  <width>35</width>
5648  <height>29</height>
5649  <uuid>{9dd59e64-0e62-49fc-af66-b7832ee0d8a0}</uuid>
5650  <visible>true</visible>
5651  <midichan>0</midichan>
5652  <midicc>0</midicc>
5653  <label>800</label>
5654  <alignment>center</alignment>
5655  <font>Liberation Sans</font>
5656  <fontsize>9</fontsize>
5657  <precision>3</precision>
5658  <color>
5659   <r>0</r>
5660   <g>0</g>
5661   <b>0</b>
5662  </color>
5663  <bgcolor mode="nobackground">
5664   <r>255</r>
5665   <g>255</g>
5666   <b>255</b>
5667  </bgcolor>
5668  <bordermode>noborder</bordermode>
5669  <borderradius>1</borderradius>
5670  <borderwidth>1</borderwidth>
5671 </bsbObject>
5672 <bsbObject version="2" type="BSBLabel">
5673  <objectName/>
5674  <x>1795</x>
5675  <y>518</y>
5676  <width>35</width>
5677  <height>29</height>
5678  <uuid>{4a5c0c04-889a-4178-8b24-0e9e9df30ae0}</uuid>
5679  <visible>true</visible>
5680  <midichan>0</midichan>
5681  <midicc>0</midicc>
5682  <label>1k6</label>
5683  <alignment>center</alignment>
5684  <font>Liberation Sans</font>
5685  <fontsize>9</fontsize>
5686  <precision>3</precision>
5687  <color>
5688   <r>0</r>
5689   <g>0</g>
5690   <b>0</b>
5691  </color>
5692  <bgcolor mode="nobackground">
5693   <r>255</r>
5694   <g>255</g>
5695   <b>255</b>
5696  </bgcolor>
5697  <bordermode>noborder</bordermode>
5698  <borderradius>1</borderradius>
5699  <borderwidth>1</borderwidth>
5700 </bsbObject>
5701 <bsbObject version="2" type="BSBLabel">
5702  <objectName/>
5703  <x>1815</x>
5704  <y>518</y>
5705  <width>35</width>
5706  <height>29</height>
5707  <uuid>{9df74520-8ac6-45ff-91e0-ec2f0b138f57}</uuid>
5708  <visible>true</visible>
5709  <midichan>0</midichan>
5710  <midicc>0</midicc>
5711  <label>3k2</label>
5712  <alignment>center</alignment>
5713  <font>Liberation Sans</font>
5714  <fontsize>9</fontsize>
5715  <precision>3</precision>
5716  <color>
5717   <r>0</r>
5718   <g>0</g>
5719   <b>0</b>
5720  </color>
5721  <bgcolor mode="nobackground">
5722   <r>255</r>
5723   <g>255</g>
5724   <b>255</b>
5725  </bgcolor>
5726  <bordermode>noborder</bordermode>
5727  <borderradius>1</borderradius>
5728  <borderwidth>1</borderwidth>
5729 </bsbObject>
5730 <bsbObject version="2" type="BSBLabel">
5731  <objectName/>
5732  <x>1835</x>
5733  <y>518</y>
5734  <width>35</width>
5735  <height>29</height>
5736  <uuid>{963ce3bb-492d-4580-9477-f13b10ba7e62}</uuid>
5737  <visible>true</visible>
5738  <midichan>0</midichan>
5739  <midicc>0</midicc>
5740  <label>6k4</label>
5741  <alignment>center</alignment>
5742  <font>Liberation Sans</font>
5743  <fontsize>9</fontsize>
5744  <precision>3</precision>
5745  <color>
5746   <r>0</r>
5747   <g>0</g>
5748   <b>0</b>
5749  </color>
5750  <bgcolor mode="nobackground">
5751   <r>255</r>
5752   <g>255</g>
5753   <b>255</b>
5754  </bgcolor>
5755  <bordermode>noborder</bordermode>
5756  <borderradius>1</borderradius>
5757  <borderwidth>1</borderwidth>
5758 </bsbObject>
5759 <bsbObject version="2" type="BSBLabel">
5760  <objectName/>
5761  <x>1855</x>
5762  <y>518</y>
5763  <width>35</width>
5764  <height>29</height>
5765  <uuid>{3ca96c95-f4d9-4a28-a3ac-b090055dd207}</uuid>
5766  <visible>true</visible>
5767  <midichan>0</midichan>
5768  <midicc>0</midicc>
5769  <label>Gain</label>
5770  <alignment>center</alignment>
5771  <font>Liberation Sans</font>
5772  <fontsize>9</fontsize>
5773  <precision>3</precision>
5774  <color>
5775   <r>0</r>
5776   <g>0</g>
5777   <b>0</b>
5778  </color>
5779  <bgcolor mode="nobackground">
5780   <r>255</r>
5781   <g>255</g>
5782   <b>255</b>
5783  </bgcolor>
5784  <bordermode>noborder</bordermode>
5785  <borderradius>1</borderradius>
5786  <borderwidth>1</borderwidth>
5787 </bsbObject>
5788 <bsbObject version="2" type="BSBLabel">
5789  <objectName/>
5790  <x>2</x>
5791  <y>2</y>
5792  <width>212</width>
5793  <height>51</height>
5794  <uuid>{17911871-b248-45e6-945d-fa5d3ebf7cfe}</uuid>
5795  <visible>true</visible>
5796  <midichan>0</midichan>
5797  <midicc>0</midicc>
5798  <label>Multi-FX</label>
5799  <alignment>center</alignment>
5800  <font>Liberation Sans</font>
5801  <fontsize>30</fontsize>
5802  <precision>3</precision>
5803  <color>
5804   <r>0</r>
5805   <g>0</g>
5806   <b>0</b>
5807  </color>
5808  <bgcolor mode="background">
5809   <r>255</r>
5810   <g>255</g>
5811   <b>255</b>
5812  </bgcolor>
5813  <bordermode>border</bordermode>
5814  <borderradius>20</borderradius>
5815  <borderwidth>3</borderwidth>
5816 </bsbObject>
5817 <bsbObject version="2" type="BSBLabel">
5818  <objectName/>
5819  <x>214</x>
5820  <y>2</y>
5821  <width>425</width>
5822  <height>51</height>
5823  <uuid>{d5d8b2b5-de9f-471e-9c61-8f1425361874}</uuid>
5824  <visible>true</visible>
5825  <midichan>0</midichan>
5826  <midicc>0</midicc>
5827  <label/>
5828  <alignment>center</alignment>
5829  <font>Liberation Sans</font>
5830  <fontsize>30</fontsize>
5831  <precision>3</precision>
5832  <color>
5833   <r>0</r>
5834   <g>0</g>
5835   <b>0</b>
5836  </color>
5837  <bgcolor mode="background">
5838   <r>0</r>
5839   <g>117</g>
5840   <b>0</b>
5841  </bgcolor>
5842  <bordermode>border</bordermode>
5843  <borderradius>20</borderradius>
5844  <borderwidth>3</borderwidth>
5845 </bsbObject>
5846 <bsbObject version="2" type="BSBButton">
5847  <objectName>_Browse</objectName>
5848  <x>229</x>
5849  <y>14</y>
5850  <width>140</width>
5851  <height>28</height>
5852  <uuid>{f4982782-fdcc-49e1-ab2b-e5553938b259}</uuid>
5853  <visible>true</visible>
5854  <midichan>0</midichan>
5855  <midicc>0</midicc>
5856  <type>value</type>
5857  <pressedValue>1.00000000</pressedValue>
5858  <stringvalue>ClassicalGuitar.wav</stringvalue>
5859  <text>Browse Audio File</text>
5860  <image>/</image>
5861  <eventLine/>
5862  <latch>false</latch>
5863  <latched>false</latched>
5864 </bsbObject>
5865 <bsbObject version="2" type="BSBLineEdit">
5866  <objectName>_Browse</objectName>
5867  <x>372</x>
5868  <y>15</y>
5869  <width>250</width>
5870  <height>26</height>
5871  <uuid>{6e220fa1-c4e9-4356-b16a-ecd72fa593a9}</uuid>
5872  <visible>true</visible>
5873  <midichan>0</midichan>
5874  <midicc>0</midicc>
5875  <label>ClassicalGuitar.wav</label>
5876  <alignment>left</alignment>
5877  <font>Liberation Sans</font>
5878  <fontsize>10</fontsize>
5879  <precision>3</precision>
5880  <color>
5881   <r>0</r>
5882   <g>0</g>
5883   <b>0</b>
5884  </color>
5885  <bgcolor mode="nobackground">
5886   <r>229</r>
5887   <g>229</g>
5888   <b>229</b>
5889  </bgcolor>
5890  <background>nobackground</background>
5891 </bsbObject>
5892</bsbPanel>
5893<bsbPresets>
5894</bsbPresets>
5895<EventPanel name="" tempo="60.00000000" loop="8.00000000" x="913" y="162" width="655" height="346" visible="false" loopStart="0" loopEnd="0">    </EventPanel>
5896