-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMod-mod.effect
670 lines (654 loc) · 29.6 KB
/
Mod-mod.effect
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
<effect>
<name>Mod-mod</name>
<enabled>true</enabled>
<numIns>2</numIns>
<numOuts>2</numOuts>
<code>if (<Mod-modON> == 1) then
kdel1amp = <Mod-mod_delay1 Amp> * .5
kdel1frq = <Mod-mod_delay1 FrqA> + <Mod-mod_delay1 FrqB> + <Mod-mod_delay1 FrqC>
kmod1amp = <Mod-mod_mod1 Amp> * .5
kmod1frqmin = kdel1frq * (<Mod-mod_mod1 MinFrqA> + <Mod-mod_mod1 MinFrqB>)
kmod1frqmax = kdel1frq * (<Mod-mod_mod1 MaxFrqA> +<Mod-mod_mod1 MaxFrqB>)
kdel2amp = <Mod-mod_delay2 Amp> * .5
kdel2frq = <Mod-mod_delay2 FrqA> + <Mod-mod_delay2 FrqB> + <Mod-mod_delay2 FrqC>
kmod2amp = <Mod-mod_mod2 Amp> * .5
kmod2frqmin = kdel1frq * (<Mod-mod_mod2 MinFrqA> + <Mod-mod_mod2 MinFrqB>)
kmod2frqmax = kdel1frq * (<Mod-mod_mod2 MaxFrqA> + <Mod-mod_mod2 MaxFrqB>)
kdel1fdbk = <Mod-mod_delay1 Fdbk>
kdel2fdbk = <Mod-mod_delay2 Fdbk>
imaxdel = 4
itbsin ftgentmp 0, 0, 8192, 10, 1, 0
; delay modifiers
kmod1A jspline kmod1amp, kmod1frqmin, kmod1frqmax ; left
kmod1B jspline kmod1amp, kmod1frqmin, kmod1frqmax ; right
kmod1A += kmod1amp
kmod1B += kmod1amp
kmod2A jspline kmod2amp, kmod2frqmin, kmod2frqmax ; left
kmod2B jspline kmod2amp, kmod2frqmin, kmod2frqmax ; right
kmod2A += kmod2amp
kmod2B += kmod2amp
; delay oscilators
kdel1A oscili kdel1amp, kdel1frq * (1 + kmod1A), itbsin
kdel1B oscili kdel1amp, kdel1frq * (1 + kmod1B), itbsin
kdel1A += kdel1amp
kdel1B += kdel1amp
kdel2A oscili kdel2amp, kdel2frq * (1 + kmod2A), itbsin
kdel2B oscili kdel2amp, kdel2frq * (1 + kmod2B), itbsin
kdel2A += kdel2amp
kdel2B += kdel2amp
; setup delay lines
afdbk1 init 0
afdbk2 init 0
adelL delayr imaxdel
afeed1A deltapi kdel1A
afeed2A deltapi kdel2A
delayw ain1 + afdbk1
adelR delayr imaxdel
afeed1B deltapi kdel1B
afeed2B deltapi kdel2B
delayw ain2 + afdbk2
afdbk1 = ((afeed1A + afeed1B)/2) * kdel1fdbk
afdbk2 = ((afeed2A + afeed2B)/2) * kdel2fdbk
aout1 = (ain1 + afeed1A + afeed2A) * .33
aout2 = (ain2 + afeed1B + afeed2B) * .33
else
aout1 = ain1
aout2 = ain2
endif</code>
<comments>
DESCRIPTION:
A dual modulator, dual channel delay-based modulator. Each modulator uses an oscillator as the base to modulate the delay lines;
this can be an LFO or audio-range frequency. These oscillators are then modulated by their own jspline modulator, fully configurable in the UI.
The results can be anything from full-on distortion to subtle chorus effects.
CONTROLLERS:
ON/OFF - bypass
Delay - depth of delay oscillators
Delay Feedback - feedback of the delayed signal
Delay Frequency - delay time in ms, divided into 3 resolutions
Jitter range - width of random modulation range
Jitter Min/Max Frequency - fine and coarse tuning of the frequency of random values
---
version 1.11, May 2020
- added comments on controllers
version 1.1, 2018
- new GUI and small code adaptations by Menno Knevel
version 1.0, 2008?
- initial version by mbechard</comments>
<opcodeList/>
<graphicInterface editEnabled='false'>
<gridSettings>
<width>5</width>
<height>5</height>
<gridStyle>LINE</gridStyle>
<snapGridEnabled>true</snapGridEnabled>
</gridSettings>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>0</x>
<y>0</y>
<groupName>Group</groupName>
<backgroundColor>0x00000033</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBCheckBox'>
<objectName>Mod-modON</objectName>
<x>0</x>
<y>0</y>
<automationAllowed>true</automationAllowed>
<label/>
<selected>true</selected>
<randomizable>true</randomizable>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>10</x>
<y>10</y>
<groupName>Group</groupName>
<backgroundColor>0x4d8080ff</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>false</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>10</x>
<y>10</y>
<groupName>delay 1</groupName>
<backgroundColor>0x00000033</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>294</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_delay1 FrqA</objectName>
<x>135</x>
<y>20</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<bdresolution>0.1</bdresolution>
<value>0.4</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_delay1 FrqB</objectName>
<x>135</x>
<y>40</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>100.0</maximum>
<bdresolution>1</bdresolution>
<value>38.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_delay1 Amp</objectName>
<x>10</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>2.0</maximum>
<value>0.058489654</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>delay</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>5</x>
<y>95</y>
<groupName>jitter</groupName>
<backgroundColor>0x00000033</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>105</x>
<y>40</y>
<label>Mod. Min. Freq.</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_mod1 MaxFrqA</objectName>
<x>65</x>
<y>60</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.54</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>false</valueDisplayEnabled>
<label>label</label>
<labelEnabled>false</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_mod1 MinFrqA</objectName>
<x>65</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.09</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>false</valueDisplayEnabled>
<label>label</label>
<labelEnabled>false</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>15</x>
<y>95</y>
<label>range</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBVSlider' version='2'>
<objectName>Mod-mod_mod1 Amp</objectName>
<x>15</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>2.0</maximum>
<bdresolution>0.1</bdresolution>
<value>1.1</value>
<sliderHeight>90</sliderHeight>
<randomizable>true</randomizable>
<valueDisplayEnabled>false</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_mod1 MaxFrqB</objectName>
<x>120</x>
<y>75</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1000.0</maximum>
<bdresolution>1</bdresolution>
<value>551.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_mod1 MinFrqB</objectName>
<x>120</x>
<y>20</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1000.0</maximum>
<bdresolution>1</bdresolution>
<value>385.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>105</x>
<y>95</y>
<label>Mod. Max. Freq.</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>135</x>
<y>10</y>
<label>Delay Frequency</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_delay1 FrqC</objectName>
<x>135</x>
<y>60</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>22000.0</maximum>
<bdresolution>1E+2</bdresolution>
<value>0.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_delay1 Fdbk</objectName>
<x>65</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.43</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>feedback</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>305</x>
<y>10</y>
<groupName>delay 2</groupName>
<backgroundColor>0x00000033</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBGroup'>
<objectName></objectName>
<x>5</x>
<y>95</y>
<groupName>jitter</groupName>
<backgroundColor>0x00000033</backgroundColor>
<borderColor>0x000000ff</borderColor>
<labelTextColor>0xffffffff</labelTextColor>
<titleEnabled>true</titleEnabled>
<width>20</width>
<height>20</height>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>10</x>
<y>95</y>
<label>range</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_mod2 MaxFrqA</objectName>
<x>60</x>
<y>65</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.23</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>false</valueDisplayEnabled>
<label>label</label>
<labelEnabled>false</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBVSlider' version='2'>
<objectName>Mod-mod_mod2 Amp</objectName>
<x>10</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>2.0</maximum>
<bdresolution>0.1</bdresolution>
<value>0.6</value>
<sliderHeight>90</sliderHeight>
<randomizable>true</randomizable>
<valueDisplayEnabled>false</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_mod2 MaxFrqB</objectName>
<x>115</x>
<y>75</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1000.0</maximum>
<bdresolution>1</bdresolution>
<value>394.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>100</x>
<y>45</y>
<label>Mod. Min. Freq.</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>100</x>
<y>95</y>
<label>Mod. Max. Freq.</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_mod2 MinFrqB</objectName>
<x>115</x>
<y>25</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1000.0</maximum>
<bdresolution>1</bdresolution>
<value>242.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_mod2 MinFrqA</objectName>
<x>60</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.0</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>false</valueDisplayEnabled>
<label>label</label>
<labelEnabled>false</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_delay2 FrqC</objectName>
<x>130</x>
<y>60</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>22000.0</maximum>
<bdresolution>1E+2</bdresolution>
<value>3600.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_delay2 FrqB</objectName>
<x>130</x>
<y>40</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>100.0</maximum>
<bdresolution>1</bdresolution>
<value>0.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBLabel' version='2'>
<objectName></objectName>
<x>130</x>
<y>10</y>
<label>Delay Frequency</label>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_delay2 Amp</objectName>
<x>10</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>2.0</maximum>
<value>0.856174744</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>delay</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBHSlider' version='2'>
<objectName>Mod-mod_delay2 FrqA</objectName>
<x>130</x>
<y>20</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<bdresolution>0.1</bdresolution>
<value>0.0</value>
<sliderWidth>100</sliderWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
</bsbObject>
<bsbObject type='blue.orchestra.blueSynthBuilder.BSBKnob' version='2'>
<objectName>Mod-mod_delay2 Fdbk</objectName>
<x>60</x>
<y>10</y>
<automationAllowed>true</automationAllowed>
<minimum>0.0</minimum>
<maximum>1.0</maximum>
<value>0.35000000000000003</value>
<knobWidth>40</knobWidth>
<randomizable>true</randomizable>
<valueDisplayEnabled>true</valueDisplayEnabled>
<label>feedback</label>
<labelEnabled>true</labelEnabled>
<font>
<name>System Regular</name>
<size>12.0</size>
</font>
</bsbObject>
</bsbObject>
</bsbObject>
</bsbObject>
</graphicInterface>
<parameterList>
<parameter uniqueId='-143771834' name='Mod-mod_delay1 FrqB' label='' min='0.0' max='100.0' bdresolution='1' automationEnabled='false' value='38.0'>
<line name='' version='2' max='100.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='38.0'/>
</line>
</parameter>
<parameter uniqueId='-143771832' name='Mod-mod_mod1 Amp' label='' min='0.0' max='2.0' bdresolution='0.1' automationEnabled='false' value='1.1'>
<line name='' version='2' max='2.0' min='0.0' bdresolution='0.1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='1.1'/>
</line>
</parameter>
<parameter uniqueId='-143771830' name='Mod-mod_mod1 MaxFrqA' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.54'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.54'/>
</line>
</parameter>
<parameter uniqueId='-143771828' name='Mod-mod_mod1 MinFrqA' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.09'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.09'/>
</line>
</parameter>
<parameter uniqueId='-143771826' name='Mod-mod_mod1 MinFrqB' label='' min='0.0' max='1000.0' bdresolution='1' automationEnabled='false' value='385.0'>
<line name='' version='2' max='1000.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='385.0'/>
</line>
</parameter>
<parameter uniqueId='-143771824' name='Mod-mod_mod1 MaxFrqB' label='' min='0.0' max='1000.0' bdresolution='1' automationEnabled='false' value='551.0'>
<line name='' version='2' max='1000.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='551.0'/>
</line>
</parameter>
<parameter uniqueId='-143771822' name='Mod-mod_delay1 FrqA' label='' min='0.0' max='1.0' bdresolution='0.1' automationEnabled='false' value='0.4'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='0.1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.4'/>
</line>
</parameter>
<parameter uniqueId='-143771820' name='Mod-mod_delay1 FrqC' label='' min='0.0' max='22000.0' bdresolution='1E+2' automationEnabled='false' value='0.0'>
<line name='' version='2' max='22000.0' min='0.0' bdresolution='1E+2' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.0'/>
</line>
</parameter>
<parameter uniqueId='-143771818' name='Mod-mod_delay1 Amp' label='' min='0.0' max='2.0' bdresolution='-1' automationEnabled='false' value='0.058489654'>
<line name='' version='2' max='2.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.058489654'/>
</line>
</parameter>
<parameter uniqueId='-143771816' name='Mod-mod_delay1 Fdbk' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.43'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.43'/>
</line>
</parameter>
<parameter uniqueId='-143771814' name='Mod-mod_delay2 Fdbk' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.35000000000000003'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.35000000000000003'/>
</line>
</parameter>
<parameter uniqueId='-143771812' name='Mod-mod_delay2 FrqC' label='' min='0.0' max='22000.0' bdresolution='1E+2' automationEnabled='false' value='3600.0'>
<line name='' version='2' max='22000.0' min='0.0' bdresolution='1E+2' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='3600.0'/>
</line>
</parameter>
<parameter uniqueId='-143771810' name='Mod-mod_delay2 FrqB' label='' min='0.0' max='100.0' bdresolution='1' automationEnabled='false' value='0.0'>
<line name='' version='2' max='100.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.0'/>
</line>
</parameter>
<parameter uniqueId='-143771808' name='Mod-mod_delay2 FrqA' label='' min='0.0' max='1.0' bdresolution='0.1' automationEnabled='false' value='0.0'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='0.1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.0'/>
</line>
</parameter>
<parameter uniqueId='-143771806' name='Mod-mod_delay2 Amp' label='' min='0.0' max='2.0' bdresolution='-1' automationEnabled='false' value='0.856174744'>
<line name='' version='2' max='2.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.856174744'/>
</line>
</parameter>
<parameter uniqueId='-143771804' name='Mod-mod_mod2 Amp' label='' min='0.0' max='2.0' bdresolution='0.1' automationEnabled='false' value='0.6'>
<line name='' version='2' max='2.0' min='0.0' bdresolution='0.1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.6'/>
</line>
</parameter>
<parameter uniqueId='-143771802' name='Mod-mod_mod2 MaxFrqB' label='' min='0.0' max='1000.0' bdresolution='1' automationEnabled='false' value='394.0'>
<line name='' version='2' max='1000.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='394.0'/>
</line>
</parameter>
<parameter uniqueId='-143771800' name='Mod-mod_mod2 MinFrqB' label='' min='0.0' max='1000.0' bdresolution='1' automationEnabled='false' value='242.0'>
<line name='' version='2' max='1000.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='242.0'/>
</line>
</parameter>
<parameter uniqueId='-143771798' name='Mod-mod_mod2 MaxFrqA' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.23'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.23'/>
</line>
</parameter>
<parameter uniqueId='-143771796' name='Mod-mod_mod2 MinFrqA' label='' min='0.0' max='1.0' bdresolution='-1' automationEnabled='false' value='0.0'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='-1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='0.0'/>
</line>
</parameter>
<parameter uniqueId='-104104149' name='Mod-modON' label='' min='0.0' max='1.0' bdresolution='1' automationEnabled='false' value='1.0'>
<line name='' version='2' max='1.0' min='0.0' bdresolution='1' color='-8355712' rightBound='false' endPointsLinked='false'>
<linePoint x='0.0' y='1.0'/>
</line>
</parameter>
</parameterList>
</effect>