1;Written by Iain McCurdy, 2008
2
3
4; Modified for QuteCsound by René, November 2010
5; Tested on Ubuntu 10.04 with csound-double cvs August 2010 and QuteCsound svn rev 733
6
7;Notes on modifications from original csd:
8;	Add table(s) for exp slider
9;	Instrument 1 is activated by MIDI and by the GUI
10;	Removed presets (included in QuteCsound)
11;	Cannot display more than one space in Label, so can't display the schematic shown below:
12
13	;   FM Synthesis: Modulator->Carrier / Modulator->Carrier
14	;-----------------------------------------------------------
15	;               +-----+      +-----+
16	;               |MOD.1|      |MOD.2|
17	;               +--+--+      +--+--+
18	;                  |            |
19	;               +--+--+      +--+--+
20	;               |CAR.1|      |CAR.2|
21	;               +--+--+      +--+--+
22	;                  |            |
23	;                  +------+-----+
24	;                         |
25	;                         V
26	;                        OUT
27
28
29;my flags on Ubuntu: -odac -b1024 -B2048 -+rtaudio=alsa -+rtmidi=alsa -Ma -m0 --midi-key-oct=4 --midi-velocity-amp=5
30<CsoundSynthesizer>
31<CsOptions>
32
33</CsOptions>
34<CsInstruments>
35sr 		= 44100	;SAMPLE RATE
36ksmps 	= 1		;NUMBER OF AUDIO SAMPLES IN EACH CONTROL CYCLE
37nchnls	= 2		;NUMBER OF CHANNELS (2=STEREO)
380dbfs	= 1		;MAXIMUM AMPLITUDE REGARDLESS OF BIT DEPTH
39
40
41gisine		ftgen	0, 0, 4096, 10, 1						;FUNCTION TABLE THAT STORES A SINGLE CYCLE OF A SINE WAVE
42giExp20000	ftgen	0, 0, 129, -25, 0, 20.0, 128, 20000.0		;TABLES FOR EXP SLIDER
43
44
45instr	10	;GUI
46	ktrig	metro	10
47	if (ktrig == 1)	then
48		kbasefreq		invalue 	"Base_Frequency"
49		gkbasefreq	tablei	kbasefreq, giExp20000, 1
50					outvalue	"Base_Frequency_Value", gkbasefreq
51		gkFTune1		invalue 	"Fine_Tune_1"
52		gkFTune2		invalue 	"Fine_Tune_2"
53		gkindex1		invalue 	"Modulation_Index_1"
54		gkindex2		invalue 	"Modulation_Index_2"
55		gkCar1Amp		invalue 	"Carrier_Amplitude_1"
56		gkCar2Amp		invalue 	"Carrier_Amplitude_2"
57		gkGain		invalue 	"Master_Gain"
58		gkCar1Ratio	invalue	"Carrier1_Frequency"
59		gkMod1Ratio	invalue	"Modulator1_Frequency"
60		gkCar2Ratio	invalue	"Carrier2_Frequency"
61		gkMod2Ratio	invalue	"Modulator2_Frequency"
62	endif
63endin
64
65instr	1	;FM INSTRUMENT
66	if p4!=0 then													;MIDI
67		ioct		= p4												;READ OCT VALUE FROM MIDI INPUT
68		iamp		= p5												;READ midi-velocity-amp FROM MIDI INPUT
69		kCar1Amp	= iamp * gkCar1Amp									;SET AMPLITUDE TO RECEIVED p5 RECEIVED FROM INSTR 1 (I.E. MIDI VELOCITY) MULTIPLIED BY SLIDER gkCar1Amp.
70		kCar2Amp	= iamp * gkCar2Amp									;SET AMPLITUDE TO RECEIVED p5 RECEIVED FROM INSTR 1 (I.E. MIDI VELOCITY) MULTIPLIED BY SLIDER gkCar2Amp.
71		kindex1	= iamp * gkindex1
72		kindex2	= iamp * gkindex2
73		;PITCH BEND===========================================================================================================================================================
74		iSemitoneBendRange = 4										;PITCH BEND RANGE IN SEMITONES
75		imin		= 0												;EQUILIBRIUM POSITION
76		imax		= iSemitoneBendRange * .0833333						;MAX PITCH DISPLACEMENT (IN oct FORMAT)
77		kbend	pchbend	imin, imax								;PITCH BEND VARIABLE (IN oct FORMAT)
78		kbasefreq	=	cpsoct(ioct + kbend)							;SET FUNDEMENTAL FROM MIDI
79		;=====================================================================================================================================================================
80	else															;GUI
81		kbasefreq	= gkbasefreq
82		kCar1Amp	= gkCar1Amp										;SET kCar1Amp TO SLIDER VALUE gkCar1Amp
83		kCar2Amp	= gkCar2Amp										;SET kCar2Amp TO SLIDER VALUE gkCar2Amp
84		kindex1	= gkindex1
85		kindex2	= gkindex2
86	endif
87
88	iporttime		=		.02										;PORTAMENTO TIME (TO BE APPLIED TO K-RATE VARIABLES IN ORDER TO IMPLEMENT DAMPING)
89	kporttime		linseg	0, .001, iporttime, 1, iporttime				;FINAL VARIABLE WILL RAMP UP
90
91	kbasefreq		portk	kbasefreq, kporttime						;PORTAMENTO APPLIED
92	kindex1		portk	kindex1, kporttime							;PORTAMENTO APPLIED
93	kindex2		portk	kindex2, kporttime							;PORTAMENTO APPLIED
94	kCar1Amp		portk	kCar1Amp, kporttime							;PORTAMENTO APPLIED
95	kCar2Amp		portk	kCar2Amp, kporttime							;PORTAMENTO APPLIED
96	kFTune1		portk	gkFTune1,  kporttime						;PORTAMENTO APPLIED
97	kFTune2		portk	gkFTune2,  kporttime						;PORTAMENTO APPLIED
98	kGain		portk	gkGain,  kporttime							;PORTAMENTO APPLIED
99
100	kMltplier1	=	cpsoct(8+(kFTune1*.001*(5/6)))/cpsoct(8)
101	kMltplier2	=	cpsoct(8+(kFTune2*.001*(5/6)))/cpsoct(8)
102
103	kpeakdeviation1	=	kbasefreq * kindex1							;CALCUALATE THE PEAK DEVIATION OF THE MODULATOR FROM THE VALUES GIVEN FOR BASE FREQUENCY AND THE INDEX OF MODULATION
104	kpeakdeviation2	=	kbasefreq * kindex2							;CALCUALATE THE PEAK DEVIATION OF THE MODULATOR FROM THE VALUES GIVEN FOR BASE FREQUENCY AND THE INDEX OF MODULATION
105
106	aAntiClick	linsegr	0,0.001,1,0.01,0							;ANTI CLICK ENVELOPE
107
108	;OUTPUT		OPCODE	AMPLITUDE            |     FREQUENCY                         		    | FUNCTION_TABLE
109	aModulator1	oscili	kpeakdeviation1,      kbasefreq * gkMod1Ratio * kMltplier1,                  gisine			;DEFINE THE MODULATOR WAVEFORM
110	aCarrier1		oscili	kCar1Amp*aAntiClick,  ((kbasefreq * gkCar1Ratio) + aModulator1) * kMltplier1, gisine			;DEFINE THE CARRIER WAVEFORM (NOTE HOW ITS FREQUENCY IS MODULATED (THROUGH ADDITION) BY THE AUDIO OUTPUT OF THE MODULATOR WAVEFORM)
111	aModulator2	oscili	kpeakdeviation2,      (kbasefreq * gkMod2Ratio) * kMltplier2,                 gisine			;DEFINE THE MODULATOR WAVEFORM
112	aCarrier2		oscili	kCar2Amp*aAntiClick,  ((kbasefreq * gkCar2Ratio) + aModulator2) * kMltplier2, gisine			;DEFINE THE CARRIER WAVEFORM (NOTE HOW ITS FREQUENCY IS MODULATED (THROUGH ADDITION) BY THE AUDIO OUTPUT OF THE MODULATOR WAVEFORM)
113	aMix			sum		aCarrier1, aCarrier2
114				outs		aMix*.5*kGain, aMix*.5*kGain														;SEND THE AUDIO OUTPUT OF THE CARRIERS TO THE OUTPUTS
115
116	ktrig	  	metro	10																			;CREATE A REPEATING TRIGGER SIGNAL
117	if ktrig == 1 then
118			outvalue		"Peak_Dev_1", kpeakdeviation1
119			outvalue		"Peak_Dev_2", kpeakdeviation2
120	endif
121endin
122
123instr	2	;INIT
124		outvalue	"_SetPresetIndex", 0
125endin
126</CsInstruments>
127<CsScore>
128;INSTR | START | DURATION
129i 10		0	   3600		;GUI
130i 2	     0.1		 0		;INIT
131</CsScore>
132</CsoundSynthesizer>
133
134<bsbPanel>
135 <label>Widgets</label>
136 <objectName/>
137 <x>344</x>
138 <y>245</y>
139 <width>833</width>
140 <height>484</height>
141 <visible>true</visible>
142 <uuid/>
143 <bgcolor mode="background">
144  <r>241</r>
145  <g>226</g>
146  <b>185</b>
147 </bgcolor>
148 <bsbObject version="2" type="BSBLabel">
149  <objectName/>
150  <x>2</x>
151  <y>2</y>
152  <width>536</width>
153  <height>480</height>
154  <uuid>{aa607456-d368-4d59-8497-d16d608404c3}</uuid>
155  <visible>true</visible>
156  <midichan>0</midichan>
157  <midicc>0</midicc>
158  <label/>
159  <alignment>center</alignment>
160  <font>DejaVu Sans</font>
161  <fontsize>18</fontsize>
162  <precision>3</precision>
163  <color>
164   <r>255</r>
165   <g>255</g>
166   <b>255</b>
167  </color>
168  <bgcolor mode="background">
169   <r>5</r>
170   <g>27</g>
171   <b>150</b>
172  </bgcolor>
173  <bordermode>border</bordermode>
174  <borderradius>5</borderradius>
175  <borderwidth>2</borderwidth>
176 </bsbObject>
177 <bsbObject version="2" type="BSBLabel">
178  <objectName/>
179  <x>538</x>
180  <y>2</y>
181  <width>289</width>
182  <height>245</height>
183  <uuid>{74928ed2-b701-4668-9a11-74763d317e9b}</uuid>
184  <visible>true</visible>
185  <midichan>0</midichan>
186  <midicc>0</midicc>
187  <label/>
188  <alignment>center</alignment>
189  <font>DejaVu Sans</font>
190  <fontsize>18</fontsize>
191  <precision>3</precision>
192  <color>
193   <r>255</r>
194   <g>255</g>
195   <b>255</b>
196  </color>
197  <bgcolor mode="background">
198   <r>5</r>
199   <g>27</g>
200   <b>150</b>
201  </bgcolor>
202  <bordermode>border</bordermode>
203  <borderradius>5</borderradius>
204  <borderwidth>2</borderwidth>
205 </bsbObject>
206 <bsbObject version="2" type="BSBLabel">
207  <objectName/>
208  <x>542</x>
209  <y>56</y>
210  <width>282</width>
211  <height>188</height>
212  <uuid>{d4bdb5ce-87d8-4c8c-9c64-40ec2eed6f5a}</uuid>
213  <visible>true</visible>
214  <midichan>0</midichan>
215  <midicc>0</midicc>
216  <label>--------------------------------------------------------------------
217This example demonstrates a four oscillator algorithm that combines the audio outputs of two modulator-carrier pairs.
218Each carrier-modulator pair has a fine tune control which facilitates detuning of both the modulator and the carrier of that pair.
219This function facilitates the introduction of beating effects between the two oscillator pairs.</label>
220  <alignment>left</alignment>
221  <font>Liberation Sans</font>
222  <fontsize>14</fontsize>
223  <precision>3</precision>
224  <color>
225   <r>255</r>
226   <g>255</g>
227   <b>255</b>
228  </color>
229  <bgcolor mode="nobackground">
230   <r>255</r>
231   <g>255</g>
232   <b>255</b>
233  </bgcolor>
234  <bordermode>noborder</bordermode>
235  <borderradius>1</borderradius>
236  <borderwidth>1</borderwidth>
237 </bsbObject>
238 <bsbObject version="2" type="BSBButton">
239  <objectName/>
240  <x>8</x>
241  <y>6</y>
242  <width>124</width>
243  <height>30</height>
244  <uuid>{24979132-c53f-4414-ac6b-6b4f503ecfe8}</uuid>
245  <visible>true</visible>
246  <midichan>0</midichan>
247  <midicc>0</midicc>
248  <type>event</type>
249  <pressedValue>1.00000000</pressedValue>
250  <stringvalue/>
251  <text> ON / OFF (MIDI)</text>
252  <image>/</image>
253  <eventLine>i 1 0 -1</eventLine>
254  <latch>true</latch>
255  <latched>false</latched>
256 </bsbObject>
257 <bsbObject version="2" type="BSBDisplay">
258  <objectName>Master_Gain</objectName>
259  <x>460</x>
260  <y>411</y>
261  <width>60</width>
262  <height>30</height>
263  <uuid>{745d6bee-b951-4a03-9fe8-9e10d5ae4556}</uuid>
264  <visible>true</visible>
265  <midichan>0</midichan>
266  <midicc>0</midicc>
267  <label>0.800</label>
268  <alignment>right</alignment>
269  <font>Liberation Sans</font>
270  <fontsize>9</fontsize>
271  <precision>3</precision>
272  <color>
273   <r>255</r>
274   <g>255</g>
275   <b>255</b>
276  </color>
277  <bgcolor mode="nobackground">
278   <r>255</r>
279   <g>255</g>
280   <b>255</b>
281  </bgcolor>
282  <bordermode>noborder</bordermode>
283  <borderradius>1</borderradius>
284  <borderwidth>1</borderwidth>
285 </bsbObject>
286 <bsbObject version="2" type="BSBHSlider">
287  <objectName>Master_Gain</objectName>
288  <x>20</x>
289  <y>388</y>
290  <width>500</width>
291  <height>27</height>
292  <uuid>{06814721-6151-4baa-84e2-8f39843b07a4}</uuid>
293  <visible>true</visible>
294  <midichan>0</midichan>
295  <midicc>0</midicc>
296  <minimum>0.00000000</minimum>
297  <maximum>1.00000000</maximum>
298  <value>0.80000001</value>
299  <mode>lin</mode>
300  <mouseControl act="jump">continuous</mouseControl>
301  <resolution>-1.00000000</resolution>
302  <randomizable group="0">false</randomizable>
303 </bsbObject>
304 <bsbObject version="2" type="BSBLabel">
305  <objectName/>
306  <x>20</x>
307  <y>411</y>
308  <width>180</width>
309  <height>30</height>
310  <uuid>{c6d7165c-6730-426f-b293-52b411bc73cf}</uuid>
311  <visible>true</visible>
312  <midichan>0</midichan>
313  <midicc>0</midicc>
314  <label>Master Gain</label>
315  <alignment>left</alignment>
316  <font>Liberation Sans</font>
317  <fontsize>10</fontsize>
318  <precision>3</precision>
319  <color>
320   <r>255</r>
321   <g>255</g>
322   <b>255</b>
323  </color>
324  <bgcolor mode="nobackground">
325   <r>255</r>
326   <g>255</g>
327   <b>255</b>
328  </bgcolor>
329  <bordermode>noborder</bordermode>
330  <borderradius>1</borderradius>
331  <borderwidth>1</borderwidth>
332 </bsbObject>
333 <bsbObject version="2" type="BSBLabel">
334  <objectName/>
335  <x>19</x>
336  <y>90</y>
337  <width>180</width>
338  <height>30</height>
339  <uuid>{541ace1b-b1de-4c04-8d84-1de90288dded}</uuid>
340  <visible>true</visible>
341  <midichan>0</midichan>
342  <midicc>0</midicc>
343  <label>Base Frequency</label>
344  <alignment>left</alignment>
345  <font>Liberation Sans</font>
346  <fontsize>10</fontsize>
347  <precision>3</precision>
348  <color>
349   <r>255</r>
350   <g>255</g>
351   <b>255</b>
352  </color>
353  <bgcolor mode="nobackground">
354   <r>255</r>
355   <g>255</g>
356   <b>255</b>
357  </bgcolor>
358  <bordermode>noborder</bordermode>
359  <borderradius>1</borderradius>
360  <borderwidth>1</borderwidth>
361 </bsbObject>
362 <bsbObject version="2" type="BSBHSlider">
363  <objectName>Base_Frequency</objectName>
364  <x>19</x>
365  <y>67</y>
366  <width>500</width>
367  <height>27</height>
368  <uuid>{eac88081-deaa-45c0-b896-32a3ffedc74a}</uuid>
369  <visible>true</visible>
370  <midichan>0</midichan>
371  <midicc>0</midicc>
372  <minimum>0.00000000</minimum>
373  <maximum>1.00000000</maximum>
374  <value>0.23295900</value>
375  <mode>lin</mode>
376  <mouseControl act="jump">continuous</mouseControl>
377  <resolution>-1.00000000</resolution>
378  <randomizable group="0">false</randomizable>
379 </bsbObject>
380 <bsbObject version="2" type="BSBDisplay">
381  <objectName>Base_Frequency_Value</objectName>
382  <x>459</x>
383  <y>90</y>
384  <width>60</width>
385  <height>30</height>
386  <uuid>{3be43919-ad18-4aef-b554-03c4b4d991c3}</uuid>
387  <visible>true</visible>
388  <midichan>0</midichan>
389  <midicc>0</midicc>
390  <label>100.000</label>
391  <alignment>right</alignment>
392  <font>Liberation Sans</font>
393  <fontsize>9</fontsize>
394  <precision>3</precision>
395  <color>
396   <r>255</r>
397   <g>255</g>
398   <b>255</b>
399  </color>
400  <bgcolor mode="nobackground">
401   <r>255</r>
402   <g>255</g>
403   <b>255</b>
404  </bgcolor>
405  <bordermode>noborder</bordermode>
406  <borderradius>1</borderradius>
407  <borderwidth>1</borderwidth>
408 </bsbObject>
409 <bsbObject version="2" type="BSBLabel">
410  <objectName/>
411  <x>155</x>
412  <y>5</y>
413  <width>305</width>
414  <height>35</height>
415  <uuid>{c35c6c13-7799-4395-9775-f3006b3eafcb}</uuid>
416  <visible>true</visible>
417  <midichan>0</midichan>
418  <midicc>0</midicc>
419  <label>FM Synthesis</label>
420  <alignment>center</alignment>
421  <font>Liberation Sans</font>
422  <fontsize>18</fontsize>
423  <precision>3</precision>
424  <color>
425   <r>255</r>
426   <g>255</g>
427   <b>255</b>
428  </color>
429  <bgcolor mode="nobackground">
430   <r>255</r>
431   <g>255</g>
432   <b>255</b>
433  </bgcolor>
434  <bordermode>noborder</bordermode>
435  <borderradius>1</borderradius>
436  <borderwidth>1</borderwidth>
437 </bsbObject>
438 <bsbObject version="2" type="BSBLabel">
439  <objectName/>
440  <x>114</x>
441  <y>28</y>
442  <width>387</width>
443  <height>31</height>
444  <uuid>{20b81ac9-e24a-4a60-bdb1-2c3bc2c578cf}</uuid>
445  <visible>true</visible>
446  <midichan>0</midichan>
447  <midicc>0</midicc>
448  <label>Modulator->Modulator->Carrier</label>
449  <alignment>center</alignment>
450  <font>Liberation Sans</font>
451  <fontsize>18</fontsize>
452  <precision>3</precision>
453  <color>
454   <r>255</r>
455   <g>255</g>
456   <b>255</b>
457  </color>
458  <bgcolor mode="nobackground">
459   <r>255</r>
460   <g>255</g>
461   <b>255</b>
462  </bgcolor>
463  <bordermode>noborder</bordermode>
464  <borderradius>1</borderradius>
465  <borderwidth>1</borderwidth>
466 </bsbObject>
467 <bsbObject version="2" type="BSBLabel">
468  <objectName/>
469  <x>540</x>
470  <y>28</y>
471  <width>288</width>
472  <height>50</height>
473  <uuid>{dd72e305-5880-4889-b044-bf9d9333880b}</uuid>
474  <visible>true</visible>
475  <midichan>0</midichan>
476  <midicc>0</midicc>
477  <label>Modulator->Modulator->Carrier</label>
478  <alignment>center</alignment>
479  <font>Liberation Sans</font>
480  <fontsize>18</fontsize>
481  <precision>3</precision>
482  <color>
483   <r>255</r>
484   <g>255</g>
485   <b>255</b>
486  </color>
487  <bgcolor mode="nobackground">
488   <r>255</r>
489   <g>255</g>
490   <b>255</b>
491  </bgcolor>
492  <bordermode>noborder</bordermode>
493  <borderradius>1</borderradius>
494  <borderwidth>1</borderwidth>
495 </bsbObject>
496 <bsbObject version="2" type="BSBLabel">
497  <objectName/>
498  <x>571</x>
499  <y>5</y>
500  <width>250</width>
501  <height>35</height>
502  <uuid>{28873f9f-f41a-4961-9ae9-c3948ecc50f0}</uuid>
503  <visible>true</visible>
504  <midichan>0</midichan>
505  <midicc>0</midicc>
506  <label>FM Synthesis</label>
507  <alignment>center</alignment>
508  <font>Liberation Sans</font>
509  <fontsize>18</fontsize>
510  <precision>3</precision>
511  <color>
512   <r>255</r>
513   <g>255</g>
514   <b>255</b>
515  </color>
516  <bgcolor mode="nobackground">
517   <r>255</r>
518   <g>255</g>
519   <b>255</b>
520  </bgcolor>
521  <bordermode>noborder</bordermode>
522  <borderradius>1</borderradius>
523  <borderwidth>1</borderwidth>
524 </bsbObject>
525 <bsbObject version="2" type="BSBLabel">
526  <objectName/>
527  <x>132</x>
528  <y>436</y>
529  <width>294</width>
530  <height>38</height>
531  <uuid>{024ca7a4-84dd-4d37-bbb5-1963bc37de79}</uuid>
532  <visible>true</visible>
533  <midichan>0</midichan>
534  <midicc>0</midicc>
535  <label>Presets</label>
536  <alignment>left</alignment>
537  <font>Liberation Sans</font>
538  <fontsize>14</fontsize>
539  <precision>3</precision>
540  <color>
541   <r>255</r>
542   <g>255</g>
543   <b>255</b>
544  </color>
545  <bgcolor mode="nobackground">
546   <r>255</r>
547   <g>255</g>
548   <b>255</b>
549  </bgcolor>
550  <bordermode>border</bordermode>
551  <borderradius>1</borderradius>
552  <borderwidth>1</borderwidth>
553 </bsbObject>
554 <bsbObject version="2" type="BSBSpinBox">
555  <objectName>_SetPresetIndex</objectName>
556  <x>189</x>
557  <y>441</y>
558  <width>44</width>
559  <height>28</height>
560  <uuid>{dace86e6-2bd1-4e11-8230-036973772d8f}</uuid>
561  <visible>true</visible>
562  <midichan>0</midichan>
563  <midicc>0</midicc>
564  <alignment>center</alignment>
565  <font>Liberation Sans</font>
566  <fontsize>16</fontsize>
567  <color>
568   <r>0</r>
569   <g>0</g>
570   <b>0</b>
571  </color>
572  <bgcolor mode="nobackground">
573   <r>255</r>
574   <g>255</g>
575   <b>255</b>
576  </bgcolor>
577  <resolution>1.00000000</resolution>
578  <minimum>0</minimum>
579  <maximum>10</maximum>
580  <randomizable group="0">false</randomizable>
581  <value>0</value>
582 </bsbObject>
583 <bsbObject version="2" type="BSBDisplay">
584  <objectName>_GetPresetName</objectName>
585  <x>241</x>
586  <y>440</y>
587  <width>180</width>
588  <height>30</height>
589  <uuid>{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}</uuid>
590  <visible>true</visible>
591  <midichan>0</midichan>
592  <midicc>0</midicc>
593  <label>Init</label>
594  <alignment>center</alignment>
595  <font>Liberation Sans</font>
596  <fontsize>14</fontsize>
597  <precision>3</precision>
598  <color>
599   <r>0</r>
600   <g>0</g>
601   <b>0</b>
602  </color>
603  <bgcolor mode="background">
604   <r>255</r>
605   <g>255</g>
606   <b>255</b>
607  </bgcolor>
608  <bordermode>border</bordermode>
609  <borderradius>1</borderradius>
610  <borderwidth>1</borderwidth>
611 </bsbObject>
612 <bsbObject version="2" type="BSBLabel">
613  <objectName/>
614  <x>6</x>
615  <y>119</y>
616  <width>262</width>
617  <height>260</height>
618  <uuid>{492a6416-ef71-4571-9aad-d354d427a342}</uuid>
619  <visible>true</visible>
620  <midichan>0</midichan>
621  <midicc>0</midicc>
622  <label/>
623  <alignment>left</alignment>
624  <font>Liberation Sans</font>
625  <fontsize>10</fontsize>
626  <precision>3</precision>
627  <color>
628   <r>255</r>
629   <g>255</g>
630   <b>255</b>
631  </color>
632  <bgcolor mode="nobackground">
633   <r>255</r>
634   <g>255</g>
635   <b>255</b>
636  </bgcolor>
637  <bordermode>border</bordermode>
638  <borderradius>1</borderradius>
639  <borderwidth>1</borderwidth>
640 </bsbObject>
641 <bsbObject version="2" type="BSBLabel">
642  <objectName/>
643  <x>271</x>
644  <y>119</y>
645  <width>262</width>
646  <height>260</height>
647  <uuid>{b2074a69-e364-44d9-965c-8611a942d0c6}</uuid>
648  <visible>true</visible>
649  <midichan>0</midichan>
650  <midicc>0</midicc>
651  <label/>
652  <alignment>left</alignment>
653  <font>Liberation Sans</font>
654  <fontsize>10</fontsize>
655  <precision>3</precision>
656  <color>
657   <r>255</r>
658   <g>255</g>
659   <b>255</b>
660  </color>
661  <bgcolor mode="nobackground">
662   <r>255</r>
663   <g>255</g>
664   <b>255</b>
665  </bgcolor>
666  <bordermode>border</bordermode>
667  <borderradius>1</borderradius>
668  <borderwidth>1</borderwidth>
669 </bsbObject>
670 <bsbObject version="2" type="BSBDisplay">
671  <objectName>Fine_Tune_1</objectName>
672  <x>202</x>
673  <y>148</y>
674  <width>60</width>
675  <height>30</height>
676  <uuid>{19817529-3f8b-44d0-9a9a-67d17b4b37e7}</uuid>
677  <visible>true</visible>
678  <midichan>0</midichan>
679  <midicc>0</midicc>
680  <label>0.000</label>
681  <alignment>right</alignment>
682  <font>Liberation Sans</font>
683  <fontsize>9</fontsize>
684  <precision>3</precision>
685  <color>
686   <r>255</r>
687   <g>255</g>
688   <b>255</b>
689  </color>
690  <bgcolor mode="nobackground">
691   <r>255</r>
692   <g>255</g>
693   <b>255</b>
694  </bgcolor>
695  <bordermode>noborder</bordermode>
696  <borderradius>1</borderradius>
697  <borderwidth>1</borderwidth>
698 </bsbObject>
699 <bsbObject version="2" type="BSBHSlider">
700  <objectName>Fine_Tune_1</objectName>
701  <x>12</x>
702  <y>125</y>
703  <width>250</width>
704  <height>27</height>
705  <uuid>{22c04b50-69c8-4d1e-bd32-2681a17bf37c}</uuid>
706  <visible>true</visible>
707  <midichan>0</midichan>
708  <midicc>0</midicc>
709  <minimum>-100.00000000</minimum>
710  <maximum>100.00000000</maximum>
711  <value>0.00000000</value>
712  <mode>lin</mode>
713  <mouseControl act="jump">continuous</mouseControl>
714  <resolution>-1.00000000</resolution>
715  <randomizable group="0">false</randomizable>
716 </bsbObject>
717 <bsbObject version="2" type="BSBLabel">
718  <objectName/>
719  <x>12</x>
720  <y>148</y>
721  <width>180</width>
722  <height>30</height>
723  <uuid>{0568f562-1c69-4e8e-b2c5-d587f753e160}</uuid>
724  <visible>true</visible>
725  <midichan>0</midichan>
726  <midicc>0</midicc>
727  <label>Fine Tune (Cents) 1</label>
728  <alignment>left</alignment>
729  <font>Liberation Sans</font>
730  <fontsize>10</fontsize>
731  <precision>3</precision>
732  <color>
733   <r>255</r>
734   <g>255</g>
735   <b>255</b>
736  </color>
737  <bgcolor mode="nobackground">
738   <r>255</r>
739   <g>255</g>
740   <b>255</b>
741  </bgcolor>
742  <bordermode>noborder</bordermode>
743  <borderradius>1</borderradius>
744  <borderwidth>1</borderwidth>
745 </bsbObject>
746 <bsbObject version="2" type="BSBLabel">
747  <objectName/>
748  <x>88</x>
749  <y>219</y>
750  <width>80</width>
751  <height>38</height>
752  <uuid>{6cdfbd9c-bcd2-42fe-86dc-d1c1f273d105}</uuid>
753  <visible>true</visible>
754  <midichan>0</midichan>
755  <midicc>0</midicc>
756  <label>P Dev 1</label>
757  <alignment>center</alignment>
758  <font>Liberation Sans</font>
759  <fontsize>10</fontsize>
760  <precision>3</precision>
761  <color>
762   <r>255</r>
763   <g>255</g>
764   <b>255</b>
765  </color>
766  <bgcolor mode="nobackground">
767   <r>255</r>
768   <g>255</g>
769   <b>255</b>
770  </bgcolor>
771  <bordermode>noborder</bordermode>
772  <borderradius>1</borderradius>
773  <borderwidth>1</borderwidth>
774 </bsbObject>
775 <bsbObject version="2" type="BSBDisplay">
776  <objectName>Peak_Dev_1</objectName>
777  <x>156</x>
778  <y>215</y>
779  <width>60</width>
780  <height>28</height>
781  <uuid>{6043e5fb-a628-4042-86fd-70a7c77c775a}</uuid>
782  <visible>true</visible>
783  <midichan>0</midichan>
784  <midicc>0</midicc>
785  <label>300.000</label>
786  <alignment>center</alignment>
787  <font>Liberation Sans</font>
788  <fontsize>9</fontsize>
789  <precision>3</precision>
790  <color>
791   <r>0</r>
792   <g>0</g>
793   <b>0</b>
794  </color>
795  <bgcolor mode="background">
796   <r>255</r>
797   <g>255</g>
798   <b>255</b>
799  </bgcolor>
800  <bordermode>border</bordermode>
801  <borderradius>1</borderradius>
802  <borderwidth>1</borderwidth>
803 </bsbObject>
804 <bsbObject version="2" type="BSBLabel">
805  <objectName/>
806  <x>34</x>
807  <y>290</y>
808  <width>70</width>
809  <height>50</height>
810  <uuid>{431fb03d-454f-484f-bea4-f4cc6a19ba49}</uuid>
811  <visible>true</visible>
812  <midichan>0</midichan>
813  <midicc>0</midicc>
814  <label>Carrier 1
815Frequency</label>
816  <alignment>center</alignment>
817  <font>Liberation Sans</font>
818  <fontsize>10</fontsize>
819  <precision>3</precision>
820  <color>
821   <r>255</r>
822   <g>255</g>
823   <b>255</b>
824  </color>
825  <bgcolor mode="nobackground">
826   <r>255</r>
827   <g>255</g>
828   <b>255</b>
829  </bgcolor>
830  <bordermode>noborder</bordermode>
831  <borderradius>1</borderradius>
832  <borderwidth>1</borderwidth>
833 </bsbObject>
834 <bsbObject version="2" type="BSBLabel">
835  <objectName/>
836  <x>157</x>
837  <y>290</y>
838  <width>70</width>
839  <height>50</height>
840  <uuid>{548865dd-f4ee-48cc-bd60-a96291ee52ba}</uuid>
841  <visible>true</visible>
842  <midichan>0</midichan>
843  <midicc>0</midicc>
844  <label>Modulator 1
845Frequency</label>
846  <alignment>center</alignment>
847  <font>Liberation Sans</font>
848  <fontsize>10</fontsize>
849  <precision>3</precision>
850  <color>
851   <r>255</r>
852   <g>255</g>
853   <b>255</b>
854  </color>
855  <bgcolor mode="nobackground">
856   <r>255</r>
857   <g>255</g>
858   <b>255</b>
859  </bgcolor>
860  <bordermode>noborder</bordermode>
861  <borderradius>1</borderradius>
862  <borderwidth>1</borderwidth>
863 </bsbObject>
864 <bsbObject version="2" type="BSBSpinBox">
865  <objectName>Modulator1_Frequency</objectName>
866  <x>156</x>
867  <y>261</y>
868  <width>80</width>
869  <height>28</height>
870  <uuid>{300e441a-2169-4b87-8eac-e6b4b1963e0f}</uuid>
871  <visible>true</visible>
872  <midichan>0</midichan>
873  <midicc>0</midicc>
874  <alignment>left</alignment>
875  <font>Liberation Sans</font>
876  <fontsize>14</fontsize>
877  <color>
878   <r>0</r>
879   <g>0</g>
880   <b>0</b>
881  </color>
882  <bgcolor mode="nobackground">
883   <r>255</r>
884   <g>255</g>
885   <b>255</b>
886  </bgcolor>
887  <resolution>0.00010000</resolution>
888  <minimum>0.125</minimum>
889  <maximum>20</maximum>
890  <randomizable group="0">false</randomizable>
891  <value>0.125</value>
892 </bsbObject>
893 <bsbObject version="2" type="BSBSpinBox">
894  <objectName>Carrier1_Frequency</objectName>
895  <x>34</x>
896  <y>261</y>
897  <width>80</width>
898  <height>28</height>
899  <uuid>{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}</uuid>
900  <visible>true</visible>
901  <midichan>0</midichan>
902  <midicc>0</midicc>
903  <alignment>left</alignment>
904  <font>Liberation Sans</font>
905  <fontsize>14</fontsize>
906  <color>
907   <r>0</r>
908   <g>0</g>
909   <b>0</b>
910  </color>
911  <bgcolor mode="nobackground">
912   <r>255</r>
913   <g>255</g>
914   <b>255</b>
915  </bgcolor>
916  <resolution>0.00010000</resolution>
917  <minimum>0.125</minimum>
918  <maximum>20</maximum>
919  <randomizable group="0">false</randomizable>
920  <value>0.125</value>
921 </bsbObject>
922 <bsbObject version="2" type="BSBLabel">
923  <objectName/>
924  <x>118</x>
925  <y>251</y>
926  <width>32</width>
927  <height>46</height>
928  <uuid>{7e299a1b-7b46-4b1d-9d11-304c6e06c0dc}</uuid>
929  <visible>true</visible>
930  <midichan>0</midichan>
931  <midicc>0</midicc>
932  <label>:</label>
933  <alignment>center</alignment>
934  <font>DejaVu Sans</font>
935  <fontsize>27</fontsize>
936  <precision>3</precision>
937  <color>
938   <r>255</r>
939   <g>255</g>
940   <b>255</b>
941  </color>
942  <bgcolor mode="nobackground">
943   <r>255</r>
944   <g>255</g>
945   <b>255</b>
946  </bgcolor>
947  <bordermode>noborder</bordermode>
948  <borderradius>1</borderradius>
949  <borderwidth>1</borderwidth>
950 </bsbObject>
951 <bsbObject version="2" type="BSBLabel">
952  <objectName/>
953  <x>12</x>
954  <y>354</y>
955  <width>180</width>
956  <height>30</height>
957  <uuid>{f366971a-6a33-479f-b52e-f235b6132e07}</uuid>
958  <visible>true</visible>
959  <midichan>0</midichan>
960  <midicc>0</midicc>
961  <label>Carrier Amplitude 1</label>
962  <alignment>left</alignment>
963  <font>Liberation Sans</font>
964  <fontsize>10</fontsize>
965  <precision>3</precision>
966  <color>
967   <r>255</r>
968   <g>255</g>
969   <b>255</b>
970  </color>
971  <bgcolor mode="nobackground">
972   <r>255</r>
973   <g>255</g>
974   <b>255</b>
975  </bgcolor>
976  <bordermode>noborder</bordermode>
977  <borderradius>1</borderradius>
978  <borderwidth>1</borderwidth>
979 </bsbObject>
980 <bsbObject version="2" type="BSBHSlider">
981  <objectName>Carrier_Amplitude_1</objectName>
982  <x>12</x>
983  <y>331</y>
984  <width>250</width>
985  <height>27</height>
986  <uuid>{b7efd329-6510-45a9-94f0-78a54b87fff8}</uuid>
987  <visible>true</visible>
988  <midichan>0</midichan>
989  <midicc>0</midicc>
990  <minimum>0.00000000</minimum>
991  <maximum>1.00000000</maximum>
992  <value>0.50000000</value>
993  <mode>lin</mode>
994  <mouseControl act="jump">continuous</mouseControl>
995  <resolution>-1.00000000</resolution>
996  <randomizable group="0">false</randomizable>
997 </bsbObject>
998 <bsbObject version="2" type="BSBDisplay">
999  <objectName>Carrier_Amplitude_1</objectName>
1000  <x>202</x>
1001  <y>354</y>
1002  <width>60</width>
1003  <height>30</height>
1004  <uuid>{b2fc8a45-cd01-4b05-86d9-02f362081001}</uuid>
1005  <visible>true</visible>
1006  <midichan>0</midichan>
1007  <midicc>0</midicc>
1008  <label>0.500</label>
1009  <alignment>right</alignment>
1010  <font>Liberation Sans</font>
1011  <fontsize>9</fontsize>
1012  <precision>3</precision>
1013  <color>
1014   <r>255</r>
1015   <g>255</g>
1016   <b>255</b>
1017  </color>
1018  <bgcolor mode="nobackground">
1019   <r>255</r>
1020   <g>255</g>
1021   <b>255</b>
1022  </bgcolor>
1023  <bordermode>noborder</bordermode>
1024  <borderradius>1</borderradius>
1025  <borderwidth>1</borderwidth>
1026 </bsbObject>
1027 <bsbObject version="2" type="BSBLabel">
1028  <objectName/>
1029  <x>12</x>
1030  <y>191</y>
1031  <width>180</width>
1032  <height>30</height>
1033  <uuid>{705344d8-23fc-4323-ae65-f795a4fed44a}</uuid>
1034  <visible>true</visible>
1035  <midichan>0</midichan>
1036  <midicc>0</midicc>
1037  <label>Modulation Index 1</label>
1038  <alignment>left</alignment>
1039  <font>Liberation Sans</font>
1040  <fontsize>10</fontsize>
1041  <precision>3</precision>
1042  <color>
1043   <r>255</r>
1044   <g>255</g>
1045   <b>255</b>
1046  </color>
1047  <bgcolor mode="nobackground">
1048   <r>255</r>
1049   <g>255</g>
1050   <b>255</b>
1051  </bgcolor>
1052  <bordermode>noborder</bordermode>
1053  <borderradius>1</borderradius>
1054  <borderwidth>1</borderwidth>
1055 </bsbObject>
1056 <bsbObject version="2" type="BSBHSlider">
1057  <objectName>Modulation_Index_1</objectName>
1058  <x>12</x>
1059  <y>168</y>
1060  <width>250</width>
1061  <height>27</height>
1062  <uuid>{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}</uuid>
1063  <visible>true</visible>
1064  <midichan>0</midichan>
1065  <midicc>0</midicc>
1066  <minimum>0.00000000</minimum>
1067  <maximum>50.00000000</maximum>
1068  <value>3.00000000</value>
1069  <mode>lin</mode>
1070  <mouseControl act="jump">continuous</mouseControl>
1071  <resolution>-1.00000000</resolution>
1072  <randomizable group="0">false</randomizable>
1073 </bsbObject>
1074 <bsbObject version="2" type="BSBDisplay">
1075  <objectName>Modulation_Index_1</objectName>
1076  <x>202</x>
1077  <y>191</y>
1078  <width>60</width>
1079  <height>30</height>
1080  <uuid>{bca63915-625a-402d-bd80-8f18abc114ad}</uuid>
1081  <visible>true</visible>
1082  <midichan>0</midichan>
1083  <midicc>0</midicc>
1084  <label>3.000</label>
1085  <alignment>right</alignment>
1086  <font>Liberation Sans</font>
1087  <fontsize>9</fontsize>
1088  <precision>3</precision>
1089  <color>
1090   <r>255</r>
1091   <g>255</g>
1092   <b>255</b>
1093  </color>
1094  <bgcolor mode="nobackground">
1095   <r>255</r>
1096   <g>255</g>
1097   <b>255</b>
1098  </bgcolor>
1099  <bordermode>noborder</bordermode>
1100  <borderradius>1</borderradius>
1101  <borderwidth>1</borderwidth>
1102 </bsbObject>
1103 <bsbObject version="2" type="BSBDisplay">
1104  <objectName>Modulation_Index_2</objectName>
1105  <x>468</x>
1106  <y>191</y>
1107  <width>60</width>
1108  <height>30</height>
1109  <uuid>{97a069e0-3849-4942-ac00-0ac762893744}</uuid>
1110  <visible>true</visible>
1111  <midichan>0</midichan>
1112  <midicc>0</midicc>
1113  <label>3.000</label>
1114  <alignment>right</alignment>
1115  <font>Liberation Sans</font>
1116  <fontsize>9</fontsize>
1117  <precision>3</precision>
1118  <color>
1119   <r>255</r>
1120   <g>255</g>
1121   <b>255</b>
1122  </color>
1123  <bgcolor mode="nobackground">
1124   <r>255</r>
1125   <g>255</g>
1126   <b>255</b>
1127  </bgcolor>
1128  <bordermode>noborder</bordermode>
1129  <borderradius>1</borderradius>
1130  <borderwidth>1</borderwidth>
1131 </bsbObject>
1132 <bsbObject version="2" type="BSBHSlider">
1133  <objectName>Modulation_Index_2</objectName>
1134  <x>278</x>
1135  <y>168</y>
1136  <width>250</width>
1137  <height>27</height>
1138  <uuid>{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}</uuid>
1139  <visible>true</visible>
1140  <midichan>0</midichan>
1141  <midicc>0</midicc>
1142  <minimum>0.00000000</minimum>
1143  <maximum>50.00000000</maximum>
1144  <value>3.00000000</value>
1145  <mode>lin</mode>
1146  <mouseControl act="jump">continuous</mouseControl>
1147  <resolution>-1.00000000</resolution>
1148  <randomizable group="0">false</randomizable>
1149 </bsbObject>
1150 <bsbObject version="2" type="BSBLabel">
1151  <objectName/>
1152  <x>278</x>
1153  <y>191</y>
1154  <width>180</width>
1155  <height>30</height>
1156  <uuid>{b4108041-4ee2-45b5-976d-faafc1186380}</uuid>
1157  <visible>true</visible>
1158  <midichan>0</midichan>
1159  <midicc>0</midicc>
1160  <label>Modulation Index 2</label>
1161  <alignment>left</alignment>
1162  <font>Liberation Sans</font>
1163  <fontsize>10</fontsize>
1164  <precision>3</precision>
1165  <color>
1166   <r>255</r>
1167   <g>255</g>
1168   <b>255</b>
1169  </color>
1170  <bgcolor mode="nobackground">
1171   <r>255</r>
1172   <g>255</g>
1173   <b>255</b>
1174  </bgcolor>
1175  <bordermode>noborder</bordermode>
1176  <borderradius>1</borderradius>
1177  <borderwidth>1</borderwidth>
1178 </bsbObject>
1179 <bsbObject version="2" type="BSBDisplay">
1180  <objectName>Carrier_Amplitude_2</objectName>
1181  <x>468</x>
1182  <y>354</y>
1183  <width>60</width>
1184  <height>30</height>
1185  <uuid>{0811f410-5216-48ad-ae60-0a1f122f28e7}</uuid>
1186  <visible>true</visible>
1187  <midichan>0</midichan>
1188  <midicc>0</midicc>
1189  <label>0.500</label>
1190  <alignment>right</alignment>
1191  <font>Liberation Sans</font>
1192  <fontsize>9</fontsize>
1193  <precision>3</precision>
1194  <color>
1195   <r>255</r>
1196   <g>255</g>
1197   <b>255</b>
1198  </color>
1199  <bgcolor mode="nobackground">
1200   <r>255</r>
1201   <g>255</g>
1202   <b>255</b>
1203  </bgcolor>
1204  <bordermode>noborder</bordermode>
1205  <borderradius>1</borderradius>
1206  <borderwidth>1</borderwidth>
1207 </bsbObject>
1208 <bsbObject version="2" type="BSBHSlider">
1209  <objectName>Carrier_Amplitude_2</objectName>
1210  <x>278</x>
1211  <y>331</y>
1212  <width>250</width>
1213  <height>27</height>
1214  <uuid>{85ae5c05-d87f-428f-8137-43dcd6a3b478}</uuid>
1215  <visible>true</visible>
1216  <midichan>0</midichan>
1217  <midicc>0</midicc>
1218  <minimum>0.00000000</minimum>
1219  <maximum>1.00000000</maximum>
1220  <value>0.50000000</value>
1221  <mode>lin</mode>
1222  <mouseControl act="jump">continuous</mouseControl>
1223  <resolution>-1.00000000</resolution>
1224  <randomizable group="0">false</randomizable>
1225 </bsbObject>
1226 <bsbObject version="2" type="BSBLabel">
1227  <objectName/>
1228  <x>278</x>
1229  <y>354</y>
1230  <width>180</width>
1231  <height>30</height>
1232  <uuid>{9c26fc9e-47c4-4121-9f67-fd47c21afecb}</uuid>
1233  <visible>true</visible>
1234  <midichan>0</midichan>
1235  <midicc>0</midicc>
1236  <label>Carrier Amplitude 2</label>
1237  <alignment>left</alignment>
1238  <font>Liberation Sans</font>
1239  <fontsize>10</fontsize>
1240  <precision>3</precision>
1241  <color>
1242   <r>255</r>
1243   <g>255</g>
1244   <b>255</b>
1245  </color>
1246  <bgcolor mode="nobackground">
1247   <r>255</r>
1248   <g>255</g>
1249   <b>255</b>
1250  </bgcolor>
1251  <bordermode>noborder</bordermode>
1252  <borderradius>1</borderradius>
1253  <borderwidth>1</borderwidth>
1254 </bsbObject>
1255 <bsbObject version="2" type="BSBLabel">
1256  <objectName/>
1257  <x>384</x>
1258  <y>251</y>
1259  <width>32</width>
1260  <height>46</height>
1261  <uuid>{16e81a17-fb48-4e48-937a-6cde4a39adf3}</uuid>
1262  <visible>true</visible>
1263  <midichan>0</midichan>
1264  <midicc>0</midicc>
1265  <label>:</label>
1266  <alignment>center</alignment>
1267  <font>DejaVu Sans</font>
1268  <fontsize>27</fontsize>
1269  <precision>3</precision>
1270  <color>
1271   <r>255</r>
1272   <g>255</g>
1273   <b>255</b>
1274  </color>
1275  <bgcolor mode="nobackground">
1276   <r>255</r>
1277   <g>255</g>
1278   <b>255</b>
1279  </bgcolor>
1280  <bordermode>noborder</bordermode>
1281  <borderradius>1</borderradius>
1282  <borderwidth>1</borderwidth>
1283 </bsbObject>
1284 <bsbObject version="2" type="BSBSpinBox">
1285  <objectName>Carrier2_Frequency</objectName>
1286  <x>300</x>
1287  <y>261</y>
1288  <width>80</width>
1289  <height>28</height>
1290  <uuid>{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}</uuid>
1291  <visible>true</visible>
1292  <midichan>0</midichan>
1293  <midicc>0</midicc>
1294  <alignment>left</alignment>
1295  <font>Liberation Sans</font>
1296  <fontsize>14</fontsize>
1297  <color>
1298   <r>0</r>
1299   <g>0</g>
1300   <b>0</b>
1301  </color>
1302  <bgcolor mode="nobackground">
1303   <r>255</r>
1304   <g>255</g>
1305   <b>255</b>
1306  </bgcolor>
1307  <resolution>0.00010000</resolution>
1308  <minimum>0.125</minimum>
1309  <maximum>20</maximum>
1310  <randomizable group="0">false</randomizable>
1311  <value>0.125</value>
1312 </bsbObject>
1313 <bsbObject version="2" type="BSBSpinBox">
1314  <objectName>Modulator2_Frequency</objectName>
1315  <x>422</x>
1316  <y>261</y>
1317  <width>80</width>
1318  <height>28</height>
1319  <uuid>{b26bd75c-d565-4767-b55d-fe88c5039ef7}</uuid>
1320  <visible>true</visible>
1321  <midichan>0</midichan>
1322  <midicc>0</midicc>
1323  <alignment>left</alignment>
1324  <font>Liberation Sans</font>
1325  <fontsize>14</fontsize>
1326  <color>
1327   <r>0</r>
1328   <g>0</g>
1329   <b>0</b>
1330  </color>
1331  <bgcolor mode="nobackground">
1332   <r>255</r>
1333   <g>255</g>
1334   <b>255</b>
1335  </bgcolor>
1336  <resolution>0.00010000</resolution>
1337  <minimum>0.125</minimum>
1338  <maximum>20</maximum>
1339  <randomizable group="0">false</randomizable>
1340  <value>0.125</value>
1341 </bsbObject>
1342 <bsbObject version="2" type="BSBLabel">
1343  <objectName/>
1344  <x>423</x>
1345  <y>290</y>
1346  <width>70</width>
1347  <height>50</height>
1348  <uuid>{b5bdfe63-bf87-430c-bc37-afa162f78f65}</uuid>
1349  <visible>true</visible>
1350  <midichan>0</midichan>
1351  <midicc>0</midicc>
1352  <label>Modulator 2
1353Frequency</label>
1354  <alignment>center</alignment>
1355  <font>Liberation Sans</font>
1356  <fontsize>10</fontsize>
1357  <precision>3</precision>
1358  <color>
1359   <r>255</r>
1360   <g>255</g>
1361   <b>255</b>
1362  </color>
1363  <bgcolor mode="nobackground">
1364   <r>255</r>
1365   <g>255</g>
1366   <b>255</b>
1367  </bgcolor>
1368  <bordermode>noborder</bordermode>
1369  <borderradius>1</borderradius>
1370  <borderwidth>1</borderwidth>
1371 </bsbObject>
1372 <bsbObject version="2" type="BSBLabel">
1373  <objectName/>
1374  <x>300</x>
1375  <y>290</y>
1376  <width>70</width>
1377  <height>50</height>
1378  <uuid>{6287b0be-80fd-4c73-8efd-606eef1d28cb}</uuid>
1379  <visible>true</visible>
1380  <midichan>0</midichan>
1381  <midicc>0</midicc>
1382  <label>Carrier 2
1383Frequency</label>
1384  <alignment>center</alignment>
1385  <font>Liberation Sans</font>
1386  <fontsize>10</fontsize>
1387  <precision>3</precision>
1388  <color>
1389   <r>255</r>
1390   <g>255</g>
1391   <b>255</b>
1392  </color>
1393  <bgcolor mode="nobackground">
1394   <r>255</r>
1395   <g>255</g>
1396   <b>255</b>
1397  </bgcolor>
1398  <bordermode>noborder</bordermode>
1399  <borderradius>1</borderradius>
1400  <borderwidth>1</borderwidth>
1401 </bsbObject>
1402 <bsbObject version="2" type="BSBDisplay">
1403  <objectName>Peak_Dev_2</objectName>
1404  <x>422</x>
1405  <y>215</y>
1406  <width>60</width>
1407  <height>28</height>
1408  <uuid>{d02c396b-85ed-4972-b83f-7ef7a2255ea7}</uuid>
1409  <visible>true</visible>
1410  <midichan>0</midichan>
1411  <midicc>0</midicc>
1412  <label>300.000</label>
1413  <alignment>center</alignment>
1414  <font>Liberation Sans</font>
1415  <fontsize>9</fontsize>
1416  <precision>3</precision>
1417  <color>
1418   <r>0</r>
1419   <g>0</g>
1420   <b>0</b>
1421  </color>
1422  <bgcolor mode="background">
1423   <r>255</r>
1424   <g>255</g>
1425   <b>255</b>
1426  </bgcolor>
1427  <bordermode>border</bordermode>
1428  <borderradius>1</borderradius>
1429  <borderwidth>1</borderwidth>
1430 </bsbObject>
1431 <bsbObject version="2" type="BSBLabel">
1432  <objectName/>
1433  <x>354</x>
1434  <y>219</y>
1435  <width>80</width>
1436  <height>38</height>
1437  <uuid>{f1d9d325-283a-4be3-867b-2ce170aedcf4}</uuid>
1438  <visible>true</visible>
1439  <midichan>0</midichan>
1440  <midicc>0</midicc>
1441  <label>P Dev 2</label>
1442  <alignment>center</alignment>
1443  <font>Liberation Sans</font>
1444  <fontsize>10</fontsize>
1445  <precision>3</precision>
1446  <color>
1447   <r>255</r>
1448   <g>255</g>
1449   <b>255</b>
1450  </color>
1451  <bgcolor mode="nobackground">
1452   <r>255</r>
1453   <g>255</g>
1454   <b>255</b>
1455  </bgcolor>
1456  <bordermode>noborder</bordermode>
1457  <borderradius>1</borderradius>
1458  <borderwidth>1</borderwidth>
1459 </bsbObject>
1460 <bsbObject version="2" type="BSBLabel">
1461  <objectName/>
1462  <x>278</x>
1463  <y>148</y>
1464  <width>180</width>
1465  <height>30</height>
1466  <uuid>{16f9c06a-d78a-4191-8737-dc6b0e5e71aa}</uuid>
1467  <visible>true</visible>
1468  <midichan>0</midichan>
1469  <midicc>0</midicc>
1470  <label>Fine Tune (Cents) 2</label>
1471  <alignment>left</alignment>
1472  <font>Liberation Sans</font>
1473  <fontsize>10</fontsize>
1474  <precision>3</precision>
1475  <color>
1476   <r>255</r>
1477   <g>255</g>
1478   <b>255</b>
1479  </color>
1480  <bgcolor mode="nobackground">
1481   <r>255</r>
1482   <g>255</g>
1483   <b>255</b>
1484  </bgcolor>
1485  <bordermode>noborder</bordermode>
1486  <borderradius>1</borderradius>
1487  <borderwidth>1</borderwidth>
1488 </bsbObject>
1489 <bsbObject version="2" type="BSBHSlider">
1490  <objectName>Fine_Tune_2</objectName>
1491  <x>278</x>
1492  <y>125</y>
1493  <width>250</width>
1494  <height>27</height>
1495  <uuid>{6ad05378-e543-444d-86f0-d8f3f0d31cbb}</uuid>
1496  <visible>true</visible>
1497  <midichan>0</midichan>
1498  <midicc>0</midicc>
1499  <minimum>-100.00000000</minimum>
1500  <maximum>100.00000000</maximum>
1501  <value>0.00000000</value>
1502  <mode>lin</mode>
1503  <mouseControl act="jump">continuous</mouseControl>
1504  <resolution>-1.00000000</resolution>
1505  <randomizable group="0">false</randomizable>
1506 </bsbObject>
1507 <bsbObject version="2" type="BSBDisplay">
1508  <objectName>Fine_Tune_2</objectName>
1509  <x>468</x>
1510  <y>148</y>
1511  <width>60</width>
1512  <height>30</height>
1513  <uuid>{f4ccbe4b-c888-49c9-9139-69f14cb57215}</uuid>
1514  <visible>true</visible>
1515  <midichan>0</midichan>
1516  <midicc>0</midicc>
1517  <label>0.000</label>
1518  <alignment>right</alignment>
1519  <font>Liberation Sans</font>
1520  <fontsize>9</fontsize>
1521  <precision>3</precision>
1522  <color>
1523   <r>255</r>
1524   <g>255</g>
1525   <b>255</b>
1526  </color>
1527  <bgcolor mode="nobackground">
1528   <r>255</r>
1529   <g>255</g>
1530   <b>255</b>
1531  </bgcolor>
1532  <bordermode>noborder</bordermode>
1533  <borderradius>1</borderradius>
1534  <borderwidth>1</borderwidth>
1535 </bsbObject>
1536</bsbPanel>
1537<bsbPresets>
1538<preset name="Init" number="0" >
1539<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1540<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1541<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1542<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1543<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1544<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.23295900</value>
1545<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >99.99994659</value>
1546<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >100.000</value>
1547<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >0.00000000</value>
1548<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1549<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Init</value>
1550<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >0.00000000</value>
1551<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >0.000</value>
1552<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >0.00000000</value>
1553<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >299.99984741</value>
1554<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >300.000</value>
1555<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >1.00000000</value>
1556<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >1.00000000</value>
1557<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1558<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1559<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1560<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >3.00000000</value>
1561<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >3.00000000</value>
1562<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >3.000</value>
1563<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >3.00000000</value>
1564<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >3.000</value>
1565<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >3.00000000</value>
1566<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1567<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1568<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1569<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >1.00000000</value>
1570<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >1.00000000</value>
1571<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >299.99984741</value>
1572<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >300.000</value>
1573<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >0.00000000</value>
1574<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >0.00000000</value>
1575<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >0.000</value>
1576</preset>
1577<preset name="Preset 1" number="1" >
1578<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1579<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1580<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1581<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1582<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1583<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.23148599</value>
1584<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >98.99987793</value>
1585<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >99.000</value>
1586<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >1.00000000</value>
1587<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1588<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 1</value>
1589<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >-4.00000000</value>
1590<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >-4.000</value>
1591<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >-4.00000000</value>
1592<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >128.78280640</value>
1593<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >128.783</value>
1594<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >1.29999995</value>
1595<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >1.00000000</value>
1596<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1597<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1598<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1599<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >3.00000000</value>
1600<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >3.00000000</value>
1601<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >3.000</value>
1602<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >3.00000000</value>
1603<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >3.000</value>
1604<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >3.00000000</value>
1605<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1606<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1607<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1608<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >1.00000000</value>
1609<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >1.30200005</value>
1610<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >128.78280640</value>
1611<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >128.783</value>
1612<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >1.33000004</value>
1613<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >1.33000004</value>
1614<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >1.330</value>
1615</preset>
1616<preset name="Preset 2" number="2" >
1617<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1618<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1619<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1620<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1621<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1622<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.33474699</value>
1623<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >202.00012207</value>
1624<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >202.000</value>
1625<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >2.00000000</value>
1626<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1627<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 2</value>
1628<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >-17.33300018</value>
1629<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >-17.333</value>
1630<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >-17.33300018</value>
1631<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >300.00000000</value>
1632<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >300.000</value>
1633<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >1.97599995</value>
1634<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >1.00000000</value>
1635<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1636<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1637<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1638<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >5.30000019</value>
1639<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >5.30000019</value>
1640<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >5.300</value>
1641<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >3.29999995</value>
1642<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >3.300</value>
1643<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >3.29999995</value>
1644<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1645<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1646<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1647<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >1.00000000</value>
1648<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >1.30200005</value>
1649<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >300.00000000</value>
1650<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >300.000</value>
1651<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >0.44440001</value>
1652<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >0.44400001</value>
1653<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >0.444</value>
1654</preset>
1655<preset name="Preset 3" number="3" >
1656<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1657<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1658<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1659<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1660<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1661<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.23295900</value>
1662<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >99.99994659</value>
1663<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >100.000</value>
1664<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >3.00000000</value>
1665<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1666<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 3</value>
1667<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >0.00000000</value>
1668<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >0.000</value>
1669<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >0.00000000</value>
1670<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >78.51667023</value>
1671<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >78.517</value>
1672<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >1.00000000</value>
1673<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >1.00000000</value>
1674<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1675<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1676<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1677<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >3.00000000</value>
1678<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >3.00000000</value>
1679<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >3.000</value>
1680<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >3.00000000</value>
1681<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >3.000</value>
1682<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >3.00000000</value>
1683<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1684<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1685<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1686<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >1.00000000</value>
1687<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >1.00000000</value>
1688<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >78.51667023</value>
1689<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >78.517</value>
1690<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >0.00000000</value>
1691<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >0.00000000</value>
1692<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >0.000</value>
1693</preset>
1694<preset name="Preset 4" number="4" >
1695<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1696<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1697<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1698<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1699<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1700<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.17496499</value>
1701<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >67.00029755</value>
1702<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >67.000</value>
1703<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >4.00000000</value>
1704<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1705<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 4</value>
1706<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >-0.44400001</value>
1707<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >-0.444</value>
1708<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >-0.44440001</value>
1709<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >300.00000000</value>
1710<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >300.000</value>
1711<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >4.00000000</value>
1712<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >5.00000000</value>
1713<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1714<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1715<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1716<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >7.33300018</value>
1717<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >7.33300018</value>
1718<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >7.333</value>
1719<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >4.00000000</value>
1720<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >4.000</value>
1721<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >4.00000000</value>
1722<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1723<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1724<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1725<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >3.00000000</value>
1726<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >2.00000000</value>
1727<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >300.00000000</value>
1728<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >300.000</value>
1729<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >17.33300018</value>
1730<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >17.33300018</value>
1731<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >17.333</value>
1732</preset>
1733<preset name="Preset 5" number="5" >
1734<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1735<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1736<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1737<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1738<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1739<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.22398700</value>
1740<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >94.00043488</value>
1741<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >94.000</value>
1742<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >5.00000000</value>
1743<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1744<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 5</value>
1745<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >-4.00000000</value>
1746<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >-4.000</value>
1747<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >-4.00000000</value>
1748<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >300.00000000</value>
1749<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >300.000</value>
1750<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >4.00000000</value>
1751<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >7.00000000</value>
1752<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1753<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1754<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1755<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >26.00000000</value>
1756<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >26.00000000</value>
1757<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >26.000</value>
1758<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >16.00000000</value>
1759<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >16.000</value>
1760<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >16.00000000</value>
1761<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1762<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1763<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1764<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >9.00000000</value>
1765<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >5.00000000</value>
1766<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >300.00000000</value>
1767<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >300.000</value>
1768<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >-1.33299994</value>
1769<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >-1.33299994</value>
1770<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >-1.333</value>
1771</preset>
1772<preset name="Preset 6" number="6" >
1773<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1774<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1775<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1776<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1777<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1778<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.24541400</value>
1779<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >108.99982452</value>
1780<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >109.000</value>
1781<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >6.00000000</value>
1782<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1783<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 6</value>
1784<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >-9.33300018</value>
1785<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >-9.333</value>
1786<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >-9.33300018</value>
1787<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >300.00000000</value>
1788<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >300.000</value>
1789<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >2.00000000</value>
1790<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >1.00000000</value>
1791<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1792<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1793<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1794<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >26.00000000</value>
1795<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >26.00000000</value>
1796<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >26.000</value>
1797<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >16.00000000</value>
1798<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >16.000</value>
1799<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >16.00000000</value>
1800<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1801<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1802<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1803<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >1.00000000</value>
1804<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >4.00000000</value>
1805<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >300.00000000</value>
1806<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >300.000</value>
1807<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >0.44440001</value>
1808<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >0.44400001</value>
1809<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >0.444</value>
1810</preset>
1811<preset name="Preset 7" number="7" >
1812<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1813<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1814<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1815<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1816<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1817<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.52976501</value>
1818<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >777.00048828</value>
1819<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >777.001</value>
1820<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >7.00000000</value>
1821<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1822<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 7</value>
1823<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >-2.22199988</value>
1824<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >-2.222</value>
1825<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >-2.22199988</value>
1826<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >300.00000000</value>
1827<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >300.000</value>
1828<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >0.75000000</value>
1829<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >1.00000000</value>
1830<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1831<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1832<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1833<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >2.66669989</value>
1834<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >2.66700006</value>
1835<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >2.667</value>
1836<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >3.77800012</value>
1837<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >3.778</value>
1838<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >3.77780008</value>
1839<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1840<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1841<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1842<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >1.00000000</value>
1843<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >0.50000000</value>
1844<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >300.00000000</value>
1845<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >300.000</value>
1846<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >0.44440001</value>
1847<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >0.44400001</value>
1848<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >0.444</value>
1849</preset>
1850<preset name="Preset 8" number="8" >
1851<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="1" >0.00000000</value>
1852<value id="{24979132-c53f-4414-ac6b-6b4f503ecfe8}" mode="4" >0</value>
1853<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="1" >0.80000001</value>
1854<value id="{745d6bee-b951-4a03-9fe8-9e10d5ae4556}" mode="4" >0.800</value>
1855<value id="{06814721-6151-4baa-84e2-8f39843b07a4}" mode="1" >0.80000001</value>
1856<value id="{eac88081-deaa-45c0-b896-32a3ffedc74a}" mode="1" >0.42057419</value>
1857<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="1" >365.45953369</value>
1858<value id="{3be43919-ad18-4aef-b554-03c4b4d991c3}" mode="4" >365.460</value>
1859<value id="{dace86e6-2bd1-4e11-8230-036973772d8f}" mode="1" >8.00000000</value>
1860<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="1" >0.00000000</value>
1861<value id="{f21d8bf3-cad5-40b6-ac3f-bbdcbe8f2a57}" mode="4" >Preset 8</value>
1862<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="1" >-0.44400001</value>
1863<value id="{19817529-3f8b-44d0-9a9a-67d17b4b37e7}" mode="4" >-0.444</value>
1864<value id="{22c04b50-69c8-4d1e-bd32-2681a17bf37c}" mode="1" >-0.44400001</value>
1865<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="1" >300.00000000</value>
1866<value id="{6043e5fb-a628-4042-86fd-70a7c77c775a}" mode="4" >300.000</value>
1867<value id="{300e441a-2169-4b87-8eac-e6b4b1963e0f}" mode="1" >2.29999995</value>
1868<value id="{4ccc97ef-2ce5-465c-bf12-0f2cfebd1ca7}" mode="1" >3.17000008</value>
1869<value id="{b7efd329-6510-45a9-94f0-78a54b87fff8}" mode="1" >0.50000000</value>
1870<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="1" >0.50000000</value>
1871<value id="{b2fc8a45-cd01-4b05-86d9-02f362081001}" mode="4" >0.500</value>
1872<value id="{e5ffeffc-7a8c-4ebf-98d2-f9ce13cb903d}" mode="1" >1.77779996</value>
1873<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="1" >1.77800000</value>
1874<value id="{bca63915-625a-402d-bd80-8f18abc114ad}" mode="4" >1.778</value>
1875<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="1" >2.22199988</value>
1876<value id="{97a069e0-3849-4942-ac00-0ac762893744}" mode="4" >2.222</value>
1877<value id="{f663bfda-6700-47d6-b0cf-b54aedc6b2a9}" mode="1" >2.22219992</value>
1878<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="1" >0.50000000</value>
1879<value id="{0811f410-5216-48ad-ae60-0a1f122f28e7}" mode="4" >0.500</value>
1880<value id="{85ae5c05-d87f-428f-8137-43dcd6a3b478}" mode="1" >0.50000000</value>
1881<value id="{9d38f46c-5c31-4fc1-acf7-fe37a4a69dfe}" mode="1" >1.17499995</value>
1882<value id="{b26bd75c-d565-4767-b55d-fe88c5039ef7}" mode="1" >4.36999989</value>
1883<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="1" >300.00000000</value>
1884<value id="{d02c396b-85ed-4972-b83f-7ef7a2255ea7}" mode="4" >300.000</value>
1885<value id="{6ad05378-e543-444d-86f0-d8f3f0d31cbb}" mode="1" >0.44440001</value>
1886<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="1" >0.44400001</value>
1887<value id="{f4ccbe4b-c888-49c9-9139-69f14cb57215}" mode="4" >0.444</value>
1888</preset>
1889</bsbPresets>
1890<EventPanel name="" tempo="60.00000000" loop="8.00000000" x="913" y="162" width="655" height="346" visible="true" loopStart="0" loopEnd="0">    </EventPanel>
1891