forked from BryanChi/BryanChi-FX-Devices
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
3584 lines (3584 loc) · 739 KB
/
index.xml
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
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<index version="1" commit="f7c0b21c7156b6e2182ac7f06d4d40c4959308ed" name="FX Devices">
<category name="BryanChi_FX_Devices">
<reapack name="BryanChi_FX Devices.lua" type="script" desc="FX Devices">
<version name="1.0beta10.4.1.2" author="Bryan Chi" time="2023-09-28T13:58:10Z">
<changelog><![CDATA[- less nested menus for FX adder
- Fix Adding fx chain crash]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/ThemeColors.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/ThemeColors.ini</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source file="src/Keyboard Shortcuts.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Keyboard%20Shortcuts.ini</source>
<source file="src/FX Default Values.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FX%20Default%20Values.ini</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d1fea6ffffff645d0f926efb4a13b73135f477bc/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.4.2" author="Bryan Chi" time="2023-09-28T17:00:53Z">
<changelog><![CDATA[- Many thanks to Suzuki for this bug fix update!!
- "local u = ultraschall"
- "Add Parameter to Envelope" correctly shows selected parameters instead of macro envelope.
- Reflecting envelope to arrange
- The old path is updated to the new one.
- Fixed FX Layering
- Pro-Q opens properly]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/ThemeColors.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/ThemeColors.ini</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source file="src/Keyboard Shortcuts.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Keyboard%20Shortcuts.ini</source>
<source file="src/FX Default Values.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FX%20Default%20Values.ini</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c6120025ad787f3c4c285c45c491259fc019560e/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.3" author="Bryan Chi" time="2023-09-29T13:23:23Z">
<changelog><![CDATA[- Add New Modulator - LFO ]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/ThemeColors.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/ThemeColors.ini</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source file="src/Keyboard Shortcuts.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Keyboard%20Shortcuts.ini</source>
<source file="src/FX Default Values.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FX%20Default%20Values.ini</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/c2c776b207cb220f45cff2aa212e7292be9d9b68/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.5" author="Bryan Chi" time="2023-09-29T13:30:20Z">
<changelog><![CDATA[- Add New Modulator - LFO
- Add Parameter linking]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/ThemeColors.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/ThemeColors.ini</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source file="src/Keyboard Shortcuts.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Keyboard%20Shortcuts.ini</source>
<source file="src/FX Default Values.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FX%20Default%20Values.ini</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/fc9b468d16fc3690588d977e9572ad68a93527ec/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.5.1" author="Bryan Chi" time="2023-09-30T06:56:11Z">
<changelog><![CDATA[- Plugin scripts example
- Add conditions to hide default controls and Wet/Dry knob when there are plugin scripts that corresponds with current FX.]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/ThemeColors.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/ThemeColors.ini</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source file="src/Keyboard Shortcuts.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Keyboard%20Shortcuts.ini</source>
<source file="src/FX Default Values.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FX%20Default%20Values.ini</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/3f82bff18fa13792077278d315417146b8bd9eb4/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.6" author="Bryan Chi" time="2023-10-02T14:30:20Z">
<changelog><![CDATA[- Plugin scripts example
- Add conditions to hide default controls and Wet/Dry knob when there are plugin scripts that corresponds with current FX.]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/ThemeColors.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/ThemeColors.ini</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source file="src/Keyboard Shortcuts.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Keyboard%20Shortcuts.ini</source>
<source file="src/FX Default Values.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FX%20Default%20Values.ini</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b84af870ee3bd02eba3ef58e15df228d1b23c7fe/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.7" author="Bryan Chi" time="2023-10-04T09:34:41Z">
<changelog><![CDATA[- New! Bipolar modulation - activate by holding alt when assigning modulation
- Added a new ‘Height’ property for editing layouts.
- Fix user’s keyboard shortcuts get replaced upon updating FX Device script to a new version.
- Fixed clicking ‘Automate’ on preset morph slider not working properly, when FXD Macro is not present.
- Fixed LFO Shape’s length changing when user changes the length slider by jumping more than one increment.
- Clicking on LFO’s little preview(where you hover to show the LFO edit window) will now pin the window.
- Fix multiple LFO blinking when assigning Modulation.
- Added option to do native modulations in parameter context menu (accessible by ctrl + rmb)
- fixed preset morphing crashes
- Fixed clicking ‘add envelope to parameter’ on LFO speed/gain doesn’t show envelope lane.
- fixed unable to load fx chain in fx adder.]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/b85e03b0d2080c805313e861fb599852e06d6fb4/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.7.1" author="Bryan Chi" time="2023-10-05T07:08:00Z">
<changelog><![CDATA[- fix having to hold alt after right click for bipolar modulation to work]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/4ec6054ccb13b2974242e85ae3ced6dc24ca9bf2/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.8" author="Bryan Chi" time="2023-10-06T11:13:59Z">
<changelog><![CDATA[- LFO : NEW! added midi triggered envelopes mode.
- LFO : NEW! Legato settings for envelopes.
- LFO: optimize behaviors regarding sending gmems to LFO.
- Fixed unable to make a modulation bipolar when in assigning modulator mode.
- Fixed pro Q 3 UI being cropped off.
- Big thanks to Suzuki for the updates below:
- Added 14bit CC mode to the user inputs menu. 0 is off and 1 is on.
- Remove envelope option
- Added JS: Exciter layout and custom knob for it
- Fixed : Right double click to remove FX Devices' modulation
- Fixed : LFO Save/Cancel button does not work (key works)
- Fixed : Crash when not assigining lead_parameter
- Fixed : Correctly reset bus and channel when switching from FX Devices' modulation to parameter linking]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Knobs/FancyRedKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/Knobs/FancyRedKnob.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/54191dc8dfa6e47057e377e7e67334ea4bfc2d54/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.8.1" author="Bryan Chi" time="2023-10-07T10:10:53Z">
<changelog><![CDATA[- LFO : Fix having to edit a node in order to sync shape between jsfx and ImGui.
- Fix step sequencer window closing when mouse is adjusting step values and moved outside of the window.
- Fix sequencer opening condition penetrating topmost opened windows.
- Fix adding multiple instances of pro Q crashing.
- Fix Alt + Double right click setting parameter to max when it has modulation assigned.]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Knobs/FancyRedKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/Knobs/FancyRedKnob.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a9899c896ae23737df8617998c9503d04d750d48/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.9" author="Bryan Chi" time="2023-10-08T20:16:23Z">
<changelog><![CDATA[- New! Beautiful ReaComp Layout made by Suzuki! (Design concept from [Eugene Reznik](https://www.behance.net/reznik_e) - [https://www.behance.net/gallery/101780783/Fancy-Reaplugs-(Reaper-DAW-plugins-concept)](https://www.behance.net/gallery/101780783/Fancy-Reaplugs-%28Reaper-DAW-plugins-concept%29) )
- Layout Editor : remove duplicated Y-offest line in attached drawings saved ini files.
- Layout Editor : Fixed issue where parameter type gets replaced by attached drawing type upon retrieving data from saved ini file, resulting in parameter disappearing.
- Layout Editor : Now allows using plugin scripts alongside with layout editor, by adding FX[FxGUID].Compatible_W_regular = true in plugin script.
- LFO : Fix Y axis is inverted when dragging node for Windows users.
- Big thanks to Sexan for the updates below:
- FX browser: add new version check to decide which version of FX parser to use.
- Added requirements check, if Ultraschall or FX parser’s not found, the needed repositories will be added automatically, and repository browser will be opened for user to install.]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ReaComp (Cockos).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layouts/ReaComp%20(Cockos).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Knobs/FancyRedKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Knobs/FancyRedKnob.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/Images/Knobs/FancyGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Knobs/FancyGreenKnob.png</source>
<source file="src/Images/Knobs/FancyBlueKnob_Inverted.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob_Inverted.png</source>
<source file="src/Images/Knobs/FancyBlueKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob.png</source>
<source file="src/Images/Knobs/FancyLightGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Knobs/FancyLightGreenKnob.png</source>
<source file="src/Images/Switches/FancyGreenCheck_2.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Images/Switches/FancyGreenCheck_2.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/FX Layout Plugin Scripts/ReaComp.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/ReaComp.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Constants.lua</source>
<source file="src/Helpers/Sexan_FX_Browser.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/ea67f7f9f8a691dbab2128d4d7d44e374fdb5e07/BryanChi_FX_Devices/src/Helpers/Sexan_FX_Browser.lua</source>
</version>
<version name="1.0beta10.10" author="Bryan Chi" time="2023-10-27T12:02:51Z">
<changelog><![CDATA[- NEW! FX Container support. (press tab key to toggle collapse state, right click on FX title to show FX when collapsed )
- Significantly improve performance of saved FX layouts loading time.
- Fix ReaComp reversed check icons
- Sexan’s FX Adder - Detect Reaper version and uses respective parser.
- Layout Editor - Added new gain reduction readings settings for attach drawings.
- ReaComp - Fix reversed behavior of switches
- ReaComp - Add Gain reduction readings]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ReaComp (Cockos).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layouts/ReaComp%20(Cockos).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Knobs/FancyRedKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Knobs/FancyRedKnob.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/Images/Knobs/FancyGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Knobs/FancyGreenKnob.png</source>
<source file="src/Images/Knobs/FancyBlueKnob_Inverted.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob_Inverted.png</source>
<source file="src/Images/Knobs/FancyBlueKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob.png</source>
<source file="src/Images/Knobs/FancyLightGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Knobs/FancyLightGreenKnob.png</source>
<source file="src/Images/Switches/FancyGreenCheck_2.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Images/Switches/FancyGreenCheck_2.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/FX Layout Plugin Scripts/ReaComp.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/ReaComp.lua</source>
<source file="src/FX Layout Plugin Scripts/Container.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Container.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/d3f3aad8f8d24ba6a922fb579f88ba24d0918973/BryanChi_FX_Devices/src/Constants.lua</source>
</version>
<version name="1.0beta10.10.1" author="Bryan Chi" time="2023-11-02T23:22:52Z">
<changelog><![CDATA[- Fix ReaComp layout]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ReaComp (Cockos).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layouts/ReaComp%20(Cockos).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Knobs/FancyRedKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Knobs/FancyRedKnob.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/Images/Knobs/FancyGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Knobs/FancyGreenKnob.png</source>
<source file="src/Images/Knobs/FancyBlueKnob_Inverted.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob_Inverted.png</source>
<source file="src/Images/Knobs/FancyBlueKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob.png</source>
<source file="src/Images/Knobs/FancyLightGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Knobs/FancyLightGreenKnob.png</source>
<source file="src/Images/Switches/FancyGreenCheck_2.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Images/Switches/FancyGreenCheck_2.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/FX Layout Plugin Scripts/ReaComp.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/ReaComp.lua</source>
<source file="src/FX Layout Plugin Scripts/Container.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Container.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5d64a4127c5ce64d1120c83b79b5e28b50eb04e4/BryanChi_FX_Devices/src/Constants.lua</source>
</version>
<version name="1.0beta10.10.2" author="Bryan Chi" time="2023-11-03T01:00:37Z">
<changelog><![CDATA[- Much much faster startup time by using latest FX parser features made by Sexan. (Thank you Sexan!!)]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>
<source type="effect" file="FXD JSFXs/FXD (Mix)RackMixer.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20(Mix)RackMixer.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Band Joiner.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Band%20Joiner.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Gain Reduction Scope.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Gain%20Reduction%20Scope.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Macros.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Macros.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD ReSpectrum.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20ReSpectrum.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Saike BandSplitter.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Saike%20BandSplitter.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split to 32 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20to%2032%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/FXD Split To 4 Channels.jsfx">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/FXD%20Split%20To%204%20Channels.jsfx</source>
<source type="effect" file="FXD JSFXs/cookdsp.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/analysis.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/analysis.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/buffer.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/buffer.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/delay.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/delay.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/dynamics.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/dynamics.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/effects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/effects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/fftobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/fftobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/filters.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/filters.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/granulator.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/granulator.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/list.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/list.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/memalloc.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/memalloc.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/midi.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/midi.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/mmath.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/mmath.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/oscil.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/oscil.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/pvocobjects.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/pvocobjects.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/random.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/random.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/cookdsp/scaling.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/cookdsp/scaling.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/firhalfband.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/firhalfband.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/spectrum.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/spectrum.jsfx-inc</source>
<source type="effect" file="FXD JSFXs/svf_filter.jsfx-inc">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/FXD%20JSFXs/svf_filter.jsfx-inc</source>
<source file="src/FX Layouts/ValhallaDelay (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaDelay%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaFreqEcho (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaFreqEcho%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaShimmer (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaShimmer%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSpaceModulator (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSpaceModulator%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaSupermassive (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaSupermassive%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ValhallaVintageVerb (Valhalla DSP, LLC).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layouts/ValhallaVintageVerb%20(Valhalla%20DSP,%20LLC).ini</source>
<source file="src/FX Layouts/ReaComp (Cockos).ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layouts/ReaComp%20(Cockos).ini</source>
<source file="src/Images/Attached Drawings/LED light.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Attached%20Drawings/LED%20light.png</source>
<source file="src/Images/Knobs/Bitwig.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Knobs/Bitwig.png</source>
<source file="src/Images/Knobs/FancyRedKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Knobs/FancyRedKnob.png</source>
<source file="src/Images/Analog Knob 1.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Analog%20Knob%201.png</source>
<source file="src/Images/trash.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/trash.png</source>
<source file="src/Images/sinewave.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/sinewave.png</source>
<source file="src/Images/save.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/save.png</source>
<source file="src/Images/pinned.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/pinned.png</source>
<source file="src/Images/pin.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/pin.png</source>
<source file="src/Images/paste.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/paste.png</source>
<source file="src/Images/copy.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/copy.png</source>
<source file="src/Images/Knobs/FancyGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Knobs/FancyGreenKnob.png</source>
<source file="src/Images/Knobs/FancyBlueKnob_Inverted.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob_Inverted.png</source>
<source file="src/Images/Knobs/FancyBlueKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Knobs/FancyBlueKnob.png</source>
<source file="src/Images/Knobs/FancyLightGreenKnob.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Knobs/FancyLightGreenKnob.png</source>
<source file="src/Images/Switches/FancyGreenCheck_2.png">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Images/Switches/FancyGreenCheck_2.png</source>
<source file="src/LFO Shapes/Square.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/LFO%20Shapes/Square.ini</source>
<source file="src/LFO Shapes/Sine.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/LFO%20Shapes/Sine.ini</source>
<source file="src/LFO Shapes/Saw.ini">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/LFO%20Shapes/Saw.ini</source>
<source file="src/FX Layout Plugin Scripts/Pro Q 3.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20Q%203.lua</source>
<source file="src/FX Layout Plugin Scripts/Pro C 2.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Pro%20C%202.lua</source>
<source file="src/FX Layout Plugin Scripts/Volume Pan Smoother.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Volume%20Pan%20Smoother.lua</source>
<source file="src/FX Layout Plugin Scripts/ReaComp.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/ReaComp.lua</source>
<source file="src/FX Layout Plugin Scripts/Container.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FX%20Layout%20Plugin%20Scripts/Container.lua</source>
<source file="src/IconFont1.ttf">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/IconFont1.ttf</source>
<source main="main" file="src/FXD - Record Last Touch.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/FXD%20-%20Record%20Last%20Touch.lua</source>
<source file="src/Functions/EQ functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Functions/EQ%20functions.lua</source>
<source file="src/Functions/General Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Functions/General%20Functions.lua</source>
<source file="src/Functions/FX Layering.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Functions/FX%20Layering.lua</source>
<source file="src/Functions/Layout Editor functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Functions/Layout%20Editor%20functions.lua</source>
<source file="src/Functions/Modulation.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Functions/Modulation.lua</source>
<source file="src/Functions/Theme Editor Functions.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Functions/Theme%20Editor%20Functions.lua</source>
<source file="src/Functions/Filesystem_utils.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Functions/Filesystem_utils.lua</source>
<source file="src/Constants.lua">https://github.com/BryanChi/BryanChi-FX-Devices/raw/5dd0886996526b099f7b46420483311b57dea2f4/BryanChi_FX_Devices/src/Constants.lua</source>
</version>
<version name="1.0beta10.10.3" author="Bryan Chi" time="2023-11-05T05:13:30Z">
<changelog><![CDATA[- layout editor - fix switch on color not saving in
- layout editor - fix entering background edit mode crashing]]></changelog>
<source main="main">https://github.com/BryanChi/BryanChi-FX-Devices/raw/a8ffb40fb670c981aa5e852cf46f5e7f25f9d575/BryanChi_FX_Devices/BryanChi_FX%20Devices.lua</source>