1<CsoundSynthesizer>
2<CsOptions>
3--midi-key-cps=4 --midi-velocity=5
4</CsOptions>
5<CsInstruments>
6
7sr = 44100
8ksmps = 128
9nchnls = 2
100dbfs = 1
11
12maxalloc 1,1  ; Monophonic synth
13massign 0, 1
14
15chn_k "amp1", 3
16chn_k "amp10", 3
17chn_k "amp11", 3
18chn_k "amp12", 3
19chn_k "amp2", 3
20chn_k "amp3", 3
21chn_k "amp4", 3
22chn_k "amp5", 3
23chn_k "amp6", 3
24chn_k "amp7", 3
25chn_k "amp8", 3
26chn_k "amp9", 3
27chn_k "fac1", 3
28chn_k "fac10", 3
29chn_k "fac11", 3
30chn_k "fac12", 3
31chn_k "fac2", 3
32chn_k "fac3", 3
33chn_k "fac4", 3
34chn_k "fac5", 3
35chn_k "fac6", 3
36chn_k "fac7", 3
37chn_k "fac8", 3
38chn_k "fac9", 3
39chn_k "freq", 3
40chn_k "freq1", 2
41chn_k "freq10", 2
42chn_k "freq11", 2
43chn_k "freq12", 2
44chn_k "freq2", 2
45chn_k "freq3", 2
46chn_k "freq4", 2
47chn_k "freq5", 2
48chn_k "freq6", 2
49chn_k "freq7", 2
50chn_k "freq8", 2
51chn_k "freq9", 2
52chn_k "level", 1
53chn_k "rel", 1
54chn_k "reset", 1
55
56instr 1 ; Additive Synth
57
58kgoto skipinit
59if p4 != 0 then
60	chnset  p4, "freq"
61endif
62skipinit:
63
64kreset chnget "reset"
65kresettrig changed kreset
66
67if kresettrig == 1 then
68	if kreset == 1 then
69		reinit skipinit
70	endif
71endif
72
73kamp1  chnget  "amp1"
74kamp2  chnget  "amp2"
75kamp3  chnget  "amp3"
76kamp4  chnget  "amp4"
77kamp5  chnget  "amp5"
78kamp6  chnget  "amp6"
79kamp7  chnget  "amp7"
80kamp8  chnget  "amp8"
81kamp9  chnget  "amp9"
82kamp10  chnget  "amp10"
83kamp11  chnget  "amp11"
84kamp12  chnget  "amp12"
85
86kfactor1  chnget  "fac1"
87kfactor2  chnget  "fac2"
88kfactor3  chnget  "fac3"
89kfactor4  chnget  "fac4"
90kfactor5  chnget  "fac5"
91kfactor6  chnget  "fac6"
92kfactor7  chnget  "fac7"
93kfactor8  chnget  "fac8"
94kfactor9  chnget  "fac9"
95kfactor10  chnget  "fac10"
96kfactor11  chnget  "fac11"
97kfactor12  chnget  "fac12"
98
99kfreq chnget "freq"
100kfreq portk kfreq, 0.02, i(kfreq) ; Smooth frequency values
101
102kfreq1 = kfreq * kfactor1
103kfreq2 = kfreq * kfactor2
104kfreq3 = kfreq * kfactor3
105kfreq4 = kfreq * kfactor4
106kfreq5 = kfreq * kfactor5
107kfreq6 = kfreq * kfactor6
108kfreq7 = kfreq * kfactor7
109kfreq8 = kfreq * kfactor8
110kfreq9 = kfreq * kfactor9
111kfreq10 = kfreq * kfactor10
112kfreq11 = kfreq * kfactor11
113kfreq12 = kfreq * kfactor12
114
115aosc1 poscil3 kamp1, kfreq1, 1, 0
116aosc2 poscil3 kamp2, kfreq2, 1, 0
117aosc3 poscil3 kamp3, kfreq3, 1, 0
118aosc4 poscil3 kamp4, kfreq4, 1, 0
119aosc5 poscil3 kamp5, kfreq5, 1, 0
120aosc6 poscil3 kamp6, kfreq6, 1, 0
121aosc7 poscil3 kamp7, kfreq7, 1, 0
122aosc8 poscil3 kamp8, kfreq8, 1, 0
123aosc9 poscil3 kamp9, kfreq9, 1, 0
124aosc10 poscil3 kamp10, kfreq10, 1, 0
125aosc11 poscil3 kamp11, kfreq11, 1, 0
126aosc12 poscil3 kamp12, kfreq12, 1, 0
127
128chnset  kfreq1, "freq1"
129chnset  kfreq2, "freq2"
130chnset  kfreq3, "freq3"
131chnset  kfreq4, "freq4"
132chnset  kfreq5, "freq5"
133chnset  kfreq6, "freq6"
134chnset  kfreq7, "freq7"
135chnset  kfreq8, "freq8"
136chnset  kfreq9, "freq9"
137chnset  kfreq10, "freq10"
138chnset  kfreq11, "freq11"
139chnset  kfreq12, "freq12"
140
141asig = aosc1 + aosc2 + aosc3 + aosc4 + aosc5 + aosc6 + aosc7 + aosc8 + aosc9 + aosc10 + aosc11 + aosc12
142
143klevel chnget "level"
144outs asig*klevel, asig*klevel
145endin
146
147instr 99 ; Always on
148krel init -1
149krel chnget "rel"
150kfreq chnget "freq"
151
152ktrig changed krel
153
154if ktrig == 1 then
155	if krel == 0 then
156		chnset  k(1), "fac1"
157		chnset  k(2), "fac2"
158		chnset  k(3), "fac3"
159		chnset  k(4), "fac4"
160		chnset  k(5), "fac5"
161		chnset  k(6), "fac6"
162		chnset  k(7), "fac7"
163		chnset  k(8), "fac8"
164		chnset  k(9), "fac9"
165		chnset  k(10), "fac10"
166		chnset  k(11), "fac11"
167		chnset  k(12), "fac12"
168	elseif krel == 1 then
169		chnset  k(1), "fac1"
170		chnset  k(3), "fac2"
171		chnset  k(5), "fac3"
172		chnset  k(7), "fac4"
173		chnset  k(9), "fac5"
174		chnset  k(11), "fac6"
175		chnset  k(13), "fac7"
176		chnset  k(15), "fac8"
177		chnset  k(17), "fac9"
178		chnset  k(19), "fac10"
179		chnset  k(21), "fac11"
180		chnset  k(23), "fac12"
181	elseif krel == 2 then
182		chnset  k(1), "fac1"
183		chnset  k(1.22), "fac2"
184		chnset  k(1.3), "fac3"
185		chnset  k(1.35), "fac4"
186		chnset  k(1.45), "fac5"
187		chnset  k(1.64), "fac6"
188		chnset  k(1.7), "fac7"
189		chnset  k(1.78), "fac8"
190		chnset  k(1.79), "fac9"
191		chnset  k(1.81), "fac10"
192		chnset  k(1.91), "fac11"
193		chnset  k(1.98), "fac12"
194	elseif krel == 3 then
195		chnset  k(1), "fac1"
196		chnset  k(2.22), "fac2"
197		chnset  k(3.3), "fac3"
198		chnset  k(4.35), "fac4"
199		chnset  k(5.45), "fac5"
200		chnset  k(6.64), "fac6"
201		chnset  k(7.7), "fac7"
202		chnset  k(8.78), "fac8"
203		chnset  k(9.79), "fac9"
204		chnset  k(10.81), "fac10"
205		chnset  k(11.91), "fac11"
206		chnset  k(12.98), "fac12"
207	elseif krel == 4 then
208		chnset  k(1.02), "fac1"
209		chnset  k(1.05), "fac2"
210		chnset  k(1.12), "fac3"
211		chnset  k(1.14), "fac4"
212		chnset  k(1.19), "fac5"
213		chnset  k(1.21), "fac6"
214		chnset  k(1.26), "fac7"
215		chnset  k(1.29), "fac8"
216		chnset  k(1.32), "fac9"
217		chnset  k(1.35), "fac10"
218		chnset  k(1.36), "fac11"
219		chnset  k(1.39), "fac12"
220	endif
221endif
222endin
223
224instr 100 ; Set amplitude to 1 over partial number
225chnset  1/1, "amp1"
226chnset  1/2, "amp2"
227chnset  1/3, "amp3"
228chnset  1/4, "amp4"
229chnset  1/5, "amp5"
230chnset  1/6, "amp6"
231chnset  1/7, "amp7"
232chnset  1/8, "amp8"
233chnset  1/9, "amp9"
234chnset  1/10, "amp10"
235chnset  1/11, "amp11"
236chnset  1/12, "amp12"
237turnoff
238endin
239
240
241</CsInstruments>
242<CsScore>
243f 1 0 4096 10 1
244
245i 99 0 3600
246e
247</CsScore>
248</CsoundSynthesizer>
249
250<bsbPanel>
251 <label>Widgets</label>
252 <objectName/>
253 <x>203</x>
254 <y>124</y>
255 <width>703</width>
256 <height>470</height>
257 <visible>true</visible>
258 <uuid/>
259 <bgcolor mode="background">
260  <r>162</r>
261  <g>123</g>
262  <b>134</b>
263 </bgcolor>
264 <bsbObject version="2" type="BSBHSlider">
265  <objectName>amp1</objectName>
266  <x>26</x>
267  <y>55</y>
268  <width>229</width>
269  <height>22</height>
270  <uuid>{8f35311f-b1de-4102-a398-67c91ea07918}</uuid>
271  <visible>true</visible>
272  <midichan>0</midichan>
273  <midicc>-3</midicc>
274  <minimum>0.00000000</minimum>
275  <maximum>1.00000000</maximum>
276  <value>1.00000000</value>
277  <mode>lin</mode>
278  <mouseControl act="jump">continuous</mouseControl>
279  <resolution>-1.00000000</resolution>
280  <randomizable group="0">false</randomizable>
281 </bsbObject>
282 <bsbObject version="2" type="BSBHSlider">
283  <objectName>amp2</objectName>
284  <x>26</x>
285  <y>80</y>
286  <width>229</width>
287  <height>22</height>
288  <uuid>{4bbb9e11-cb05-42f7-a339-f4465c9fbc79}</uuid>
289  <visible>true</visible>
290  <midichan>0</midichan>
291  <midicc>-3</midicc>
292  <minimum>0.00000000</minimum>
293  <maximum>1.00000000</maximum>
294  <value>0.50000000</value>
295  <mode>lin</mode>
296  <mouseControl act="jump">continuous</mouseControl>
297  <resolution>-1.00000000</resolution>
298  <randomizable group="0">false</randomizable>
299 </bsbObject>
300 <bsbObject version="2" type="BSBHSlider">
301  <objectName>amp3</objectName>
302  <x>26</x>
303  <y>105</y>
304  <width>229</width>
305  <height>22</height>
306  <uuid>{e6c9e267-123f-469c-b889-324d931b71cc}</uuid>
307  <visible>true</visible>
308  <midichan>0</midichan>
309  <midicc>-3</midicc>
310  <minimum>0.00000000</minimum>
311  <maximum>1.00000000</maximum>
312  <value>0.33333300</value>
313  <mode>lin</mode>
314  <mouseControl act="jump">continuous</mouseControl>
315  <resolution>-1.00000000</resolution>
316  <randomizable group="0">false</randomizable>
317 </bsbObject>
318 <bsbObject version="2" type="BSBHSlider">
319  <objectName>amp4</objectName>
320  <x>26</x>
321  <y>130</y>
322  <width>229</width>
323  <height>22</height>
324  <uuid>{ba049c64-6ccc-4cd7-86df-d012b6de9f4f}</uuid>
325  <visible>true</visible>
326  <midichan>0</midichan>
327  <midicc>-3</midicc>
328  <minimum>0.00000000</minimum>
329  <maximum>1.00000000</maximum>
330  <value>0.25000000</value>
331  <mode>lin</mode>
332  <mouseControl act="jump">continuous</mouseControl>
333  <resolution>-1.00000000</resolution>
334  <randomizable group="0">false</randomizable>
335 </bsbObject>
336 <bsbObject version="2" type="BSBHSlider">
337  <objectName>amp5</objectName>
338  <x>27</x>
339  <y>155</y>
340  <width>229</width>
341  <height>22</height>
342  <uuid>{e2d6aae7-7c67-4865-90b2-6a1ef277f47f}</uuid>
343  <visible>true</visible>
344  <midichan>0</midichan>
345  <midicc>-3</midicc>
346  <minimum>0.00000000</minimum>
347  <maximum>1.00000000</maximum>
348  <value>0.20000000</value>
349  <mode>lin</mode>
350  <mouseControl act="jump">continuous</mouseControl>
351  <resolution>-1.00000000</resolution>
352  <randomizable group="0">false</randomizable>
353 </bsbObject>
354 <bsbObject version="2" type="BSBHSlider">
355  <objectName>amp6</objectName>
356  <x>27</x>
357  <y>180</y>
358  <width>229</width>
359  <height>22</height>
360  <uuid>{6a3307ea-85c7-4597-b0ae-1aee30062f00}</uuid>
361  <visible>true</visible>
362  <midichan>0</midichan>
363  <midicc>-3</midicc>
364  <minimum>0.00000000</minimum>
365  <maximum>1.00000000</maximum>
366  <value>0.16666700</value>
367  <mode>lin</mode>
368  <mouseControl act="jump">continuous</mouseControl>
369  <resolution>-1.00000000</resolution>
370  <randomizable group="0">false</randomizable>
371 </bsbObject>
372 <bsbObject version="2" type="BSBHSlider">
373  <objectName>amp7</objectName>
374  <x>27</x>
375  <y>205</y>
376  <width>229</width>
377  <height>22</height>
378  <uuid>{6d26eb03-7f21-42a6-a0ad-dc1f957a5600}</uuid>
379  <visible>true</visible>
380  <midichan>0</midichan>
381  <midicc>-3</midicc>
382  <minimum>0.00000000</minimum>
383  <maximum>1.00000000</maximum>
384  <value>0.14285700</value>
385  <mode>lin</mode>
386  <mouseControl act="jump">continuous</mouseControl>
387  <resolution>-1.00000000</resolution>
388  <randomizable group="0">false</randomizable>
389 </bsbObject>
390 <bsbObject version="2" type="BSBHSlider">
391  <objectName>amp8</objectName>
392  <x>27</x>
393  <y>230</y>
394  <width>229</width>
395  <height>22</height>
396  <uuid>{c41bbbe5-12a4-4785-b5c5-6f99055faaa6}</uuid>
397  <visible>true</visible>
398  <midichan>0</midichan>
399  <midicc>-3</midicc>
400  <minimum>0.00000000</minimum>
401  <maximum>1.00000000</maximum>
402  <value>0.12500000</value>
403  <mode>lin</mode>
404  <mouseControl act="jump">continuous</mouseControl>
405  <resolution>-1.00000000</resolution>
406  <randomizable group="0">false</randomizable>
407 </bsbObject>
408 <bsbObject version="2" type="BSBHSlider">
409  <objectName>amp9</objectName>
410  <x>27</x>
411  <y>254</y>
412  <width>229</width>
413  <height>22</height>
414  <uuid>{ab8904df-94fb-4dd1-9f29-48309cecd4f6}</uuid>
415  <visible>true</visible>
416  <midichan>0</midichan>
417  <midicc>-3</midicc>
418  <minimum>0.00000000</minimum>
419  <maximum>1.00000000</maximum>
420  <value>0.11111100</value>
421  <mode>lin</mode>
422  <mouseControl act="jump">continuous</mouseControl>
423  <resolution>-1.00000000</resolution>
424  <randomizable group="0">false</randomizable>
425 </bsbObject>
426 <bsbObject version="2" type="BSBHSlider">
427  <objectName>amp10</objectName>
428  <x>27</x>
429  <y>279</y>
430  <width>229</width>
431  <height>22</height>
432  <uuid>{6b86995c-17cf-48f8-aa4d-a15134227d3a}</uuid>
433  <visible>true</visible>
434  <midichan>0</midichan>
435  <midicc>-3</midicc>
436  <minimum>0.00000000</minimum>
437  <maximum>1.00000000</maximum>
438  <value>0.10000000</value>
439  <mode>lin</mode>
440  <mouseControl act="jump">continuous</mouseControl>
441  <resolution>-1.00000000</resolution>
442  <randomizable group="0">false</randomizable>
443 </bsbObject>
444 <bsbObject version="2" type="BSBHSlider">
445  <objectName>amp11</objectName>
446  <x>27</x>
447  <y>304</y>
448  <width>229</width>
449  <height>22</height>
450  <uuid>{ffde6462-4842-4e24-80c6-8faae296d8e8}</uuid>
451  <visible>true</visible>
452  <midichan>0</midichan>
453  <midicc>-3</midicc>
454  <minimum>0.00000000</minimum>
455  <maximum>1.00000000</maximum>
456  <value>0.09090900</value>
457  <mode>lin</mode>
458  <mouseControl act="jump">continuous</mouseControl>
459  <resolution>-1.00000000</resolution>
460  <randomizable group="0">false</randomizable>
461 </bsbObject>
462 <bsbObject version="2" type="BSBHSlider">
463  <objectName>amp12</objectName>
464  <x>27</x>
465  <y>329</y>
466  <width>229</width>
467  <height>22</height>
468  <uuid>{403e9314-9975-4c33-a565-a34f7898ed8e}</uuid>
469  <visible>true</visible>
470  <midichan>0</midichan>
471  <midicc>-3</midicc>
472  <minimum>0.00000000</minimum>
473  <maximum>1.00000000</maximum>
474  <value>0.08333300</value>
475  <mode>lin</mode>
476  <mouseControl act="jump">continuous</mouseControl>
477  <resolution>-1.00000000</resolution>
478  <randomizable group="0">false</randomizable>
479 </bsbObject>
480 <bsbObject version="2" type="BSBLabel">
481  <objectName/>
482  <x>8</x>
483  <y>54</y>
484  <width>17</width>
485  <height>25</height>
486  <uuid>{07eb6f30-1f03-43e7-b925-79e5053285b7}</uuid>
487  <visible>true</visible>
488  <midichan>0</midichan>
489  <midicc>-3</midicc>
490  <label>1</label>
491  <alignment>left</alignment>
492  <font>DejaVu Sans</font>
493  <fontsize>10</fontsize>
494  <precision>3</precision>
495  <color>
496   <r>0</r>
497   <g>0</g>
498   <b>0</b>
499  </color>
500  <bgcolor mode="nobackground">
501   <r>255</r>
502   <g>255</g>
503   <b>255</b>
504  </bgcolor>
505  <bordermode>noborder</bordermode>
506  <borderradius>1</borderradius>
507  <borderwidth>1</borderwidth>
508 </bsbObject>
509 <bsbObject version="2" type="BSBLabel">
510  <objectName/>
511  <x>8</x>
512  <y>78</y>
513  <width>17</width>
514  <height>25</height>
515  <uuid>{5e117d91-9f84-4f95-b936-3d48500a4dd3}</uuid>
516  <visible>true</visible>
517  <midichan>0</midichan>
518  <midicc>-3</midicc>
519  <label>2</label>
520  <alignment>left</alignment>
521  <font>DejaVu Sans</font>
522  <fontsize>10</fontsize>
523  <precision>3</precision>
524  <color>
525   <r>0</r>
526   <g>0</g>
527   <b>0</b>
528  </color>
529  <bgcolor mode="nobackground">
530   <r>255</r>
531   <g>255</g>
532   <b>255</b>
533  </bgcolor>
534  <bordermode>noborder</bordermode>
535  <borderradius>1</borderradius>
536  <borderwidth>1</borderwidth>
537 </bsbObject>
538 <bsbObject version="2" type="BSBLabel">
539  <objectName/>
540  <x>8</x>
541  <y>103</y>
542  <width>17</width>
543  <height>25</height>
544  <uuid>{9d8778ad-930b-4b7d-bff2-dcb3618659a0}</uuid>
545  <visible>true</visible>
546  <midichan>0</midichan>
547  <midicc>-3</midicc>
548  <label>3</label>
549  <alignment>left</alignment>
550  <font>DejaVu Sans</font>
551  <fontsize>10</fontsize>
552  <precision>3</precision>
553  <color>
554   <r>0</r>
555   <g>0</g>
556   <b>0</b>
557  </color>
558  <bgcolor mode="nobackground">
559   <r>255</r>
560   <g>255</g>
561   <b>255</b>
562  </bgcolor>
563  <bordermode>noborder</bordermode>
564  <borderradius>1</borderradius>
565  <borderwidth>1</borderwidth>
566 </bsbObject>
567 <bsbObject version="2" type="BSBLabel">
568  <objectName/>
569  <x>8</x>
570  <y>131</y>
571  <width>17</width>
572  <height>25</height>
573  <uuid>{9cd04718-25a8-4d67-bde2-186cf8b7d792}</uuid>
574  <visible>true</visible>
575  <midichan>0</midichan>
576  <midicc>-3</midicc>
577  <label>4</label>
578  <alignment>left</alignment>
579  <font>DejaVu Sans</font>
580  <fontsize>10</fontsize>
581  <precision>3</precision>
582  <color>
583   <r>0</r>
584   <g>0</g>
585   <b>0</b>
586  </color>
587  <bgcolor mode="nobackground">
588   <r>255</r>
589   <g>255</g>
590   <b>255</b>
591  </bgcolor>
592  <bordermode>noborder</bordermode>
593  <borderradius>1</borderradius>
594  <borderwidth>1</borderwidth>
595 </bsbObject>
596 <bsbObject version="2" type="BSBLabel">
597  <objectName/>
598  <x>9</x>
599  <y>156</y>
600  <width>17</width>
601  <height>25</height>
602  <uuid>{d67cfa00-2de6-4d16-86c4-76e414588fbc}</uuid>
603  <visible>true</visible>
604  <midichan>0</midichan>
605  <midicc>-3</midicc>
606  <label>5</label>
607  <alignment>left</alignment>
608  <font>DejaVu Sans</font>
609  <fontsize>10</fontsize>
610  <precision>3</precision>
611  <color>
612   <r>0</r>
613   <g>0</g>
614   <b>0</b>
615  </color>
616  <bgcolor mode="nobackground">
617   <r>255</r>
618   <g>255</g>
619   <b>255</b>
620  </bgcolor>
621  <bordermode>noborder</bordermode>
622  <borderradius>1</borderradius>
623  <borderwidth>1</borderwidth>
624 </bsbObject>
625 <bsbObject version="2" type="BSBLabel">
626  <objectName/>
627  <x>9</x>
628  <y>180</y>
629  <width>17</width>
630  <height>25</height>
631  <uuid>{106ed3af-374e-4bfc-8589-33e86de5f4b4}</uuid>
632  <visible>true</visible>
633  <midichan>0</midichan>
634  <midicc>-3</midicc>
635  <label>6</label>
636  <alignment>left</alignment>
637  <font>DejaVu Sans</font>
638  <fontsize>10</fontsize>
639  <precision>3</precision>
640  <color>
641   <r>0</r>
642   <g>0</g>
643   <b>0</b>
644  </color>
645  <bgcolor mode="nobackground">
646   <r>255</r>
647   <g>255</g>
648   <b>255</b>
649  </bgcolor>
650  <bordermode>noborder</bordermode>
651  <borderradius>1</borderradius>
652  <borderwidth>1</borderwidth>
653 </bsbObject>
654 <bsbObject version="2" type="BSBLabel">
655  <objectName/>
656  <x>9</x>
657  <y>202</y>
658  <width>17</width>
659  <height>25</height>
660  <uuid>{0489460d-74e3-4d2a-844e-3542fa726b01}</uuid>
661  <visible>true</visible>
662  <midichan>0</midichan>
663  <midicc>-3</midicc>
664  <label>7</label>
665  <alignment>left</alignment>
666  <font>DejaVu Sans</font>
667  <fontsize>10</fontsize>
668  <precision>3</precision>
669  <color>
670   <r>0</r>
671   <g>0</g>
672   <b>0</b>
673  </color>
674  <bgcolor mode="nobackground">
675   <r>255</r>
676   <g>255</g>
677   <b>255</b>
678  </bgcolor>
679  <bordermode>noborder</bordermode>
680  <borderradius>1</borderradius>
681  <borderwidth>1</borderwidth>
682 </bsbObject>
683 <bsbObject version="2" type="BSBLabel">
684  <objectName/>
685  <x>9</x>
686  <y>226</y>
687  <width>17</width>
688  <height>25</height>
689  <uuid>{0883fd1b-d7a4-4d93-a754-4d656cd6f6fc}</uuid>
690  <visible>true</visible>
691  <midichan>0</midichan>
692  <midicc>-3</midicc>
693  <label>8</label>
694  <alignment>left</alignment>
695  <font>DejaVu Sans</font>
696  <fontsize>10</fontsize>
697  <precision>3</precision>
698  <color>
699   <r>0</r>
700   <g>0</g>
701   <b>0</b>
702  </color>
703  <bgcolor mode="nobackground">
704   <r>255</r>
705   <g>255</g>
706   <b>255</b>
707  </bgcolor>
708  <bordermode>noborder</bordermode>
709  <borderradius>1</borderradius>
710  <borderwidth>1</borderwidth>
711 </bsbObject>
712 <bsbObject version="2" type="BSBLabel">
713  <objectName/>
714  <x>9</x>
715  <y>251</y>
716  <width>17</width>
717  <height>25</height>
718  <uuid>{b5acc978-ed0d-4bfe-ae29-da13b18e5d40}</uuid>
719  <visible>true</visible>
720  <midichan>0</midichan>
721  <midicc>-3</midicc>
722  <label>9</label>
723  <alignment>left</alignment>
724  <font>DejaVu Sans</font>
725  <fontsize>10</fontsize>
726  <precision>3</precision>
727  <color>
728   <r>0</r>
729   <g>0</g>
730   <b>0</b>
731  </color>
732  <bgcolor mode="nobackground">
733   <r>255</r>
734   <g>255</g>
735   <b>255</b>
736  </bgcolor>
737  <bordermode>noborder</bordermode>
738  <borderradius>1</borderradius>
739  <borderwidth>1</borderwidth>
740 </bsbObject>
741 <bsbObject version="2" type="BSBLabel">
742  <objectName/>
743  <x>4</x>
744  <y>278</y>
745  <width>24</width>
746  <height>25</height>
747  <uuid>{1109b2e0-0596-4098-b768-298873ce1a8a}</uuid>
748  <visible>true</visible>
749  <midichan>0</midichan>
750  <midicc>-3</midicc>
751  <label>10</label>
752  <alignment>left</alignment>
753  <font>DejaVu Sans</font>
754  <fontsize>10</fontsize>
755  <precision>3</precision>
756  <color>
757   <r>0</r>
758   <g>0</g>
759   <b>0</b>
760  </color>
761  <bgcolor mode="nobackground">
762   <r>255</r>
763   <g>255</g>
764   <b>255</b>
765  </bgcolor>
766  <bordermode>noborder</bordermode>
767  <borderradius>1</borderradius>
768  <borderwidth>1</borderwidth>
769 </bsbObject>
770 <bsbObject version="2" type="BSBLabel">
771  <objectName/>
772  <x>5</x>
773  <y>303</y>
774  <width>24</width>
775  <height>25</height>
776  <uuid>{338aeaa8-1b32-45b3-b9ff-391c96768026}</uuid>
777  <visible>true</visible>
778  <midichan>0</midichan>
779  <midicc>-3</midicc>
780  <label>11</label>
781  <alignment>left</alignment>
782  <font>DejaVu Sans</font>
783  <fontsize>10</fontsize>
784  <precision>3</precision>
785  <color>
786   <r>0</r>
787   <g>0</g>
788   <b>0</b>
789  </color>
790  <bgcolor mode="nobackground">
791   <r>255</r>
792   <g>255</g>
793   <b>255</b>
794  </bgcolor>
795  <bordermode>noborder</bordermode>
796  <borderradius>1</borderradius>
797  <borderwidth>1</borderwidth>
798 </bsbObject>
799 <bsbObject version="2" type="BSBLabel">
800  <objectName/>
801  <x>5</x>
802  <y>327</y>
803  <width>24</width>
804  <height>25</height>
805  <uuid>{f1bcd243-cfd1-4f4d-89ea-ad71bd14b9d7}</uuid>
806  <visible>true</visible>
807  <midichan>0</midichan>
808  <midicc>-3</midicc>
809  <label>12</label>
810  <alignment>left</alignment>
811  <font>DejaVu Sans</font>
812  <fontsize>10</fontsize>
813  <precision>3</precision>
814  <color>
815   <r>0</r>
816   <g>0</g>
817   <b>0</b>
818  </color>
819  <bgcolor mode="nobackground">
820   <r>255</r>
821   <g>255</g>
822   <b>255</b>
823  </bgcolor>
824  <bordermode>noborder</bordermode>
825  <borderradius>1</borderradius>
826  <borderwidth>1</borderwidth>
827 </bsbObject>
828 <bsbObject version="2" type="BSBKnob">
829  <objectName>freq</objectName>
830  <x>532</x>
831  <y>100</y>
832  <width>80</width>
833  <height>80</height>
834  <uuid>{03fa01c0-7bdf-42e1-996d-1c1ac5e9693d}</uuid>
835  <visible>true</visible>
836  <midichan>0</midichan>
837  <midicc>-3</midicc>
838  <minimum>100.00000000</minimum>
839  <maximum>1500.00000000</maximum>
840  <value>440.00000000</value>
841  <mode>lin</mode>
842  <mouseControl act="jump">continuous</mouseControl>
843  <resolution>0.01000000</resolution>
844  <randomizable group="0">false</randomizable>
845 </bsbObject>
846 <bsbObject version="2" type="BSBDisplay">
847  <objectName>freq</objectName>
848  <x>532</x>
849  <y>179</y>
850  <width>80</width>
851  <height>25</height>
852  <uuid>{2e6d424a-28c3-4ff5-b4f5-933e48e824bd}</uuid>
853  <visible>true</visible>
854  <midichan>0</midichan>
855  <midicc>-3</midicc>
856  <label>440.000</label>
857  <alignment>center</alignment>
858  <font>DejaVu Sans</font>
859  <fontsize>10</fontsize>
860  <precision>3</precision>
861  <color>
862   <r>0</r>
863   <g>0</g>
864   <b>0</b>
865  </color>
866  <bgcolor mode="nobackground">
867   <r>255</r>
868   <g>255</g>
869   <b>255</b>
870  </bgcolor>
871  <bordermode>noborder</bordermode>
872  <borderradius>1</borderradius>
873  <borderwidth>1</borderwidth>
874 </bsbObject>
875 <bsbObject version="2" type="BSBLabel">
876  <objectName/>
877  <x>531</x>
878  <y>82</y>
879  <width>80</width>
880  <height>25</height>
881  <uuid>{68d380a7-9761-47af-841d-4c481cb34a6a}</uuid>
882  <visible>true</visible>
883  <midichan>0</midichan>
884  <midicc>-3</midicc>
885  <label>Base Freq</label>
886  <alignment>center</alignment>
887  <font>DejaVu Sans</font>
888  <fontsize>10</fontsize>
889  <precision>3</precision>
890  <color>
891   <r>0</r>
892   <g>0</g>
893   <b>0</b>
894  </color>
895  <bgcolor mode="nobackground">
896   <r>255</r>
897   <g>255</g>
898   <b>255</b>
899  </bgcolor>
900  <bordermode>noborder</bordermode>
901  <borderradius>1</borderradius>
902  <borderwidth>1</borderwidth>
903 </bsbObject>
904 <bsbObject version="2" type="BSBScope">
905  <objectName/>
906  <x>4</x>
907  <y>358</y>
908  <width>692</width>
909  <height>157</height>
910  <uuid>{7714a116-c33e-4c9f-a74a-08e2d755a9f8}</uuid>
911  <visible>true</visible>
912  <midichan>0</midichan>
913  <midicc>-3</midicc>
914  <value>-255.00000000</value>
915  <type>scope</type>
916  <zoomx>2.00000000</zoomx>
917  <zoomy>1.00000000</zoomy>
918  <dispx>1.00000000</dispx>
919  <dispy>1.00000000</dispy>
920  <mode>0.00000000</mode>
921 </bsbObject>
922 <bsbObject version="2" type="BSBLabel">
923  <objectName/>
924  <x>449</x>
925  <y>37</y>
926  <width>80</width>
927  <height>316</height>
928  <uuid>{a31a3232-12d7-4578-8fd1-fc0c754a0ce7}</uuid>
929  <visible>true</visible>
930  <midichan>0</midichan>
931  <midicc>-3</midicc>
932  <label>Freq. (Hz)</label>
933  <alignment>center</alignment>
934  <font>DejaVu Sans</font>
935  <fontsize>10</fontsize>
936  <precision>3</precision>
937  <color>
938   <r>0</r>
939   <g>0</g>
940   <b>0</b>
941  </color>
942  <bgcolor mode="nobackground">
943   <r>255</r>
944   <g>255</g>
945   <b>255</b>
946  </bgcolor>
947  <bordermode>border</bordermode>
948  <borderradius>1</borderradius>
949  <borderwidth>1</borderwidth>
950 </bsbObject>
951 <bsbObject version="2" type="BSBDisplay">
952  <objectName>freq1</objectName>
953  <x>455</x>
954  <y>54</y>
955  <width>68</width>
956  <height>25</height>
957  <uuid>{b6aa56a6-0461-411a-99db-17de94745fc9}</uuid>
958  <visible>true</visible>
959  <midichan>0</midichan>
960  <midicc>-3</midicc>
961  <label>440.000</label>
962  <alignment>left</alignment>
963  <font>DejaVu Sans</font>
964  <fontsize>10</fontsize>
965  <precision>3</precision>
966  <color>
967   <r>0</r>
968   <g>0</g>
969   <b>0</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="BSBDisplay">
981  <objectName>freq2</objectName>
982  <x>454</x>
983  <y>77</y>
984  <width>68</width>
985  <height>25</height>
986  <uuid>{28192961-7a26-4324-981e-0205f19c95cd}</uuid>
987  <visible>true</visible>
988  <midichan>0</midichan>
989  <midicc>-3</midicc>
990  <label>880.000</label>
991  <alignment>left</alignment>
992  <font>DejaVu Sans</font>
993  <fontsize>10</fontsize>
994  <precision>3</precision>
995  <color>
996   <r>0</r>
997   <g>0</g>
998   <b>0</b>
999  </color>
1000  <bgcolor mode="nobackground">
1001   <r>255</r>
1002   <g>255</g>
1003   <b>255</b>
1004  </bgcolor>
1005  <bordermode>noborder</bordermode>
1006  <borderradius>1</borderradius>
1007  <borderwidth>1</borderwidth>
1008 </bsbObject>
1009 <bsbObject version="2" type="BSBDisplay">
1010  <objectName>freq3</objectName>
1011  <x>454</x>
1012  <y>103</y>
1013  <width>68</width>
1014  <height>25</height>
1015  <uuid>{398aee6d-f36e-48e3-b78b-eb0805361e27}</uuid>
1016  <visible>true</visible>
1017  <midichan>0</midichan>
1018  <midicc>-3</midicc>
1019  <label>1320.000</label>
1020  <alignment>left</alignment>
1021  <font>DejaVu Sans</font>
1022  <fontsize>10</fontsize>
1023  <precision>3</precision>
1024  <color>
1025   <r>0</r>
1026   <g>0</g>
1027   <b>0</b>
1028  </color>
1029  <bgcolor mode="nobackground">
1030   <r>255</r>
1031   <g>255</g>
1032   <b>255</b>
1033  </bgcolor>
1034  <bordermode>noborder</bordermode>
1035  <borderradius>1</borderradius>
1036  <borderwidth>1</borderwidth>
1037 </bsbObject>
1038 <bsbObject version="2" type="BSBDisplay">
1039  <objectName>freq4</objectName>
1040  <x>456</x>
1041  <y>130</y>
1042  <width>68</width>
1043  <height>25</height>
1044  <uuid>{a0c61571-aafd-41a4-803a-bd70885657f7}</uuid>
1045  <visible>true</visible>
1046  <midichan>0</midichan>
1047  <midicc>-3</midicc>
1048  <label>1760.000</label>
1049  <alignment>left</alignment>
1050  <font>DejaVu Sans</font>
1051  <fontsize>10</fontsize>
1052  <precision>3</precision>
1053  <color>
1054   <r>0</r>
1055   <g>0</g>
1056   <b>0</b>
1057  </color>
1058  <bgcolor mode="nobackground">
1059   <r>255</r>
1060   <g>255</g>
1061   <b>255</b>
1062  </bgcolor>
1063  <bordermode>noborder</bordermode>
1064  <borderradius>1</borderradius>
1065  <borderwidth>1</borderwidth>
1066 </bsbObject>
1067 <bsbObject version="2" type="BSBDisplay">
1068  <objectName>freq5</objectName>
1069  <x>456</x>
1070  <y>155</y>
1071  <width>68</width>
1072  <height>25</height>
1073  <uuid>{2f754830-8992-4644-9679-2bebead73f35}</uuid>
1074  <visible>true</visible>
1075  <midichan>0</midichan>
1076  <midicc>-3</midicc>
1077  <label>2200.000</label>
1078  <alignment>left</alignment>
1079  <font>DejaVu Sans</font>
1080  <fontsize>10</fontsize>
1081  <precision>3</precision>
1082  <color>
1083   <r>0</r>
1084   <g>0</g>
1085   <b>0</b>
1086  </color>
1087  <bgcolor mode="nobackground">
1088   <r>255</r>
1089   <g>255</g>
1090   <b>255</b>
1091  </bgcolor>
1092  <bordermode>noborder</bordermode>
1093  <borderradius>1</borderradius>
1094  <borderwidth>1</borderwidth>
1095 </bsbObject>
1096 <bsbObject version="2" type="BSBDisplay">
1097  <objectName>freq6</objectName>
1098  <x>456</x>
1099  <y>179</y>
1100  <width>68</width>
1101  <height>25</height>
1102  <uuid>{fae95509-286a-4165-bccb-c776d8349915}</uuid>
1103  <visible>true</visible>
1104  <midichan>0</midichan>
1105  <midicc>-3</midicc>
1106  <label>2640.000</label>
1107  <alignment>left</alignment>
1108  <font>DejaVu Sans</font>
1109  <fontsize>10</fontsize>
1110  <precision>3</precision>
1111  <color>
1112   <r>0</r>
1113   <g>0</g>
1114   <b>0</b>
1115  </color>
1116  <bgcolor mode="nobackground">
1117   <r>255</r>
1118   <g>255</g>
1119   <b>255</b>
1120  </bgcolor>
1121  <bordermode>noborder</bordermode>
1122  <borderradius>1</borderradius>
1123  <borderwidth>1</borderwidth>
1124 </bsbObject>
1125 <bsbObject version="2" type="BSBDisplay">
1126  <objectName>freq7</objectName>
1127  <x>454</x>
1128  <y>204</y>
1129  <width>68</width>
1130  <height>25</height>
1131  <uuid>{044b4975-d3bb-478d-8cd4-b289bda3f972}</uuid>
1132  <visible>true</visible>
1133  <midichan>0</midichan>
1134  <midicc>-3</midicc>
1135  <label>3080.000</label>
1136  <alignment>left</alignment>
1137  <font>DejaVu Sans</font>
1138  <fontsize>10</fontsize>
1139  <precision>3</precision>
1140  <color>
1141   <r>0</r>
1142   <g>0</g>
1143   <b>0</b>
1144  </color>
1145  <bgcolor mode="nobackground">
1146   <r>255</r>
1147   <g>255</g>
1148   <b>255</b>
1149  </bgcolor>
1150  <bordermode>noborder</bordermode>
1151  <borderradius>1</borderradius>
1152  <borderwidth>1</borderwidth>
1153 </bsbObject>
1154 <bsbObject version="2" type="BSBDisplay">
1155  <objectName>freq8</objectName>
1156  <x>455</x>
1157  <y>229</y>
1158  <width>68</width>
1159  <height>25</height>
1160  <uuid>{e05e508c-7d3a-4ebd-8074-0eba3dfdbd35}</uuid>
1161  <visible>true</visible>
1162  <midichan>0</midichan>
1163  <midicc>-3</midicc>
1164  <label>3520.000</label>
1165  <alignment>left</alignment>
1166  <font>DejaVu Sans</font>
1167  <fontsize>10</fontsize>
1168  <precision>3</precision>
1169  <color>
1170   <r>0</r>
1171   <g>0</g>
1172   <b>0</b>
1173  </color>
1174  <bgcolor mode="nobackground">
1175   <r>255</r>
1176   <g>255</g>
1177   <b>255</b>
1178  </bgcolor>
1179  <bordermode>noborder</bordermode>
1180  <borderradius>1</borderradius>
1181  <borderwidth>1</borderwidth>
1182 </bsbObject>
1183 <bsbObject version="2" type="BSBDisplay">
1184  <objectName>freq9</objectName>
1185  <x>454</x>
1186  <y>254</y>
1187  <width>68</width>
1188  <height>25</height>
1189  <uuid>{5fb1d580-d296-46fc-adb5-6f65bcdabbbb}</uuid>
1190  <visible>true</visible>
1191  <midichan>0</midichan>
1192  <midicc>-3</midicc>
1193  <label>3960.000</label>
1194  <alignment>left</alignment>
1195  <font>DejaVu Sans</font>
1196  <fontsize>10</fontsize>
1197  <precision>3</precision>
1198  <color>
1199   <r>0</r>
1200   <g>0</g>
1201   <b>0</b>
1202  </color>
1203  <bgcolor mode="nobackground">
1204   <r>255</r>
1205   <g>255</g>
1206   <b>255</b>
1207  </bgcolor>
1208  <bordermode>noborder</bordermode>
1209  <borderradius>1</borderradius>
1210  <borderwidth>1</borderwidth>
1211 </bsbObject>
1212 <bsbObject version="2" type="BSBDisplay">
1213  <objectName>freq10</objectName>
1214  <x>455</x>
1215  <y>278</y>
1216  <width>68</width>
1217  <height>25</height>
1218  <uuid>{b6d36a20-2bfa-41d0-82db-5059d674e3c0}</uuid>
1219  <visible>true</visible>
1220  <midichan>0</midichan>
1221  <midicc>-3</midicc>
1222  <label>4400.000</label>
1223  <alignment>left</alignment>
1224  <font>DejaVu Sans</font>
1225  <fontsize>10</fontsize>
1226  <precision>3</precision>
1227  <color>
1228   <r>0</r>
1229   <g>0</g>
1230   <b>0</b>
1231  </color>
1232  <bgcolor mode="nobackground">
1233   <r>255</r>
1234   <g>255</g>
1235   <b>255</b>
1236  </bgcolor>
1237  <bordermode>noborder</bordermode>
1238  <borderradius>1</borderradius>
1239  <borderwidth>1</borderwidth>
1240 </bsbObject>
1241 <bsbObject version="2" type="BSBDisplay">
1242  <objectName>freq11</objectName>
1243  <x>454</x>
1244  <y>304</y>
1245  <width>68</width>
1246  <height>25</height>
1247  <uuid>{25c0d557-8a8e-4ad9-8e48-03fbe4c1c1c6}</uuid>
1248  <visible>true</visible>
1249  <midichan>0</midichan>
1250  <midicc>-3</midicc>
1251  <label>4840.000</label>
1252  <alignment>left</alignment>
1253  <font>DejaVu Sans</font>
1254  <fontsize>10</fontsize>
1255  <precision>3</precision>
1256  <color>
1257   <r>0</r>
1258   <g>0</g>
1259   <b>0</b>
1260  </color>
1261  <bgcolor mode="nobackground">
1262   <r>255</r>
1263   <g>255</g>
1264   <b>255</b>
1265  </bgcolor>
1266  <bordermode>noborder</bordermode>
1267  <borderradius>1</borderradius>
1268  <borderwidth>1</borderwidth>
1269 </bsbObject>
1270 <bsbObject version="2" type="BSBDisplay">
1271  <objectName>freq12</objectName>
1272  <x>452</x>
1273  <y>328</y>
1274  <width>68</width>
1275  <height>25</height>
1276  <uuid>{204a05ab-aef7-4f2a-b7a0-716f7d5c927c}</uuid>
1277  <visible>true</visible>
1278  <midichan>0</midichan>
1279  <midicc>-3</midicc>
1280  <label>5280.000</label>
1281  <alignment>left</alignment>
1282  <font>DejaVu Sans</font>
1283  <fontsize>10</fontsize>
1284  <precision>3</precision>
1285  <color>
1286   <r>0</r>
1287   <g>0</g>
1288   <b>0</b>
1289  </color>
1290  <bgcolor mode="nobackground">
1291   <r>255</r>
1292   <g>255</g>
1293   <b>255</b>
1294  </bgcolor>
1295  <bordermode>noborder</bordermode>
1296  <borderradius>1</borderradius>
1297  <borderwidth>1</borderwidth>
1298 </bsbObject>
1299 <bsbObject version="2" type="BSBKnob">
1300  <objectName>level</objectName>
1301  <x>618</x>
1302  <y>122</y>
1303  <width>66</width>
1304  <height>60</height>
1305  <uuid>{761327be-ffd2-4596-84ae-6143f39d71a7}</uuid>
1306  <visible>true</visible>
1307  <midichan>0</midichan>
1308  <midicc>-3</midicc>
1309  <minimum>0.00000000</minimum>
1310  <maximum>0.50000000</maximum>
1311  <value>0.09000000</value>
1312  <mode>lin</mode>
1313  <mouseControl act="jump">continuous</mouseControl>
1314  <resolution>0.01000000</resolution>
1315  <randomizable group="0">false</randomizable>
1316 </bsbObject>
1317 <bsbObject version="2" type="BSBLabel">
1318  <objectName/>
1319  <x>619</x>
1320  <y>179</y>
1321  <width>64</width>
1322  <height>25</height>
1323  <uuid>{fa7684d0-943d-46e5-946e-3613d27c1e8a}</uuid>
1324  <visible>true</visible>
1325  <midichan>0</midichan>
1326  <midicc>-3</midicc>
1327  <label>Level</label>
1328  <alignment>center</alignment>
1329  <font>DejaVu Sans</font>
1330  <fontsize>10</fontsize>
1331  <precision>3</precision>
1332  <color>
1333   <r>0</r>
1334   <g>0</g>
1335   <b>0</b>
1336  </color>
1337  <bgcolor mode="nobackground">
1338   <r>255</r>
1339   <g>255</g>
1340   <b>255</b>
1341  </bgcolor>
1342  <bordermode>noborder</bordermode>
1343  <borderradius>1</borderradius>
1344  <borderwidth>1</borderwidth>
1345 </bsbObject>
1346 <bsbObject version="2" type="BSBLabel">
1347  <objectName/>
1348  <x>7</x>
1349  <y>5</y>
1350  <width>248</width>
1351  <height>43</height>
1352  <uuid>{ac86ad3b-364f-4573-a40b-42b364b30ccd}</uuid>
1353  <visible>true</visible>
1354  <midichan>0</midichan>
1355  <midicc>-3</midicc>
1356  <label>Additive syntheziser</label>
1357  <alignment>left</alignment>
1358  <font>DejaVu Sans</font>
1359  <fontsize>22</fontsize>
1360  <precision>3</precision>
1361  <color>
1362   <r>255</r>
1363   <g>255</g>
1364   <b>255</b>
1365  </color>
1366  <bgcolor mode="background">
1367   <r>33</r>
1368   <g>34</g>
1369   <b>36</b>
1370  </bgcolor>
1371  <bordermode>noborder</bordermode>
1372  <borderradius>1</borderradius>
1373  <borderwidth>1</borderwidth>
1374 </bsbObject>
1375 <bsbObject version="2" type="BSBLabel">
1376  <objectName/>
1377  <x>531</x>
1378  <y>213</y>
1379  <width>166</width>
1380  <height>68</height>
1381  <uuid>{5f2052f6-5d9b-4574-8de2-77d7309696e6}</uuid>
1382  <visible>true</visible>
1383  <midichan>0</midichan>
1384  <midicc>-3</midicc>
1385  <label>Partial relationship:</label>
1386  <alignment>left</alignment>
1387  <font>DejaVu Sans</font>
1388  <fontsize>10</fontsize>
1389  <precision>3</precision>
1390  <color>
1391   <r>0</r>
1392   <g>0</g>
1393   <b>0</b>
1394  </color>
1395  <bgcolor mode="nobackground">
1396   <r>255</r>
1397   <g>255</g>
1398   <b>255</b>
1399  </bgcolor>
1400  <bordermode>border</bordermode>
1401  <borderradius>1</borderradius>
1402  <borderwidth>1</borderwidth>
1403 </bsbObject>
1404 <bsbObject version="2" type="BSBLabel">
1405  <objectName/>
1406  <x>349</x>
1407  <y>37</y>
1408  <width>96</width>
1409  <height>316</height>
1410  <uuid>{e0ec5012-31b1-44c7-847f-8e3b7642df02}</uuid>
1411  <visible>true</visible>
1412  <midichan>0</midichan>
1413  <midicc>-3</midicc>
1414  <label>Freq. Factor</label>
1415  <alignment>center</alignment>
1416  <font>DejaVu Sans</font>
1417  <fontsize>10</fontsize>
1418  <precision>3</precision>
1419  <color>
1420   <r>0</r>
1421   <g>0</g>
1422   <b>0</b>
1423  </color>
1424  <bgcolor mode="nobackground">
1425   <r>255</r>
1426   <g>255</g>
1427   <b>255</b>
1428  </bgcolor>
1429  <bordermode>border</bordermode>
1430  <borderradius>1</borderradius>
1431  <borderwidth>1</borderwidth>
1432 </bsbObject>
1433 <bsbObject version="2" type="BSBSpinBox">
1434  <objectName>fac1</objectName>
1435  <x>356</x>
1436  <y>54</y>
1437  <width>80</width>
1438  <height>25</height>
1439  <uuid>{2431c940-8c9c-4315-99a3-f14ab46c846b}</uuid>
1440  <visible>true</visible>
1441  <midichan>0</midichan>
1442  <midicc>-3</midicc>
1443  <alignment>left</alignment>
1444  <font>Lucida Grande</font>
1445  <fontsize>10</fontsize>
1446  <color>
1447   <r>0</r>
1448   <g>0</g>
1449   <b>0</b>
1450  </color>
1451  <bgcolor mode="nobackground">
1452   <r>255</r>
1453   <g>255</g>
1454   <b>255</b>
1455  </bgcolor>
1456  <resolution>0.00100000</resolution>
1457  <minimum>-1e+12</minimum>
1458  <maximum>1e+12</maximum>
1459  <randomizable group="0">false</randomizable>
1460  <value>1</value>
1461 </bsbObject>
1462 <bsbObject version="2" type="BSBSpinBox">
1463  <objectName>fac2</objectName>
1464  <x>356</x>
1465  <y>79</y>
1466  <width>80</width>
1467  <height>25</height>
1468  <uuid>{6717f449-f565-49c6-b835-04c9259330f0}</uuid>
1469  <visible>true</visible>
1470  <midichan>0</midichan>
1471  <midicc>-3</midicc>
1472  <alignment>left</alignment>
1473  <font>Lucida Grande</font>
1474  <fontsize>10</fontsize>
1475  <color>
1476   <r>0</r>
1477   <g>0</g>
1478   <b>0</b>
1479  </color>
1480  <bgcolor mode="nobackground">
1481   <r>255</r>
1482   <g>255</g>
1483   <b>255</b>
1484  </bgcolor>
1485  <resolution>0.00100000</resolution>
1486  <minimum>-1e+12</minimum>
1487  <maximum>1e+12</maximum>
1488  <randomizable group="0">false</randomizable>
1489  <value>2</value>
1490 </bsbObject>
1491 <bsbObject version="2" type="BSBSpinBox">
1492  <objectName>fac3</objectName>
1493  <x>356</x>
1494  <y>104</y>
1495  <width>80</width>
1496  <height>25</height>
1497  <uuid>{5b685294-a68e-4412-ab53-92f83dc42c4e}</uuid>
1498  <visible>true</visible>
1499  <midichan>0</midichan>
1500  <midicc>-3</midicc>
1501  <alignment>left</alignment>
1502  <font>Lucida Grande</font>
1503  <fontsize>10</fontsize>
1504  <color>
1505   <r>0</r>
1506   <g>0</g>
1507   <b>0</b>
1508  </color>
1509  <bgcolor mode="nobackground">
1510   <r>255</r>
1511   <g>255</g>
1512   <b>255</b>
1513  </bgcolor>
1514  <resolution>0.00100000</resolution>
1515  <minimum>-1e+12</minimum>
1516  <maximum>1e+12</maximum>
1517  <randomizable group="0">false</randomizable>
1518  <value>3</value>
1519 </bsbObject>
1520 <bsbObject version="2" type="BSBSpinBox">
1521  <objectName>fac4</objectName>
1522  <x>356</x>
1523  <y>127</y>
1524  <width>80</width>
1525  <height>25</height>
1526  <uuid>{cec07fa4-8898-46e1-9548-73442ee56218}</uuid>
1527  <visible>true</visible>
1528  <midichan>0</midichan>
1529  <midicc>-3</midicc>
1530  <alignment>left</alignment>
1531  <font>Lucida Grande</font>
1532  <fontsize>10</fontsize>
1533  <color>
1534   <r>0</r>
1535   <g>0</g>
1536   <b>0</b>
1537  </color>
1538  <bgcolor mode="nobackground">
1539   <r>255</r>
1540   <g>255</g>
1541   <b>255</b>
1542  </bgcolor>
1543  <resolution>0.00100000</resolution>
1544  <minimum>-1e+12</minimum>
1545  <maximum>1e+12</maximum>
1546  <randomizable group="0">false</randomizable>
1547  <value>4</value>
1548 </bsbObject>
1549 <bsbObject version="2" type="BSBSpinBox">
1550  <objectName>fac5</objectName>
1551  <x>356</x>
1552  <y>153</y>
1553  <width>80</width>
1554  <height>25</height>
1555  <uuid>{52945398-307e-48d0-b898-1be76664cf1f}</uuid>
1556  <visible>true</visible>
1557  <midichan>0</midichan>
1558  <midicc>-3</midicc>
1559  <alignment>left</alignment>
1560  <font>Lucida Grande</font>
1561  <fontsize>10</fontsize>
1562  <color>
1563   <r>0</r>
1564   <g>0</g>
1565   <b>0</b>
1566  </color>
1567  <bgcolor mode="nobackground">
1568   <r>255</r>
1569   <g>255</g>
1570   <b>255</b>
1571  </bgcolor>
1572  <resolution>0.00100000</resolution>
1573  <minimum>-1e+12</minimum>
1574  <maximum>1e+12</maximum>
1575  <randomizable group="0">false</randomizable>
1576  <value>5</value>
1577 </bsbObject>
1578 <bsbObject version="2" type="BSBSpinBox">
1579  <objectName>fac6</objectName>
1580  <x>356</x>
1581  <y>180</y>
1582  <width>80</width>
1583  <height>25</height>
1584  <uuid>{63efcda9-ee38-4a60-b0ea-be120e80c35a}</uuid>
1585  <visible>true</visible>
1586  <midichan>0</midichan>
1587  <midicc>-3</midicc>
1588  <alignment>left</alignment>
1589  <font>Lucida Grande</font>
1590  <fontsize>10</fontsize>
1591  <color>
1592   <r>0</r>
1593   <g>0</g>
1594   <b>0</b>
1595  </color>
1596  <bgcolor mode="nobackground">
1597   <r>255</r>
1598   <g>255</g>
1599   <b>255</b>
1600  </bgcolor>
1601  <resolution>0.00100000</resolution>
1602  <minimum>-1e+12</minimum>
1603  <maximum>1e+12</maximum>
1604  <randomizable group="0">false</randomizable>
1605  <value>6</value>
1606 </bsbObject>
1607 <bsbObject version="2" type="BSBSpinBox">
1608  <objectName>fac7</objectName>
1609  <x>356</x>
1610  <y>206</y>
1611  <width>80</width>
1612  <height>25</height>
1613  <uuid>{93992aaf-af39-4dad-b71b-42998c10c74d}</uuid>
1614  <visible>true</visible>
1615  <midichan>0</midichan>
1616  <midicc>-3</midicc>
1617  <alignment>left</alignment>
1618  <font>Lucida Grande</font>
1619  <fontsize>10</fontsize>
1620  <color>
1621   <r>0</r>
1622   <g>0</g>
1623   <b>0</b>
1624  </color>
1625  <bgcolor mode="nobackground">
1626   <r>255</r>
1627   <g>255</g>
1628   <b>255</b>
1629  </bgcolor>
1630  <resolution>0.00100000</resolution>
1631  <minimum>-1e+12</minimum>
1632  <maximum>1e+12</maximum>
1633  <randomizable group="0">false</randomizable>
1634  <value>7</value>
1635 </bsbObject>
1636 <bsbObject version="2" type="BSBSpinBox">
1637  <objectName>fac8</objectName>
1638  <x>356</x>
1639  <y>230</y>
1640  <width>80</width>
1641  <height>25</height>
1642  <uuid>{2e32cb9c-24f1-4e8a-9f31-9d9402abaaf2}</uuid>
1643  <visible>true</visible>
1644  <midichan>0</midichan>
1645  <midicc>-3</midicc>
1646  <alignment>left</alignment>
1647  <font>Lucida Grande</font>
1648  <fontsize>10</fontsize>
1649  <color>
1650   <r>0</r>
1651   <g>0</g>
1652   <b>0</b>
1653  </color>
1654  <bgcolor mode="nobackground">
1655   <r>255</r>
1656   <g>255</g>
1657   <b>255</b>
1658  </bgcolor>
1659  <resolution>0.00100000</resolution>
1660  <minimum>-1e+12</minimum>
1661  <maximum>1e+12</maximum>
1662  <randomizable group="0">false</randomizable>
1663  <value>8</value>
1664 </bsbObject>
1665 <bsbObject version="2" type="BSBSpinBox">
1666  <objectName>fac9</objectName>
1667  <x>356</x>
1668  <y>254</y>
1669  <width>80</width>
1670  <height>25</height>
1671  <uuid>{e42d43ff-a34c-4ac5-9b76-0d0ecd8b5921}</uuid>
1672  <visible>true</visible>
1673  <midichan>0</midichan>
1674  <midicc>-3</midicc>
1675  <alignment>left</alignment>
1676  <font>Lucida Grande</font>
1677  <fontsize>10</fontsize>
1678  <color>
1679   <r>0</r>
1680   <g>0</g>
1681   <b>0</b>
1682  </color>
1683  <bgcolor mode="nobackground">
1684   <r>255</r>
1685   <g>255</g>
1686   <b>255</b>
1687  </bgcolor>
1688  <resolution>0.00100000</resolution>
1689  <minimum>-1e+12</minimum>
1690  <maximum>1e+12</maximum>
1691  <randomizable group="0">false</randomizable>
1692  <value>9</value>
1693 </bsbObject>
1694 <bsbObject version="2" type="BSBSpinBox">
1695  <objectName>fac10</objectName>
1696  <x>356</x>
1697  <y>278</y>
1698  <width>80</width>
1699  <height>25</height>
1700  <uuid>{f1895083-3731-49bd-b648-d72607a15b77}</uuid>
1701  <visible>true</visible>
1702  <midichan>0</midichan>
1703  <midicc>-3</midicc>
1704  <alignment>left</alignment>
1705  <font>Lucida Grande</font>
1706  <fontsize>10</fontsize>
1707  <color>
1708   <r>0</r>
1709   <g>0</g>
1710   <b>0</b>
1711  </color>
1712  <bgcolor mode="nobackground">
1713   <r>255</r>
1714   <g>255</g>
1715   <b>255</b>
1716  </bgcolor>
1717  <resolution>0.00100000</resolution>
1718  <minimum>-1e+12</minimum>
1719  <maximum>1e+12</maximum>
1720  <randomizable group="0">false</randomizable>
1721  <value>10</value>
1722 </bsbObject>
1723 <bsbObject version="2" type="BSBSpinBox">
1724  <objectName>fac11</objectName>
1725  <x>356</x>
1726  <y>301</y>
1727  <width>80</width>
1728  <height>25</height>
1729  <uuid>{c629f96e-9103-449d-9a51-18c00695e7bf}</uuid>
1730  <visible>true</visible>
1731  <midichan>0</midichan>
1732  <midicc>-3</midicc>
1733  <alignment>left</alignment>
1734  <font>Lucida Grande</font>
1735  <fontsize>10</fontsize>
1736  <color>
1737   <r>0</r>
1738   <g>0</g>
1739   <b>0</b>
1740  </color>
1741  <bgcolor mode="nobackground">
1742   <r>255</r>
1743   <g>255</g>
1744   <b>255</b>
1745  </bgcolor>
1746  <resolution>0.00100000</resolution>
1747  <minimum>-1e+12</minimum>
1748  <maximum>1e+12</maximum>
1749  <randomizable group="0">false</randomizable>
1750  <value>11</value>
1751 </bsbObject>
1752 <bsbObject version="2" type="BSBSpinBox">
1753  <objectName>fac12</objectName>
1754  <x>356</x>
1755  <y>327</y>
1756  <width>80</width>
1757  <height>25</height>
1758  <uuid>{ada65122-2724-4e35-8a55-6922dab0245c}</uuid>
1759  <visible>true</visible>
1760  <midichan>0</midichan>
1761  <midicc>-3</midicc>
1762  <alignment>left</alignment>
1763  <font>Lucida Grande</font>
1764  <fontsize>10</fontsize>
1765  <color>
1766   <r>0</r>
1767   <g>0</g>
1768   <b>0</b>
1769  </color>
1770  <bgcolor mode="nobackground">
1771   <r>255</r>
1772   <g>255</g>
1773   <b>255</b>
1774  </bgcolor>
1775  <resolution>0.00100000</resolution>
1776  <minimum>-1e+12</minimum>
1777  <maximum>1e+12</maximum>
1778  <randomizable group="0">false</randomizable>
1779  <value>12</value>
1780 </bsbObject>
1781 <bsbObject version="2" type="BSBButton">
1782  <objectName>reset</objectName>
1783  <x>535</x>
1784  <y>286</y>
1785  <width>157</width>
1786  <height>30</height>
1787  <uuid>{776bb69f-006d-4b56-a851-4026d3f6bc2a}</uuid>
1788  <visible>true</visible>
1789  <midichan>0</midichan>
1790  <midicc>-3</midicc>
1791  <type>value</type>
1792  <pressedValue>1.00000000</pressedValue>
1793  <stringvalue/>
1794  <text>Reset Phase</text>
1795  <image>/</image>
1796  <eventLine>i 50 0 1</eventLine>
1797  <latch>false</latch>
1798  <latched>false</latched>
1799 </bsbObject>
1800 <bsbObject version="2" type="BSBSpinBox">
1801  <objectName>amp1</objectName>
1802  <x>263</x>
1803  <y>54</y>
1804  <width>80</width>
1805  <height>25</height>
1806  <uuid>{9e6fabff-f6b7-4a47-b074-f25bf9145ff0}</uuid>
1807  <visible>true</visible>
1808  <midichan>0</midichan>
1809  <midicc>-3</midicc>
1810  <alignment>left</alignment>
1811  <font>Lucida Grande</font>
1812  <fontsize>10</fontsize>
1813  <color>
1814   <r>0</r>
1815   <g>0</g>
1816   <b>0</b>
1817  </color>
1818  <bgcolor mode="nobackground">
1819   <r>255</r>
1820   <g>255</g>
1821   <b>255</b>
1822  </bgcolor>
1823  <resolution>0.00010000</resolution>
1824  <minimum>-1e+12</minimum>
1825  <maximum>1e+12</maximum>
1826  <randomizable group="0">false</randomizable>
1827  <value>1</value>
1828 </bsbObject>
1829 <bsbObject version="2" type="BSBSpinBox">
1830  <objectName>amp2</objectName>
1831  <x>263</x>
1832  <y>79</y>
1833  <width>80</width>
1834  <height>26</height>
1835  <uuid>{f1a1dcf8-7555-4b5a-bb1b-76b3927320bf}</uuid>
1836  <visible>true</visible>
1837  <midichan>0</midichan>
1838  <midicc>-3</midicc>
1839  <alignment>left</alignment>
1840  <font>DejaVu Sans</font>
1841  <fontsize>10</fontsize>
1842  <color>
1843   <r>0</r>
1844   <g>0</g>
1845   <b>0</b>
1846  </color>
1847  <bgcolor mode="nobackground">
1848   <r>255</r>
1849   <g>255</g>
1850   <b>255</b>
1851  </bgcolor>
1852  <resolution>0.00010000</resolution>
1853  <minimum>-1e+12</minimum>
1854  <maximum>1e+12</maximum>
1855  <randomizable group="0">false</randomizable>
1856  <value>0.5</value>
1857 </bsbObject>
1858 <bsbObject version="2" type="BSBSpinBox">
1859  <objectName>amp3</objectName>
1860  <x>263</x>
1861  <y>104</y>
1862  <width>80</width>
1863  <height>26</height>
1864  <uuid>{bb9e395e-ab97-4856-bed0-74249f174f5f}</uuid>
1865  <visible>true</visible>
1866  <midichan>0</midichan>
1867  <midicc>-3</midicc>
1868  <alignment>left</alignment>
1869  <font>Lucida Grande</font>
1870  <fontsize>10</fontsize>
1871  <color>
1872   <r>0</r>
1873   <g>0</g>
1874   <b>0</b>
1875  </color>
1876  <bgcolor mode="nobackground">
1877   <r>255</r>
1878   <g>255</g>
1879   <b>255</b>
1880  </bgcolor>
1881  <resolution>0.00010000</resolution>
1882  <minimum>-1e+12</minimum>
1883  <maximum>1e+12</maximum>
1884  <randomizable group="0">false</randomizable>
1885  <value>0.333333</value>
1886 </bsbObject>
1887 <bsbObject version="2" type="BSBSpinBox">
1888  <objectName>amp4</objectName>
1889  <x>263</x>
1890  <y>129</y>
1891  <width>80</width>
1892  <height>25</height>
1893  <uuid>{eabed39f-6f49-4cf1-8852-6dd65fc96336}</uuid>
1894  <visible>true</visible>
1895  <midichan>0</midichan>
1896  <midicc>-3</midicc>
1897  <alignment>left</alignment>
1898  <font>Lucida Grande</font>
1899  <fontsize>10</fontsize>
1900  <color>
1901   <r>0</r>
1902   <g>0</g>
1903   <b>0</b>
1904  </color>
1905  <bgcolor mode="nobackground">
1906   <r>255</r>
1907   <g>255</g>
1908   <b>255</b>
1909  </bgcolor>
1910  <resolution>0.00010000</resolution>
1911  <minimum>-1e+12</minimum>
1912  <maximum>1e+12</maximum>
1913  <randomizable group="0">false</randomizable>
1914  <value>0.25</value>
1915 </bsbObject>
1916 <bsbObject version="2" type="BSBSpinBox">
1917  <objectName>amp5</objectName>
1918  <x>263</x>
1919  <y>154</y>
1920  <width>80</width>
1921  <height>26</height>
1922  <uuid>{b91deb45-4b32-4ead-888a-95c8cbfa33b0}</uuid>
1923  <visible>true</visible>
1924  <midichan>0</midichan>
1925  <midicc>-3</midicc>
1926  <alignment>left</alignment>
1927  <font>Lucida Grande</font>
1928  <fontsize>10</fontsize>
1929  <color>
1930   <r>0</r>
1931   <g>0</g>
1932   <b>0</b>
1933  </color>
1934  <bgcolor mode="nobackground">
1935   <r>255</r>
1936   <g>255</g>
1937   <b>255</b>
1938  </bgcolor>
1939  <resolution>0.00010000</resolution>
1940  <minimum>-1e+12</minimum>
1941  <maximum>1e+12</maximum>
1942  <randomizable group="0">false</randomizable>
1943  <value>0.2</value>
1944 </bsbObject>
1945 <bsbObject version="2" type="BSBSpinBox">
1946  <objectName>amp6</objectName>
1947  <x>263</x>
1948  <y>179</y>
1949  <width>80</width>
1950  <height>26</height>
1951  <uuid>{d487fb77-7196-447c-849b-ec7918c6e3a5}</uuid>
1952  <visible>true</visible>
1953  <midichan>0</midichan>
1954  <midicc>-3</midicc>
1955  <alignment>left</alignment>
1956  <font>Lucida Grande</font>
1957  <fontsize>10</fontsize>
1958  <color>
1959   <r>0</r>
1960   <g>0</g>
1961   <b>0</b>
1962  </color>
1963  <bgcolor mode="nobackground">
1964   <r>255</r>
1965   <g>255</g>
1966   <b>255</b>
1967  </bgcolor>
1968  <resolution>0.00010000</resolution>
1969  <minimum>-1e+12</minimum>
1970  <maximum>1e+12</maximum>
1971  <randomizable group="0">false</randomizable>
1972  <value>0.166667</value>
1973 </bsbObject>
1974 <bsbObject version="2" type="BSBSpinBox">
1975  <objectName>amp7</objectName>
1976  <x>263</x>
1977  <y>203</y>
1978  <width>80</width>
1979  <height>25</height>
1980  <uuid>{869da178-d2b5-4f72-a3ca-3c9139fc97c6}</uuid>
1981  <visible>true</visible>
1982  <midichan>0</midichan>
1983  <midicc>-3</midicc>
1984  <alignment>left</alignment>
1985  <font>Lucida Grande</font>
1986  <fontsize>10</fontsize>
1987  <color>
1988   <r>0</r>
1989   <g>0</g>
1990   <b>0</b>
1991  </color>
1992  <bgcolor mode="nobackground">
1993   <r>255</r>
1994   <g>255</g>
1995   <b>255</b>
1996  </bgcolor>
1997  <resolution>0.00010000</resolution>
1998  <minimum>-1e+12</minimum>
1999  <maximum>1e+12</maximum>
2000  <randomizable group="0">false</randomizable>
2001  <value>0.142857</value>
2002 </bsbObject>
2003 <bsbObject version="2" type="BSBSpinBox">
2004  <objectName>amp8</objectName>
2005  <x>263</x>
2006  <y>228</y>
2007  <width>80</width>
2008  <height>26</height>
2009  <uuid>{5cc5b726-0749-4238-a496-dd845a27e8fe}</uuid>
2010  <visible>true</visible>
2011  <midichan>0</midichan>
2012  <midicc>-3</midicc>
2013  <alignment>left</alignment>
2014  <font>Lucida Grande</font>
2015  <fontsize>10</fontsize>
2016  <color>
2017   <r>0</r>
2018   <g>0</g>
2019   <b>0</b>
2020  </color>
2021  <bgcolor mode="nobackground">
2022   <r>255</r>
2023   <g>255</g>
2024   <b>255</b>
2025  </bgcolor>
2026  <resolution>0.00010000</resolution>
2027  <minimum>-1e+12</minimum>
2028  <maximum>1e+12</maximum>
2029  <randomizable group="0">false</randomizable>
2030  <value>0.125</value>
2031 </bsbObject>
2032 <bsbObject version="2" type="BSBSpinBox">
2033  <objectName>amp9</objectName>
2034  <x>263</x>
2035  <y>253</y>
2036  <width>80</width>
2037  <height>26</height>
2038  <uuid>{500f3d7c-530b-4939-a4a9-25c3666d90e1}</uuid>
2039  <visible>true</visible>
2040  <midichan>0</midichan>
2041  <midicc>-3</midicc>
2042  <alignment>left</alignment>
2043  <font>Lucida Grande</font>
2044  <fontsize>10</fontsize>
2045  <color>
2046   <r>0</r>
2047   <g>0</g>
2048   <b>0</b>
2049  </color>
2050  <bgcolor mode="nobackground">
2051   <r>255</r>
2052   <g>255</g>
2053   <b>255</b>
2054  </bgcolor>
2055  <resolution>0.00010000</resolution>
2056  <minimum>-1e+12</minimum>
2057  <maximum>1e+12</maximum>
2058  <randomizable group="0">false</randomizable>
2059  <value>0.111111</value>
2060 </bsbObject>
2061 <bsbObject version="2" type="BSBSpinBox">
2062  <objectName>amp10</objectName>
2063  <x>263</x>
2064  <y>276</y>
2065  <width>80</width>
2066  <height>25</height>
2067  <uuid>{6d436f11-af2f-428b-9ce9-fc5981b2c38e}</uuid>
2068  <visible>true</visible>
2069  <midichan>0</midichan>
2070  <midicc>-3</midicc>
2071  <alignment>left</alignment>
2072  <font>Lucida Grande</font>
2073  <fontsize>10</fontsize>
2074  <color>
2075   <r>0</r>
2076   <g>0</g>
2077   <b>0</b>
2078  </color>
2079  <bgcolor mode="nobackground">
2080   <r>255</r>
2081   <g>255</g>
2082   <b>255</b>
2083  </bgcolor>
2084  <resolution>0.00010000</resolution>
2085  <minimum>-1e+12</minimum>
2086  <maximum>1e+12</maximum>
2087  <randomizable group="0">false</randomizable>
2088  <value>0.1</value>
2089 </bsbObject>
2090 <bsbObject version="2" type="BSBSpinBox">
2091  <objectName>amp11</objectName>
2092  <x>263</x>
2093  <y>301</y>
2094  <width>80</width>
2095  <height>26</height>
2096  <uuid>{7d27a697-c0e4-461d-a05a-2e9f8f878d9c}</uuid>
2097  <visible>true</visible>
2098  <midichan>0</midichan>
2099  <midicc>-3</midicc>
2100  <alignment>left</alignment>
2101  <font>Lucida Grande</font>
2102  <fontsize>10</fontsize>
2103  <color>
2104   <r>0</r>
2105   <g>0</g>
2106   <b>0</b>
2107  </color>
2108  <bgcolor mode="nobackground">
2109   <r>255</r>
2110   <g>255</g>
2111   <b>255</b>
2112  </bgcolor>
2113  <resolution>0.00010000</resolution>
2114  <minimum>-1e+12</minimum>
2115  <maximum>1e+12</maximum>
2116  <randomizable group="0">false</randomizable>
2117  <value>0.090909</value>
2118 </bsbObject>
2119 <bsbObject version="2" type="BSBSpinBox">
2120  <objectName>amp12</objectName>
2121  <x>263</x>
2122  <y>326</y>
2123  <width>80</width>
2124  <height>26</height>
2125  <uuid>{abef815e-ebd5-4da9-a238-2a58ab28b4fe}</uuid>
2126  <visible>true</visible>
2127  <midichan>0</midichan>
2128  <midicc>-3</midicc>
2129  <alignment>left</alignment>
2130  <font>Lucida Grande</font>
2131  <fontsize>10</fontsize>
2132  <color>
2133   <r>0</r>
2134   <g>0</g>
2135   <b>0</b>
2136  </color>
2137  <bgcolor mode="nobackground">
2138   <r>255</r>
2139   <g>255</g>
2140   <b>255</b>
2141  </bgcolor>
2142  <resolution>0.00010000</resolution>
2143  <minimum>-1e+12</minimum>
2144  <maximum>1e+12</maximum>
2145  <randomizable group="0">false</randomizable>
2146  <value>0.083333</value>
2147 </bsbObject>
2148 <bsbObject version="2" type="BSBButton">
2149  <objectName/>
2150  <x>535</x>
2151  <y>320</y>
2152  <width>158</width>
2153  <height>31</height>
2154  <uuid>{31bebdce-2caa-4c88-adf4-27e2b193da6e}</uuid>
2155  <visible>true</visible>
2156  <midichan>0</midichan>
2157  <midicc>0</midicc>
2158  <type>event</type>
2159  <pressedValue>1.00000000</pressedValue>
2160  <stringvalue/>
2161  <text>Amp = 1/n</text>
2162  <image>/</image>
2163  <eventLine>i100 0 1</eventLine>
2164  <latch>false</latch>
2165  <latched>false</latched>
2166 </bsbObject>
2167 <bsbObject version="2" type="BSBDropdown">
2168  <objectName>rel</objectName>
2169  <x>537</x>
2170  <y>233</y>
2171  <width>155</width>
2172  <height>25</height>
2173  <uuid>{fa7b55f0-4387-47e0-ab2e-28dab55622d4}</uuid>
2174  <visible>true</visible>
2175  <midichan>0</midichan>
2176  <midicc>-3</midicc>
2177  <bsbDropdownItemList>
2178   <bsbDropdownItem>
2179    <name>all harmonics</name>
2180    <value>0</value>
2181    <stringvalue/>
2182   </bsbDropdownItem>
2183   <bsbDropdownItem>
2184    <name>even harmonics</name>
2185    <value>1</value>
2186    <stringvalue/>
2187   </bsbDropdownItem>
2188   <bsbDropdownItem>
2189    <name>inharmonic1</name>
2190    <value>2</value>
2191    <stringvalue/>
2192   </bsbDropdownItem>
2193   <bsbDropdownItem>
2194    <name>inharmonic2</name>
2195    <value>3</value>
2196    <stringvalue/>
2197   </bsbDropdownItem>
2198   <bsbDropdownItem>
2199    <name>inharmonic3</name>
2200    <value>4</value>
2201    <stringvalue/>
2202   </bsbDropdownItem>
2203  </bsbDropdownItemList>
2204  <selectedIndex>0</selectedIndex>
2205  <randomizable group="0">false</randomizable>
2206 </bsbObject>
2207 <bsbObject version="2" type="BSBButton">
2208  <objectName>button1</objectName>
2209  <x>536</x>
2210  <y>44</y>
2211  <width>156</width>
2212  <height>29</height>
2213  <uuid>{5b431f74-b61a-45bb-ac46-3ea16cad6cc3}</uuid>
2214  <visible>true</visible>
2215  <midichan>0</midichan>
2216  <midicc>0</midicc>
2217  <type>event</type>
2218  <pressedValue>1.00000000</pressedValue>
2219  <stringvalue/>
2220  <text>Note</text>
2221  <image>/</image>
2222  <eventLine>i1 0 -1</eventLine>
2223  <latch>true</latch>
2224  <latched>true</latched>
2225 </bsbObject>
2226</bsbPanel>
2227<bsbPresets>
2228</bsbPresets>
2229