-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
ultraschall_api_index.xml
1076 lines (1062 loc) · 199 KB
/
ultraschall_api_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" name="Ultraschall-API">
<category name="Ultraschall-API-category">
<reapack name="Ultraschall API package" type="extension">
<version name="56002.00" author="Meo-Ada Mespotine">
<source file="reagirl.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//reagirl.lua</source>
<source file="ultraschall_api.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api.lua</source>
<source file="ultraschall_api_readme.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api_readme.txt</source>
<source file="/ultraschall_api/Changelog-Api.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Changelog-Api.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/PodcastMetadata_in_Ultraschall.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/PodcastMetadata_in_Ultraschall.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Chapters" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Chapters</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Introduction_and_Concepts.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Introduction_and_Concepts.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_1.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_1.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_2.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_2.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_3.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_3.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_4.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_4.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_5.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_5.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_6.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_6.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_7.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_7.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_8.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/ReaGirl_Tutorial_8.txt</source>
<source file="/ultraschall_api/DocsSourcefiles/Reaper_API_Video_Documentation.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/Reaper_API_Video_Documentation.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/Reaper_API_Web_Documentation.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/Reaper_API_Web_Documentation.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/Reaper_Api_Documentation.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/Reaper_Api_Documentation.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/Reaper_Config_Variables.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/Reaper_Config_Variables.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/Reaper_StateChunk_Documentation.USDOCML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/Reaper_StateChunk_Documentation.USDOCML</source>
<source file="/ultraschall_api/DocsSourcefiles/Reaper_Theme_Images_Reference.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/Reaper_Theme_Images_Reference.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/US_Api-Concepts_AUD.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/US_Api-Concepts_AUD.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/US_Api-Concepts_DOC.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/US_Api-Concepts_DOC.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/US_Api-Concepts_GFX.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/US_Api-Concepts_GFX.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/US_Api-Concepts_VID.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/US_Api-Concepts_VID.USDocML</source>
<source file="/ultraschall_api/DocsSourcefiles/US_Api_Introduction_and_Concepts.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/DocsSourcefiles/US_Api_Introduction_and_Concepts.USDocML</source>
<source file="/ultraschall_api/Documentation/ChangeLog.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/ChangeLog.html</source>
<source file="/ultraschall_api/Documentation/Downloads.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Downloads.html</source>
<source file="/ultraschall_api/Documentation/Examples/Mespotine_GetMasterTrack_MasterTrackVolume.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/Mespotine_GetMasterTrack_MasterTrackVolume.lua</source>
<source file="/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_MasterTrackVolume.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_MasterTrackVolume.lua</source>
<source file="/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_ShowTracknameAndVolume.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_ShowTracknameAndVolume.lua</source>
<source file="/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_ToggleTrackSelection.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_ToggleTrackSelection.lua</source>
<source file="/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_Tracknumber.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/Mespotine_GetTrack_Tracknumber.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_1.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_1.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_2.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_3.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_3.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_4.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Additional_Examples/ReaGirl_TestScript_4.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_04.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_05.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_05.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_06.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_06.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_07.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_07.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_08.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_08.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_09.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_09.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_10.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_1/Tutorial_1_10.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_04.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_05.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_10/Tutorial_10_05.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_04.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_05.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_05.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_06.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_2/Tutorial_2_06.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_04.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_05.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_05.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_06.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_06.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_07.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_3/Tutorial_3_07.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_04.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_05.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_05.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_06.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_4/Tutorial_4_06.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_04.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_05.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_05.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_06.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_5/Tutorial_5_06.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_6/Tutorial_6_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_6/Tutorial_6_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_6/Tutorial_6_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_6/Tutorial_6_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_6/Tutorial_6_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_6/Tutorial_6_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_04.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_05.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_7/Tutorial_7_05.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_8/Tutorial_8_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_8/Tutorial_8_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_8/Tutorial_8_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_8/Tutorial_8_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_01.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_02.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_02.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_03.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_03.lua</source>
<source file="/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_04.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Examples/ReaGirl/Tutorial_9/Tutorial_9_04.lua</source>
<source file="/ultraschall_api/Documentation/Impressum.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Impressum.html</source>
<source file="/ultraschall_api/Documentation/Lua 5.3 Reference Manual_files/logo.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Lua%205.3%20Reference%20Manual_files/logo.gif</source>
<source file="/ultraschall_api/Documentation/Lua 5.3 Reference Manual_files/lua.css" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Lua%205.3%20Reference%20Manual_files/lua.css</source>
<source file="/ultraschall_api/Documentation/Lua 5.3 Reference Manual_files/manual.css" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Lua%205.3%20Reference%20Manual_files/manual.css</source>
<source file="/ultraschall_api/Documentation/Lua_5_3_Reference_Manual.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Lua_5_3_Reference_Manual.html</source>
<source file="/ultraschall_api/Documentation/PodMeta_v1.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/PodMeta_v1.html</source>
<source file="/ultraschall_api/Documentation/ReaGirl_Functions.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/ReaGirl_Functions.html</source>
<source file="/ultraschall_api/Documentation/ReaGirl_Introduction_and_Concepts.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/ReaGirl_Introduction_and_Concepts.html</source>
<source file="/ultraschall_api/Documentation/Reaper-Filetype-Descriptions.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Reaper-Filetype-Descriptions.html</source>
<source file="/ultraschall_api/Documentation/Reaper_API_Video_Documentation.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Reaper_API_Video_Documentation.html</source>
<source file="/ultraschall_api/Documentation/Reaper_API_Web_Documentation.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Reaper_API_Web_Documentation.html</source>
<source file="/ultraschall_api/Documentation/Reaper_Api_Documentation.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Reaper_Api_Documentation.html</source>
<source file="/ultraschall_api/Documentation/Reaper_Config_Variables.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Reaper_Config_Variables.html</source>
<source file="/ultraschall_api/Documentation/Reaper_Misc_Docs.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/Reaper_Misc_Docs.html</source>
<source file="/ultraschall_api/Documentation/US_Api_AUD.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_AUD.html</source>
<source file="/ultraschall_api/Documentation/US_Api_Concepts_AUD.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_Concepts_AUD.html</source>
<source file="/ultraschall_api/Documentation/US_Api_Concepts_DOC.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_Concepts_DOC.html</source>
<source file="/ultraschall_api/Documentation/US_Api_Concepts_GFX.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_Concepts_GFX.html</source>
<source file="/ultraschall_api/Documentation/US_Api_Concepts_GUI.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_Concepts_GUI.html</source>
<source file="/ultraschall_api/Documentation/US_Api_Concepts_VID.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_Concepts_VID.html</source>
<source file="/ultraschall_api/Documentation/US_Api_DOC.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_DOC.html</source>
<source file="/ultraschall_api/Documentation/US_Api_Functions.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_Functions.html</source>
<source file="/ultraschall_api/Documentation/US_Api_GFX.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_GFX.html</source>
<source file="/ultraschall_api/Documentation/US_Api_GUI.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_GUI.html</source>
<source file="/ultraschall_api/Documentation/US_Api_Introduction_and_Concepts.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_Introduction_and_Concepts.html</source>
<source file="/ultraschall_api/Documentation/US_Api_VID.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/US_Api_VID.html</source>
<source file="/ultraschall_api/Documentation/gfx/Changelog.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Changelog.png</source>
<source file="/ultraschall_api/Documentation/gfx/Changelog_Un.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Changelog_Un.png</source>
<source file="/ultraschall_api/Documentation/gfx/Downloads.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Downloads.png</source>
<source file="/ultraschall_api/Documentation/gfx/Downloads_Un.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Downloads_Un.png</source>
<source file="/ultraschall_api/Documentation/gfx/Impressum.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Impressum.png</source>
<source file="/ultraschall_api/Documentation/gfx/Impressum_Un.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Impressum_Un.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS-Plugin-Big.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS-Plugin-Big.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.951.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.951.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.962.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.962.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.963.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.963.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.964.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.964.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.971.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.971.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.972.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.972.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.980.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.980.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.986.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.986.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.988.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.988.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.989.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.989.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.990.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.990.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.991.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.991.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.992.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.992.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.995.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.995.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.997.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.997.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.998.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.998.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_0.999.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_0.999.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_1.000.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_1.000.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_1.001.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_1.001.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_1.002.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_1.002.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_1.010.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_1.010.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_1.215.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_1.215.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_1.217.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_1.217.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_1.220.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_1.220.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_Logo_0_962.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_Logo_0_962.png</source>
<source file="/ultraschall_api/Documentation/gfx/JS_Logo_1_002.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/JS_Logo_1_002.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/Osara2021.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Osara2021.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/Osara2021.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Osara2021.png</source>
<source file="/ultraschall_api/Documentation/gfx/ParmModTable.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ParmModTable.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/ParmModTable.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ParmModTable.png</source>
<source file="/ultraschall_api/Documentation/gfx/ReaBlink.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaBlink.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/ReaGirl-Logo.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaGirl-Logo.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/ReaGirl_Button.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaGirl_Button.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/ReaGirl_Button.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaGirl_Button.png</source>
<source file="/ultraschall_api/Documentation/gfx/ReaGirl_Button_Un.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaGirl_Button_Un.png</source>
<source file="/ultraschall_api/Documentation/gfx/ReaGirl_Internals.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaGirl_Internals.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/ReaGirl_Internals.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaGirl_Internals.png</source>
<source file="/ultraschall_api/Documentation/gfx/ReaImgGui.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaImgGui.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/ReaImgGui_0_5_10.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ReaImgGui_0_5_10.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/Reaper_Button.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Reaper_Button.png</source>
<source file="/ultraschall_api/Documentation/gfx/Reaper_Button_Un.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Reaper_Button_Un.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/Reaper_Button_Un.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Reaper_Button_Un.png</source>
<source file="/ultraschall_api/Documentation/gfx/Reaper_Internals.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Reaper_Internals.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/Reaper_Internals.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Reaper_Internals.png</source>
<source file="/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_after_option_2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_after_option_2.png</source>
<source file="/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_after_option_nil.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_after_option_nil.png</source>
<source file="/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_before.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_before.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_before.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Routing_004_RoutingMassManipulation_RoutingMatrix_before.png</source>
<source file="/ultraschall_api/Documentation/gfx/SWS_Logo_2_10_0.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/SWS_Logo_2_10_0.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/SWS_Logo_2_13_0_0.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/SWS_Logo_2_13_0_0.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial10_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial10_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial10_2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial10_2.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial10_3.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial10_3.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial10_4.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial10_4.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial10_5.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial10_5.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_10.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_10.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_2.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_3.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_3.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_4.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_4.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_5.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_5.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_6.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_6.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_7.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_7.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_8.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_8.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_8.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_8.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial1_9.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial1_9.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial2_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial2_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial2_3.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial2_3.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial2_4.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial2_4.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial2_6.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial2_6.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial2_6.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial2_6.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial3_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial3_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial3_2.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial3_2.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial3_3.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial3_3.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial3_4.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial3_4.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial3_5.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial3_5.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial3_6.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial3_6.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial3_7.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial3_7.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial4_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial4_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial4_2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial4_2.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial4_3.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial4_3.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial4_4.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial4_4.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial4_5.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial4_5.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial4_6.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial4_6.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial5_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial5_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial5_2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial5_2.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial5_3.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial5_3.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial5_4.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial5_4.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial5_5.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial5_5.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial7_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial7_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial7_2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial7_2.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial7_3.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial7_3.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial7_4.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial7_4.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial7_5.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial7_5.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial8_1.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial8_1.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial8_2.gif" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial8_2.gif</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial9_1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial9_1.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial9_2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial9_2.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial9_3.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial9_3.png</source>
<source file="/ultraschall_api/Documentation/gfx/Tutorial9_4.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/Tutorial9_4.png</source>
<source file="/ultraschall_api/Documentation/gfx/US-MetadataExport-Milestones.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US-MetadataExport-Milestones.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/US-MetadataExport-Milestones.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US-MetadataExport-Milestones.png</source>
<source file="/ultraschall_api/Documentation/gfx/US-header.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US-header.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/US-header.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US-header.png</source>
<source file="/ultraschall_api/Documentation/gfx/US_41_beta.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US_41_beta.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/US_41_beta.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US_41_beta.png</source>
<source file="/ultraschall_api/Documentation/gfx/US_42_beta.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US_42_beta.png</source>
<source file="/ultraschall_api/Documentation/gfx/US_Button.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US_Button.png</source>
<source file="/ultraschall_api/Documentation/gfx/US_Button_Un.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/US_Button_Un.png</source>
<source file="/ultraschall_api/Documentation/gfx/js_0.993.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/js_0.993.png</source>
<source file="/ultraschall_api/Documentation/gfx/js_1.301.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/js_1.301.png</source>
<source file="/ultraschall_api/Documentation/gfx/js_1.310.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/js_1.310.png</source>
<source file="/ultraschall_api/Documentation/gfx/linedance.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/linedance.png</source>
<source file="/ultraschall_api/Documentation/gfx/llm.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/llm.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/llm0.3.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/llm0.3.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/llm0.4.1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/llm0.4.1.png</source>
<source file="/ultraschall_api/Documentation/gfx/lua5.3.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/lua5.3.png</source>
<source file="/ultraschall_api/Documentation/gfx/reablink0.4.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reablink0.4.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/reablink0.4.4.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reablink0.4.4.png</source>
<source file="/ultraschall_api/Documentation/gfx/reagirl1.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reagirl1.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaimgui0.8.1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaimgui0.8.1.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaimgui0.8.5.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaimgui0.8.5.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.40.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.40.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.50.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.50.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.52.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.52.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.62.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.62.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.70.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.70.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.77.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.77.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.80.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.80.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.90.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.90.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.91.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.91.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.92.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.92.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.94.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.94.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.941.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.941.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.95.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.95.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.96.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.96.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.961.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.961.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.965.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.965.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.97.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.97.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.972.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.972.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.974.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.974.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.975.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.975.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.976.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.976.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.977.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.977.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.978.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.978.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.979.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.979.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.980.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.980.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.981.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.981.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.982.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.982.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.983.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.983.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.987.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.987.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper5.99.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper5.99.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.00.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.00.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.01.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.01.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.02.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.02.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.04.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.04.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.05.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.05.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.09.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.09.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.10.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.10.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.11.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.11.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.12.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.12.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.13.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.13.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.14.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.14.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.15.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.15.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.16.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.16.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.17.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.17.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.18.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.18.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.19.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.19.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.20.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.20.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.22.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.22.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.23.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.23.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.24.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.24.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.25.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.25.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.26.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.26.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.27.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.27.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.29.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.29.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.30.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.30.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.30.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.30.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.32.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.32.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.33.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.33.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.34.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.34.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.35.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.35.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.36.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.36.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.37.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.37.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.38.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.38.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.39.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.39.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.40.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.40.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.41.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.41.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.42.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.42.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.43.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.43.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.44.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.44.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.46.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.46.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.47.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.47.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.48.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.48.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.49.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.49.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.50.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.50.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.51.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.51.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.52.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.52.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.53.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.53.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.54.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.54.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.57.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.57.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.58.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.58.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.59.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.59.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.60.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.60.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.62.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.62.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.64.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.64.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.65.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.65.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.67.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.67.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.68.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.68.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.69.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.69.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.70.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.70.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.71.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.71.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.72.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.72.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.73.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.73.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.74.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.74.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.75.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.75.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.76.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.76.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.77.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.77.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.78.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.78.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.79.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.79.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.80.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.80.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.81.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.81.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.82.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.82.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper6.965.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper6.965.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.00.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.00.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.01.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.01.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.02.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.02.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.02.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.02.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.03.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.03.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.04.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.04.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.05.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.05.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.06.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.06.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.07.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.07.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.08.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.08.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.09.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.09.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.10.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.10.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.11.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.11.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.12.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.12.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.13.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.13.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.14.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.14.png</source>
<source file="/ultraschall_api/Documentation/gfx/reaper7.15.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/reaper7.15.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.10.0.1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.10.0.1.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.10.1.1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.10.1.1.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.11.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.11.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.12.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.12.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.12.1.1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.12.1.1.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.12.1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.12.1.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.13.0.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.13.0.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.13.1.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.13.1.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.13.2.0.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.13.2.0.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.8.8.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.8.8.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.9.6.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.9.6.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.9.7.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.9.7.png</source>
<source file="/ultraschall_api/Documentation/gfx/sws2.9.8.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/sws2.9.8.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.00.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.00.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.1.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.1.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.2.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.3.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.3.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.4.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.4.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.5.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.5.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.6.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.6.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.7.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.7.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.75.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.75.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.8.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.8.png</source>
<source file="/ultraschall_api/Documentation/gfx/ultraschall4.9.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/ultraschall4.9.png</source>
<source file="/ultraschall_api/Documentation/gfx/us-Kopie.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/us-Kopie.png</source>
<source file="/ultraschall_api/Documentation/gfx/us-Kopie2.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/us-Kopie2.png</source>
<source file="/ultraschall_api/Documentation/gfx/us-index.pfi" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/us-index.pfi</source>
<source file="/ultraschall_api/Documentation/gfx/us-index.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/us-index.png</source>
<source file="/ultraschall_api/Documentation/gfx/us.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/gfx/us.png</source>
<source file="/ultraschall_api/Documentation/index.html" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/index.html</source>
<source file="/ultraschall_api/Documentation/misc_docs/ACTIONS_List_of_Reaper_Actions_including_undocumented_ones.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/ACTIONS_List_of_Reaper_Actions_including_undocumented_ones.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/API_How_StuffMidiMessage_works.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/API_How_StuffMidiMessage_works.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/CONFIGVARS_List_of_all_ConfigVars_as_toggled_by_Actions.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/CONFIGVARS_List_of_all_ConfigVars_as_toggled_by_Actions.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/EXTSTATE_List_of_ReaTeam_Used_ExtState_Sections.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/EXTSTATE_List_of_ReaTeam_Used_ExtState_Sections.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/EXTSTATE_List_of_ReaTeam_Used_ProjExtState_Sections.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/EXTSTATE_List_of_ReaTeam_Used_ProjExtState_Sections.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/HWND_List_of_Child-hwnds_as_used_by_Reaper_dialogs.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/HWND_List_of_Child-hwnds_as_used_by_Reaper_dialogs.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/Jumping_FX_Button_in_TCP-demo.zip" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/Jumping_FX_Button_in_TCP-demo.zip</source>
<source file="/ultraschall_api/Documentation/misc_docs/LICECAP_How_LiceCap_ini_works.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/LICECAP_How_LiceCap_ini_works.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/PROJECTSETTINGS_Which_reaper.ini-entries_store_default-project-settings.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/PROJECTSETTINGS_Which_reaper.ini-entries_store_default-project-settings.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/RENDER_How_RenderCFG-Base64-strings_are_encoded.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/RENDER_How_RenderCFG-Base64-strings_are_encoded.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/RENDER_How_RenderPresets_are_stored_in_reaper-render.ini.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/RENDER_How_RenderPresets_are_stored_in_reaper-render.ini.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/RENDER_How_default-render_project-settings_are_stored_in_reaper.ini.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/RENDER_How_default-render_project-settings_are_stored_in_reaper.ini.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/STATECHUNK_Envelope-StateChunk-Docs.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/STATECHUNK_Envelope-StateChunk-Docs.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/STATECHUNK_How_ParameterLearn-LFO_and_Modulation_is_stored_in_statechunks.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/STATECHUNK_How_ParameterLearn-LFO_and_Modulation_is_stored_in_statechunks.txt</source>
<source file="/ultraschall_api/Documentation/misc_docs/STATECHUNK_MediaItemStateChunk-Docs.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/misc_docs/STATECHUNK_MediaItemStateChunk-Docs.txt</source>
<source file="/ultraschall_api/Documentation/scripts/clipboard.min.js.Download" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/scripts/clipboard.min.js.Download</source>
<source file="/ultraschall_api/Documentation/scripts/scripts.js.Download" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/scripts/scripts.js.Download</source>
<source file="/ultraschall_api/Documentation/style.css" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/style.css</source>
<source file="/ultraschall_api/Documentation/style2.css" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Documentation/style2.css</source>
<source file="/ultraschall_api/IniFiles/Euro.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/Euro.txt</source>
<source file="/ultraschall_api/IniFiles/Reaper-Gfx.GetKey_Codes_and_their_associated_character.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/Reaper-Gfx.GetKey_Codes_and_their_associated_character.ini</source>
<source file="/ultraschall_api/IniFiles/Reaper-Menu-Only-Actions.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/Reaper-Menu-Only-Actions.ini</source>
<source file="/ultraschall_api/IniFiles/Reaper-factory-default-KEY-Codes_for_reaper-kb_ini.aidfile" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/Reaper-factory-default-KEY-Codes_for_reaper-kb_ini.aidfile</source>
<source file="/ultraschall_api/IniFiles/Reaper-factory-default-KEY-Codes_for_reaper-kb_ini.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/Reaper-factory-default-KEY-Codes_for_reaper-kb_ini.ini</source>
<source file="/ultraschall_api/IniFiles/StuffMidiMessage-CharacterCodes.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/StuffMidiMessage-CharacterCodes.ini</source>
<source file="/ultraschall_api/IniFiles/double_to_int_2.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/double_to_int_2.ini</source>
<source file="/ultraschall_api/IniFiles/double_to_int_24bit.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/double_to_int_24bit.ini</source>
<source file="/ultraschall_api/IniFiles/dpi2scale.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/dpi2scale.ini</source>
<source file="/ultraschall_api/IniFiles/ultraschall_api.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/IniFiles/ultraschall_api.ini</source>
<source file="/ultraschall_api/Modules/Additionals/VideoProcessor-Presets.RPL" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/Additionals/VideoProcessor-Presets.RPL</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_AudioManagement_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_AudioManagement_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_AutomationItems_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_AutomationItems_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_BatchConverter.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_BatchConverter.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Clipboard_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Clipboard_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Color_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Color_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_ConfigurationFiles_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_ConfigurationFiles_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_ConfigurationSettings_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_ConfigurationSettings_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_DeferManagement_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_DeferManagement_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Envelope_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Envelope_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_EventManager.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_EventManager.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_FXManagement_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_FXManagement_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_FileManagement_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_FileManagement_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_HelperFunctions_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_HelperFunctions_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Imagefile_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Imagefile_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Localize_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Localize_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_MIDIManagement_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_MIDIManagement_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Markers_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Markers_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_MediaItem_MediaItemStates_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_MediaItem_MediaItemStates_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_MediaItem_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_MediaItem_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_MetaData_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_MetaData_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Muting_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Muting_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Navigation_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Navigation_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_ProjectManagement_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_ProjectManagement_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_ProjectManagement_ProjectFiles_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_ProjectManagement_ProjectFiles_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_RazorEdit_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_RazorEdit_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_ReaMote_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_ReaMote_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_ReaperUserInterface_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_ReaperUserInterface_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Render_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Render_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Themeing_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Themeing_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_TrackManagement_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_TrackManagement_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_TrackManagement_Routing_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_TrackManagement_Routing_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_TrackManagement_TrackStates_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_TrackManagement_TrackStates_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_TrackManager_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_TrackManager_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_Ultraschall_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_Ultraschall_Module.lua</source>
<source file="/ultraschall_api/Modules/ultraschall_functions_WebInterface_Module.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Modules/ultraschall_functions_WebInterface_Module.lua</source>
<source file="/ultraschall_api/Readme-First.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Readme-First.txt</source>
<source file="/ultraschall_api/Scripts/GetUserInputValues_Helper_Script.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/GetUserInputValues_Helper_Script.lua</source>
<source file="/ultraschall_api/Scripts/HelperDeferScripts/ultraschall_track_old_cursorposition.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/HelperDeferScripts/ultraschall_track_old_cursorposition.lua</source>
<source file="/ultraschall_api/Scripts/HelperDeferScripts/ultraschall_track_old_loopstate.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/HelperDeferScripts/ultraschall_track_old_loopstate.lua</source>
<source file="/ultraschall_api/Scripts/HelperDeferScripts/ultraschall_track_old_playstate.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/HelperDeferScripts/ultraschall_track_old_playstate.lua</source>
<source file="/ultraschall_api/Scripts/ReaGirl_Help_Functions_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ReaGirl_Help_Functions_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ReaGirl_Help_Introduction_Concepts_Tutorials_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ReaGirl_Help_Introduction_Concepts_Tutorials_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ReaGirl_OpenFolder_ExampleScripts.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ReaGirl_OpenFolder_ExampleScripts.lua</source>
<source file="/ultraschall_api/Scripts/Relaxing_Screensaver.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Relaxing_Screensaver.lua</source>
<source file="/ultraschall_api/Scripts/SetMessageBox_Helper_Script.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/SetMessageBox_Helper_Script.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Add_Color_To_ThemeImages_of_Default_Theme_6.x.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Add_Color_To_ThemeImages_of_Default_Theme_6.x.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Add_ImageName_To_ThemeImages_of_Default_Theme_6.x.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Add_ImageName_To_ThemeImages_of_Default_Theme_6.x.lua</source>
<source file="/ultraschall_api/Scripts/Tools/ApiDocConverter.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/ApiDocConverter.lua</source>
<source file="/ultraschall_api/Scripts/Tools/CheckReascriptCPP.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/CheckReascriptCPP.lua</source>
<source file="/ultraschall_api/Scripts/Tools/CreateThemeImages_ReferenceManual_USDocML_Into_Clipboard.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/CreateThemeImages_ReferenceManual_USDocML_Into_Clipboard.lua</source>
<source file="/ultraschall_api/Scripts/Tools/DeveloperScripts/Ultraschall_StateInspector/Readme.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/DeveloperScripts/Ultraschall_StateInspector/Readme.txt</source>
<source file="/ultraschall_api/Scripts/Tools/DeveloperScripts/Ultraschall_StateInspector/Ultraschall_Inspector_Gfx_GetKey_Codes.ini" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/DeveloperScripts/Ultraschall_StateInspector/Ultraschall_Inspector_Gfx_GetKey_Codes.ini</source>
<source file="/ultraschall_api/Scripts/Tools/DeveloperScripts/Ultraschall_StateInspector/us.png" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/DeveloperScripts/Ultraschall_StateInspector/us.png</source>
<source file="/ultraschall_api/Scripts/Tools/DeveloperScripts_InDevelopment/Ultraschall_StateInspectorV3.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/DeveloperScripts_InDevelopment/Ultraschall_StateInspectorV3.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/DocGenerator_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/DocGenerator_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Doc_CreationPipeLine_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Doc_CreationPipeLine_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/ReaGirl_Doc_Concepts_Converter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/ReaGirl_Doc_Concepts_Converter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/ReaGirl_Doc_Functions_Converter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/ReaGirl_Doc_Functions_Converter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_ConfigVarDocConverter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_ConfigVarDocConverter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_FileTypeDocConverter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_FileTypeDocConverter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_ReaScriptConverter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_ReaScriptConverter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_VideoProcessorDocConverter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_VideoProcessorDocConverter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_WebRCDocConverter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Reaper_WebRCDocConverter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ApiDownloads_Generator.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ApiDownloads_Generator.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ChangelogConverterDoc.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ChangelogConverterDoc.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_DOC_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_DOC_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_GFX_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_GFX_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_VID_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_VID_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_ConceptsDocConverter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_DocCreatorMenu.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_DocCreatorMenu.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_DOC_Converter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_DOC_Converter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_Func_Converter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_Func_Converter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_GFX_Converter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_GFX_Converter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_VID_Converter_v2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Docgenerator/Ultraschall_Doc_VID_Converter_v2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Documentation_ValidtyCheckOfDocs.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Documentation_ValidtyCheckOfDocs.lua</source>
<source file="/ultraschall_api/Scripts/Tools/FindNewActions.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/FindNewActions.lua</source>
<source file="/ultraschall_api/Scripts/Tools/GetDPI_AndScaleValuesIntoPersistantExtStates.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/GetDPI_AndScaleValuesIntoPersistantExtStates.lua</source>
<source file="/ultraschall_api/Scripts/Tools/MarkDownChecker.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/MarkDownChecker.lua</source>
<source file="/ultraschall_api/Scripts/Tools/MarkDownChecker2.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/MarkDownChecker2.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Missing-Actions-List.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Missing-Actions-List.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Reapack-API-xml-generator.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Reapack-API-xml-generator.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Reaper_Configvar_String_Searcher.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Reaper_Configvar_String_Searcher.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Ultraschall-LiveEdit.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Ultraschall-LiveEdit.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Ultraschall_API-UnitTest.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Ultraschall_API-UnitTest.lua</source>
<source file="/ultraschall_api/Scripts/Tools/Ultraschall_Dashboard.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/Ultraschall_Dashboard.lua</source>
<source file="/ultraschall_api/Scripts/Tools/ultraschall_Find_Valid_ConfigVariables_In_String.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/ultraschall_Find_Valid_ConfigVariables_In_String.lua</source>
<source file="/ultraschall_api/Scripts/Tools/ultraschall_ModulerLoader_Generator.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Tools/ultraschall_ModulerLoader_Generator.lua</source>
<source file="/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NameMuteToggle_template.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NameMuteToggle_template.lua</source>
<source file="/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NameMute_template.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NameMute_template.lua</source>
<source file="/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NamePatternMuteToggle_template.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NamePatternMuteToggle_template.lua</source>
<source file="/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NamePatternMute_template.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NamePatternMute_template.lua</source>
<source file="/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NamePatternUnMute_template.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NamePatternUnMute_template.lua</source>
<source file="/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NameUnMute_template.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/UltraschallTemplates/Ultraschall_NameUnMute_template.lua</source>
<source file="/ultraschall_api/Scripts/Ultraschall_API_Settings.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Ultraschall_API_Settings.lua</source>
<source file="/ultraschall_api/Scripts/Ultraschall_Add_Mute_Action_For_TracknamePatterns.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Ultraschall_Add_Mute_Action_For_TracknamePatterns.lua</source>
<source file="/ultraschall_api/Scripts/Ultraschall_Add_Mute_Action_For_Tracknames.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/Ultraschall_Add_Mute_Action_For_Tracknames.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Add_Developertools_To_Reaper.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Add_Developertools_To_Reaper.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Add_ExampleScripts_To_Reaper.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Add_ExampleScripts_To_Reaper.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_EventManager.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_EventManager.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Lokasenna_GuiLib_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Lokasenna_GuiLib_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Lua_Reference_Manual.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Lua_Reference_Manual.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Video_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Video_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Web_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Web_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Reaper_ConfigVars_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Reaper_ConfigVars_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Ultraschall_Api_Functions_Reference.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Ultraschall_Api_Functions_Reference.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Help_Ultraschall_Api_Introduction_and_Concepts.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Help_Ultraschall_Api_Introduction_and_Concepts.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Marker_Menu.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Marker_Menu.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_OpenFolder_Api_Documentation.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_OpenFolder_Api_Documentation.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_OpenFolder_Api_ExampleScripts.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_OpenFolder_Api_ExampleScripts.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Remove_Developertools_From_Reaper.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Remove_Developertools_From_Reaper.lua</source>
<source file="/ultraschall_api/Scripts/ultraschall_Remove_ExampleScripts_From_Reaper.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts/ultraschall_Remove_ExampleScripts_From_Reaper.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_A_Simple_EventManager_with_Backgroundhelpers_and_Defer01.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_A_Simple_EventManager_with_Backgroundhelpers_and_Defer01.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_ArrangeView_Snapshots_Example.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_ArrangeView_Snapshots_Example.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Colors_ColorTables_ColorCycler.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Colors_ColorTables_ColorCycler.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Colors_Example.lua.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Colors_Example.lua.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_EventManager_HowTo.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_EventManager_HowTo.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_FileManager_example_showcasing_background_copying.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_FileManager_example_showcasing_background_copying.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_GFX_SimpleDrawingTool.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_GFX_SimpleDrawingTool.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Helpers_ProgressBar_Example.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Helpers_ProgressBar_Example.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Markers_DisplayMarkersRegions_underneath_Mouse.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Markers_DisplayMarkersRegions_underneath_Mouse.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_MediaItems_RippleCut_Selected_Tracks.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_MediaItems_RippleCut_Selected_Tracks.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_MediaItems_Shorten_MediaItems_In_Selection_Example.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_MediaItems_Shorten_MediaItems_In_Selection_Example.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_MediaItems_ShowMediaItems_In_Timeselection_and_SelectedTracks.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_MediaItems_ShowMediaItems_In_Timeselection_and_SelectedTracks.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Projects_Changed_Project_Tab_Example.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Projects_Changed_Project_Tab_Example.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Render_Current_Project.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Render_Current_Project.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Render_Project.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Render_Project.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Render_Region_of_current_Project.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Render_Region_of_current_Project.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_SetAliasNamesOfFX-Plugins.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_SetAliasNamesOfFX-Plugins.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Visualize_VideoSamplePeekerJSFX.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Visualize_VideoSamplePeekerJSFX.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_Working_with_FXStateChunks_and_MediaItems.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_Working_with_FXStateChunks_and_MediaItems.lua</source>
<source file="/ultraschall_api/Scripts_Examples/US_Api_Examples_ultraschall_Soundboard.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/Scripts_Examples/US_Api_Examples_ultraschall_Soundboard.lua</source>
<source file="/ultraschall_api/misc/Launchpad_functions.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/Launchpad_functions.lua</source>
<source file="/ultraschall_api/misc/Markdown_Newspeak-1.0-draft" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/Markdown_Newspeak-1.0-draft</source>
<source file="/ultraschall_api/misc/Podmeta_Standard_v1_WIP.USDocML" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/Podmeta_Standard_v1_WIP.USDocML</source>
<source file="/ultraschall_api/misc/USDocML-Specs1_0.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/USDocML-Specs1_0.txt</source>
<source file="/ultraschall_api/misc/Ultraschall_Api_List_Of_USDocML-Containing_Files.txt" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/Ultraschall_Api_List_Of_USDocML-Containing_Files.txt</source>
<source file="/ultraschall_api/misc/metadata-testfile.xml" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/metadata-testfile.xml</source>
<source file="/ultraschall_api/misc/silence.flac" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/silence.flac</source>
<source file="/ultraschall_api/misc/tempproject.RPP" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/tempproject.RPP</source>
<source file="/ultraschall_api/misc/ultraschall_translation_file_format.USLangPack" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/ultraschall_translation_file_format.USLangPack</source>
<source file="/ultraschall_api/misc/us51.ico" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/misc/us51.ico</source>
<source file="/ultraschall_api/ultraschall_ModulatorLoad3000.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/ultraschall_ModulatorLoad3000.lua</source>
<source file="/ultraschall_api/ultraschall_doc_engine.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/ultraschall_doc_engine.lua</source>
<source file="/ultraschall_api/ultraschall_functions_engine.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/ultraschall_functions_engine.lua</source>
<source file="/ultraschall_api/ultraschall_functions_engine_beta.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/ultraschall_functions_engine_beta.lua</source>
<source file="/ultraschall_api/ultraschall_gfx_engine.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/ultraschall_gfx_engine.lua</source>
<source file="/ultraschall_api/ultraschall_tag_engine.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/ultraschall_tag_engine.lua</source>
<source file="/ultraschall_api/ultraschall_video_engine.lua" type="extension">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5/ultraschall_api/ultraschall_video_engine.lua</source>
<source main="true" file="/ultraschall_Add_ExampleScripts_To_Reaper.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Add_ExampleScripts_To_Reaper.lua</source>
<source main="true" file="/ultraschall_Add_Developertools_To_Reaper.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Add_Developertools_To_Reaper.lua</source>
<source main="true" file="/ultraschall_Help_Reaper_Api_Documentation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Documentation.lua</source>
<source main="true" file="/ultraschall_Help_Reaper_Api_Video_Documentation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Video_Documentation.lua</source>
<source main="true" file="/ultraschall_Help_Reaper_Api_Web_Documentation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Help_Reaper_Api_Web_Documentation.lua</source>
<source main="true" file="/ultraschall_Help_Reaper_ConfigVars_Documentation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Help_Reaper_ConfigVars_Documentation.lua</source>
<source main="true" file="/ultraschall_Help_Ultraschall_Api_Functions_Reference.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Help_Ultraschall_Api_Functions_Reference.lua</source>
<source main="true" file="/ultraschall_Help_Ultraschall_Api_Introduction_and_Concepts.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Help_Ultraschall_Api_Introduction_and_Concepts.lua</source>
<source main="true" file="/ultraschall_Help_Lua_Reference_Manual.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Help_Lua_Reference_Manual.lua</source>
<source main="true" file="/ultraschall_OpenFolder_Api_Documentation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_OpenFolder_Api_Documentation.lua</source>
<source main="true" file="/ultraschall_OpenFolder_Api_ExampleScripts.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_OpenFolder_Api_ExampleScripts.lua</source>
<source main="true" file="/ultraschall_Remove_ExampleScripts_From_Reaper.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Remove_ExampleScripts_From_Reaper.lua</source>
<source main="true" file="/ultraschall_Remove_Developertools_From_Reaper.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ultraschall_Remove_Developertools_From_Reaper.lua</source>
<source main="true" file="/Ultraschall_API_Settings.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/Ultraschall_API_Settings.lua</source>
<source main="true" file="/ReaGirl_OpenFolder_ExampleScripts.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ReaGirl_OpenFolder_ExampleScripts.lua</source>
<source main="true" file="/ReaGirl_Help_Functions_Documentation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ReaGirl_Help_Functions_Documentation.lua</source>
<source main="true" file="/ReaGirl_Help_Introduction_Concepts_Tutorials_Documentation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts/ReaGirl_Help_Introduction_Concepts_Tutorials_Documentation.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_EditMode_Disable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_EditMode_Disable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_EditMode_Enable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_EditMode_Enable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Hovered_UI_Element_Disable_Report.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Hovered_UI_Element_Disable_Report.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Hovered_UI_Element_Enable_Report.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Hovered_UI_Element_Enable_Report.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Move_Mouse_When_Tabbing_Disable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Move_Mouse_When_Tabbing_Disable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Move_Mouse_When_Tabbing_Enable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Move_Mouse_When_Tabbing_Enable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Reset_Settings_Window_Pos_And_Size.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Reset_Settings_Window_Pos_And_Size.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_ScreenReader_Messages_Hide_From_Console.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_ScreenReader_Messages_Hide_From_Console.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_ScreenReader_Messages_Show_In_Console.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_ScreenReader_Messages_Show_In_Console.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Screen_Reader_Helpmessage_Disable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Screen_Reader_Helpmessage_Disable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Screen_Reader_Helpmessage_Enable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Screen_Reader_Helpmessage_Enable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Screen_Reader_Messages_Disable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Screen_Reader_Messages_Disable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Screen_Reader_Messages_Enable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Screen_Reader_Messages_Enable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Screen_Reader_Messages_Hide_From_Console.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Screen_Reader_Messages_Hide_From_Console.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Screen_Reader_Messages_Show_In_Console.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Screen_Reader_Messages_Show_In_Console.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Scroll_Via_Keyboard_Disable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Scroll_Via_Keyboard_Disable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Scroll_Via_Keyboard_Enable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Scroll_Via_Keyboard_Enable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_1.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_1.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_2.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_2.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_3.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_3.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_4.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_4.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_5.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_5.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_6.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_6.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_7.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_7.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_8.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_8.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Set_Scaling_To_AutoScaling.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Set_Scaling_To_AutoScaling.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Tooltips_Disable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Tooltips_Disable.lua</source>
<source main="true" file="/ReaGirl_Gui_Settings_Tooltips_Enable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_Gui_Settings_Tooltips_Enable.lua</source>
<source main="true" file="/ReaGirl_TestScript_1.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_TestScript_1.lua</source>
<source main="true" file="/ReaGirl_TestScript_2.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_TestScript_2.lua</source>
<source main="true" file="/ReaGirl_TestScript_3.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_TestScript_3.lua</source>
<source main="true" file="/ReaGirl_TestScript_4.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ReaGirl_TestScript_4.lua</source>
<source main="true" file="/ultraschall_create_new_ReaGirl_Script.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_create_new_ReaGirl_Script.lua</source>
<source main="true" file="/ultraschall_create_new_Ultraschall_API_And_ReaGirl_Script.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_create_new_Ultraschall_API_And_ReaGirl_Script.lua</source>
<source main="true" file="/ultraschall_developertool_ActionlistToIni-Converter.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_ActionlistToIni-Converter.lua</source>
<source main="true" file="/ultraschall_developertool_CheckForNewConfigVars.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_CheckForNewConfigVars.lua</source>
<source main="true" file="/ultraschall_developertool_CheckPlugins.h_ForNewAndMissingFunctions.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_CheckPlugins.h_ForNewAndMissingFunctions.lua</source>
<source main="true" file="/ultraschall_developertool_Check_scripts_in_folder_for_deprecated_functions.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Check_scripts_in_folder_for_deprecated_functions.lua</source>
<source main="true" file="/ultraschall_developertool_Compare_LangPacks.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Compare_LangPacks.lua</source>
<source main="true" file="/ultraschall_developertool_Copy_Descriptions_and_IDs_from_Listview_of_opened_MetaData-Dialog.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Copy_Descriptions_and_IDs_from_Listview_of_opened_MetaData-Dialog.lua</source>
<source main="true" file="/ultraschall_developertool_Create_New_Script_With_Dialog.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Create_New_Script_With_Dialog.lua</source>
<source main="true" file="/ultraschall_developertool_Create_New_Temporary_Unlisted_Lua_ReaScript.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Create_New_Temporary_Unlisted_Lua_ReaScript.lua</source>
<source main="true" file="/ultraschall_developertool_Display-Altered-Config-Vars.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Display-Altered-Config-Vars.lua</source>
<source main="true" file="/ultraschall_developertool_Display-Altered-ConfigFile-Entries.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Display-Altered-ConfigFile-Entries.lua</source>
<source main="true" file="/ultraschall_developertool_Display_All_Marker_Region_Guids.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Display_All_Marker_Region_Guids.lua</source>
<source main="true" file="/ultraschall_developertool_Display_ExtStateSectionsOfScriptsInFolder.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Display_ExtStateSectionsOfScriptsInFolder.lua</source>
<source main="true" file="/ultraschall_developertool_Display_ProjExtStateSectionsOfScriptsInFolder.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Display_ProjExtStateSectionsOfScriptsInFolder.lua</source>
<source main="true" file="/ultraschall_developertool_Env_State_Diffs_Monitor.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Env_State_Diffs_Monitor.lua</source>
<source main="true" file="/ultraschall_developertool_EnvelopeStateChunk_from_Clipboard_to_envelope_under_mouse.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_EnvelopeStateChunk_from_Clipboard_to_envelope_under_mouse.lua</source>
<source main="true" file="/ultraschall_developertool_EnvelopeStateChunk_from_Clipboard_to_selected_envelope.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_EnvelopeStateChunk_from_Clipboard_to_selected_envelope.lua</source>
<source main="true" file="/ultraschall_developertool_EnvelopeStateChunk_to_Clipboard_from_envelope_under_mouse_to_clipboard.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_EnvelopeStateChunk_to_Clipboard_from_envelope_under_mouse_to_clipboard.lua</source>
<source main="true" file="/ultraschall_developertool_EnvelopeStateChunk_to_Clipboard_from_selected_envelope.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_EnvelopeStateChunk_to_Clipboard_from_selected_envelope.lua</source>
<source main="true" file="/ultraschall_developertool_FindCurrentlyUsedExtstatesNamesInAFile.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_FindCurrentlyUsedExtstatesNamesInAFile.lua</source>
<source main="true" file="/ultraschall_developertool_Find_Duplicated_Lines_In_Clipboard.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Find_Duplicated_Lines_In_Clipboard.lua</source>
<source main="true" file="/ultraschall_developertool_GetPitchShiftModes.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_GetPitchShiftModes.lua</source>
<source main="true" file="/ultraschall_developertool_HWND-Displayer.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_HWND-Displayer.lua</source>
<source main="true" file="/ultraschall_developertool_ItemStateChunk_from_Clipboard_to_first_selected_item.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_ItemStateChunk_from_Clipboard_to_first_selected_item.lua</source>
<source main="true" file="/ultraschall_developertool_ItemStateChunk_from_Clipboard_to_item_under_mouse.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_ItemStateChunk_from_Clipboard_to_item_under_mouse.lua</source>
<source main="true" file="/ultraschall_developertool_ItemStateChunk_to_Clipboard_first_selected_item.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_ItemStateChunk_to_Clipboard_first_selected_item.lua</source>
<source main="true" file="/ultraschall_developertool_ItemStateChunk_to_Clipboard_item_under_mouse.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_ItemStateChunk_to_Clipboard_item_under_mouse.lua</source>
<source main="true" file="/ultraschall_developertool_Item_State_Diffs_Monitor.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Item_State_Diffs_Monitor.lua</source>
<source main="true" file="/ultraschall_developertool_LangPack2Developer_langpack_converter.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_LangPack2Developer_langpack_converter.lua</source>
<source main="true" file="/ultraschall_developertool_MonitorParmModulation.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_MonitorParmModulation.lua</source>
<source main="true" file="/ultraschall_developertool_MonitorRenderString_Diff.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_MonitorRenderString_Diff.lua</source>
<source main="true" file="/ultraschall_developertool_MonitorRenderTable.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_MonitorRenderTable.lua</source>
<source main="true" file="/ultraschall_developertool_Monitor_EventManager.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Monitor_EventManager.lua</source>
<source main="true" file="/ultraschall_developertool_Open_A_ReaScript_with_Dialog.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Open_A_ReaScript_with_Dialog.lua</source>
<source main="true" file="/ultraschall_developertool_Open_Last_ReaScript.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Open_Last_ReaScript.lua</source>
<source main="true" file="/ultraschall_developertool_Project_State_Diffs_Monitor.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Project_State_Diffs_Monitor.lua</source>
<source main="true" file="/ultraschall_developertool_ReaScript_DocFile_CheckForMissingAndDuplicateFunctions.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_ReaScript_DocFile_CheckForMissingAndDuplicateFunctions.lua</source>
<source main="true" file="/ultraschall_developertool_SortLinesInClipboardText.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_SortLinesInClipboardText.lua</source>
<source main="true" file="/ultraschall_developertool_StateInspector.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_StateInspector.lua</source>
<source main="true" file="/ultraschall_developertool_Theme_Parameter_Monitor.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Theme_Parameter_Monitor.lua</source>
<source main="true" file="/ultraschall_developertool_Toggle_Logging_SetExtState_SetProjExtState_access.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Toggle_Logging_SetExtState_SetProjExtState_access.lua</source>
<source main="true" file="/ultraschall_developertool_TrackStateChunk_from_Clipboard_to_first_selected_track.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_TrackStateChunk_from_Clipboard_to_first_selected_track.lua</source>
<source main="true" file="/ultraschall_developertool_TrackStateChunk_from_Clipboard_to_track_under_mouse.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_TrackStateChunk_from_Clipboard_to_track_under_mouse.lua</source>
<source main="true" file="/ultraschall_developertool_TrackStateChunk_to_Clipboard_first_selected_track.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_TrackStateChunk_to_Clipboard_first_selected_track.lua</source>
<source main="true" file="/ultraschall_developertool_TrackStateChunk_to_Clipboard_track_under_mouse.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_TrackStateChunk_to_Clipboard_track_under_mouse.lua</source>
<source main="true" file="/ultraschall_developertool_Track_State_Diffs_Monitor.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_Track_State_Diffs_Monitor.lua</source>
<source main="true" file="/ultraschall_developertool_findConfigVarsToggledByActions.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_findConfigVarsToggledByActions.lua</source>
<source main="true" file="/ultraschall_developertool_gfx_deltablit_displayer.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_gfx_deltablit_displayer.lua</source>
<source main="true" file="/ultraschall_developertool_increment_mouse_modifier_and_store_name_of_mm_action_into_extstate.lua" type="script">https://raw.githubusercontent.com/Ultraschall/ultraschall-lua-api-for-reaper/Ultraschall-API-5//ultraschall_api/Scripts//Tools/DeveloperScripts//ultraschall_developertool_increment_mouse_modifier_and_store_name_of_mm_action_into_extstate.lua</source>
<changelog><![CDATA[Ultraschall Framework - Changelog
5 - “Eels - Novocaine for the Soul” - 9th of August 2024
Has now 1807 functions, with 144 new ones
Note: requires at least Reaper 7.03 now!
new in this release:
- ReaGirl - an accessible gui-library
One and a half years in the making, I’ve finally added ReaGirl, an
accessible gui-library for Reaper. It allows you to easily code your
own guis with labels, checkboxes, buttons, drop down menus, sliders,
images and tabs.
Open the docs with the action
“ReaGirl_Help_Introduction_Concepts_Tutorials_Documentation.lua” to
read, how to work with it.
- Preview MIDI-functions
You can preview now midi-notes, cc, pc and pitch in a certain track
with dedicated functions for it.
- Lane functions
Various functions around the new track-lane-features of Reaper.
- Project pos 2 Take-pos 2 Project pos
Functions to get the take-position at a certain project position and
the project-position at a take position. Used to be in there in an
earlier version and reappear now, due to a bugfix in Reaper.
New features in 5
- Helpers: SplitReaperString - splits a Reaper-string into its
components.
- Item: GetItemYPos - Returns position and height of the MediaItem in
a fixed item lane/free item positioning.
- Items: MediaItem_GetAllVisibleTransients_ActiveTake - returns the
number and positions of visible transients of the active take of a
MediaItem.
- Lanes: GetTrackFixedLanesState - returns Fixed Lanes-state.
- Lanes: GetTrackLaneNameState - returns Lanes name-state.
- Lanes: GetTrackLaneRecState - returns Lanes rec-state.
- Lanes: GetTrackLaneSoloState - returns Lanes solo-state.
- Lanes: ItemLane_Count - returns the number of item-lanes in a track
- Lanes: ItemLane_GetAllMediaItems - returns the MediaItems from an
item-lanes in a track between start_position and end_position
- Lanes: ItemLane_GetFromPoint - returns the MediaTrack and the
item-lane at a screen-coordinate
- Lanes: ItemLane_GetPositionAndHeight - returns the position and
height of an item-lanes in a track
- Markers: RippleCut_Regions_Reverse - ripple cuts regions before
startposition and moves them towards project-end
- MIDI: PreviewMidiCCInTrack - previews a midi-cc in a specific armed
track
- MIDI: PreviewMidiNoteInTrack - previews a midi-note in a specific
armed track
- MIDI: PreviewMidiPCInTrack - previews a midi-pc in a specific armed
track
- MIDI: PreviewMidiPitchInTrack - previews a midi-pitch in a specific
armed track
- ReaGirl: AtEnter - Adds a function that shall be run when someone
hits Enter while the gui is opened.
- ReaGirl: AutoPosition_SetNextUIElementRelativeTo - Set the
auto-positioning starting point to the position of a certain
ui-element.
- ReaGirl: Background_GetSetColor - Gets/Sets the color of the
background.
- ReaGirl: Base64_Decoder - Converts a Base64-encoded string into a
normal string.
- ReaGirl: Base64_Encoder - Converts a string into a Base64-Encoded
string.
- ReaGirl: Button_Add - Adds a button to a gui.
- ReaGirl: Button_GetDisabled - Gets a button’s disabled(non
clickable)-state.
- ReaGirl: Button_GetRadius - Gets a button’s radius.
- ReaGirl: Button_SetDisabled - Sets a button as disabled(non
clickable).
- ReaGirl: Button_SetRadius - Sets the radius of a button.
- ReaGirl: Checkbox_Add - Adds a checkbox to a gui.
- ReaGirl: Checkbox_GetCheckState - Gets a checkbox’s current
checked-state.
- ReaGirl: Checkbox_GetDisabled - Gets a checkbox’s disabled(non
clickable)-state.
- ReaGirl: Checkbox_SetCheckState - Sets a checkbox’s state of the
checkbox.
- ReaGirl: Checkbox_SetDisabled - Sets a checkbox as disabled(non
clickable).
- ReaGirl: Checkbox_SetWidth - sets width of a checkbox, which helps
you with autopositioning
- ReaGirl: DropDownMenu_Add - Adds a dropdown-menu to a gui.
- ReaGirl: DropDownMenu_GetDimensions - Gets the width of a drop down
menu.
- ReaGirl: DropDownMenu_GetDisabled - Gets a dropdown-menu’s
disabled(non clickable)-state.
- ReaGirl: DropDownMenu_GetMenuItems - Gets a dropdown-menu’s
menu-items and the index of the currently selected menu-item.
- ReaGirl: DropDownMenu_SetDimensions - Sets the width of a
dropdownmenu.
- ReaGirl: DropDownMenu_SetDisabled - Sets a drop down menu as
disabled(non clickable)-state.
- ReaGirl: DropDownMenu_SetMenuItems - Sets a dropdown-menu’s
menuitems and the index of the currently selected menu-item.
- ReaGirl: Ext_Tab_SetSelected - sets a tab of specific
ReaGirl-gui-window focused
- ReaGirl: Ext_Window_Focus - sets focus to an opened
ReaGirl-gui-window
- ReaGirl: Ext_Window_GetState - gets the position, current dimensions
and dock-state of an opened/previously opened ReaGirl-window
- ReaGirl: Ext_Window_IsOpen - gets, if a specific ReaGirl-gui-window
is currently opened
- ReaGirl: Ext_Window_ResetToDefault - resets a ReaGirl-Gui-Window to
its default dimensions and dockstate
- ReaGirl: Ext_Window_SetState - gets the current dimensions and
dock-state of an opened/previously opened ReaGirl-window
- ReaGirl: GetVersion - Returns the version-number of the installed
ReaGirl.
- ReaGirl: Gui_AtExit - Adds a function that shall be run when the gui
is closed with reagirl.Gui_Close()
- ReaGirl: Gui_Close - Closes the gui-window.
- ReaGirl: Gui_ForceRefresh - Forces a refresh of the gui.
- ReaGirl: Gui_GetBoundaries - Returns the current boundaries of the
ui-elements. Means, from 0 to the the farthest
ui-element-width/height at right/bottom edge of the gui-window.
- ReaGirl: Gui_IsOpen - Checks, whether the gui-window is open.
- ReaGirl: Gui_Manage - Manages the gui-window.
- ReaGirl: Gui_New - Creates a new gui by removing all currently(if
available) ui-elements.
- ReaGirl: Gui_Open - Opens a gui-window. If x and/or y are not given,
it will be opened centered.
- ReaGirl: Gui_PreventCloseViaEscForOneCycle - Prevents the closing of
the gui via esc-key for one defer-cycle.
- ReaGirl: Gui_PreventEnterForOneCycle - Prevents the user from
hitting the enter-key for one cycle, so the run-function for the
enter-key is not run in this cycle.
- ReaGirl: Gui_PreventScrollingForOneCycle - Prevents the scrolling of
the gui via keyboard/mousewheel/swiping for this defer-cycle.
- ReaGirl: Image_Add - Adds an image to the gui. This image can run a
function when clicked on it.
- ReaGirl: Image_ClearToColor - Clears the image with a set
r-g-b-color. It also clears the previously loaded image-filename.
- ReaGirl: Image_GetDimensions - Gets the width and height of an
image.
- ReaGirl: Image_GetDraggable - Gets the current draggable state of an
image.
- ReaGirl: Image_GetImageFilename - Returns the filename of the
currently loaded image.
- ReaGirl: Image_KeepAspectRatio - Set if the image shall keep its
aspect ratio when shown.
- ReaGirl: Image_Load - Loads a new image-file of an existing image in
the gui.
- ReaGirl: Image_ReloadImage_Scaled - Realoads an image.
- ReaGirl: Image_SetDimensions - Sets the width and height of an
image.
- ReaGirl: Image_SetDraggable - Sets the current draggable state of an
image.
- ReaGirl: Inputbox_Add - Adds an inputbox to a gui.
- ReaGirl: Inputbox_GetCursorOffset - Gets an inputbox’s current
cursor offset.
- ReaGirl: Inputbox_GetDisabled - Gets an inputbox’s disabled(non
clickable)-state.
- ReaGirl: Inputbox_GetPassword - gets an inputbox to show * instead
of the text(for password entry, etc)
- ReaGirl: Inputbox_GetSelectedText - Gets an inputbox’s currently
selected text.
- ReaGirl: Inputbox_GetText - Gets an inputbox’s current text.
- ReaGirl: Inputbox_SetDisabled - Sets an inputbox as disabled(non
clickable).
- ReaGirl: Inputbox_SetEmptyText - Sets an inputbox’s shown text when
nothing has been input.
- ReaGirl: Inputbox_SetPassword - Sets an inputbox to show * instead
of the text(for password entry, etc)
- ReaGirl: Inputbox_SetText - Sets a new text of an inputbox.
- ReaGirl: IsValidGuid - Checks, if guid is a valid guid. Can also be
used for strings, that contain a guid somewhere in
them(strict=false)
- ReaGirl: Label_Add - Adds a label to the gui.
- ReaGirl: Label_AutoBackdrop - sets a backdrop from label to
underneath a specific ui-element
- ReaGirl: Label_GetAlignement - Gets the alignment of a label.
- ReaGirl: Label_GetDraggable - Gets the current draggable state of a
label.
- ReaGirl: Label_GetBackdrop - Gets the backdrop of a label.
- ReaGirl: Label_GetFontSize - Gets the font-size of a label.
- ReaGirl: Label_GetStyle - Gets the style of a label.
- ReaGirl: Label_SetAlignment - Sets the font-size of a label.
- ReaGirl: Label_SetBackdrop - Sets the backdrop of a label.
- ReaGirl: Label_SetDraggable - Sets the current draggable state of a
label.
- ReaGirl: Label_SetFontSize - Sets the font-size of a label.
- ReaGirl: Label_SetLabelText - Sets a new label text to an already
existing label.
- ReaGirl: Label_SetStyle - Sets the style of a label.
- ReaGirl: Mouse_GetCap - Checks clickstate and
mouseclick/wheel-behavior, since last time calling this function and
returns their states.
- ReaGirl: NextLine - Starts a new line, when autopositioning
ui-elements using the _add-functions.
- ReaGirl: ReserveImageBuffer - Reserves a framebuffer which will not
be used by ReaGirl for drawing.
- ReaGirl: ResizeImageKeepAspectRatio - Resizes an image, keeping its
aspect-ratio. You can set a background-color for non
rectangular-images.
- ReaGirl: ScreenReader_SendMessage - sends a message to screen-reader
users
- ReaGirl: Slider_Add - Adds a slider to a gui.
- ReaGirl: Slider_GetDefaultValue - Gets the current set value of the
slider.
- ReaGirl: Slider_GetDimensions - Gets the width of a slider.
- ReaGirl: Slider_GetDisabled - Gets the current disability state of
the slider.
- ReaGirl: Slider_GetEndValue - Gets the current set maximum-value of
the slider.
- ReaGirl: Slider_GetStartValue - Gets the current set minimum-value
of the slider.
- ReaGirl: Slider_GetValue - Gets the current set value of the slider.
- ReaGirl: Slider_ResetToDefaultValue - Resets the current set value
of the slider to the default value.
- ReaGirl: Slider_SetDefaultValue - Sets the default value of the
slider.
- ReaGirl: Slider_SetDimensions - Sets the width of a slider.
- ReaGirl: Slider_SetDisabled - Sets a slider disabled.
- ReaGirl: Slider_SetEndValue - Sets the maximum value of the slider.
- ReaGirl: Slider_SetStartValue - Sets the minimum value of the
slider.
- ReaGirl: Slider_SetValue - Sets the current value of the slider.
- ReaGirl: Tabs_Add - Adds a tab to a gui.
- ReaGirl: Tabs_GetSelected - Gets the selected tab of a tabs-element.
- ReaGirl: Tabs_SetSelected - Sets the selected tab of a tabs-element.
- ReaGirl: Tabs_SetUIElementsForTab - Sets the ui-elements for a tab
from a table.
- ReaGirl: UI_Element_GetFocusRect - gets the rectangle for focused
ui-element. Can be used for custom ui-element, who need to control
the focus-rectangle due some of their own ui-elements incorporated,
like options in radio-buttons, etc.
- ReaGirl: UI_Element_GetFocused - Get the ui-element-guid, that is
currently focused.
- ReaGirl: UI_Element_GetHovered - Get the ui-element-guid, where the
mouse is currently.
- ReaGirl: UI_Element_GetSetCaption - gets/sets the caption of the
ui-element
- ReaGirl: UI_Element_GetSetMeaningOfUIElement - gets/sets the
meaningOfUI_Element of the ui-element, which will describe, how to
use the ui-element to blind persons.
- ReaGirl: UI_Element_GetSetPosition - gets/sets the position of the
ui-element
- ReaGirl: UI_Element_GetSetRunFunction - gets/sets the run_function
of the ui-element, which will be run, when the ui-element is toggled
- ReaGirl: UI_Element_GetSetVisibility - gets/sets the hidden-state of
the ui-element
- ReaGirl: UI_Element_GetSet_ContextMenu - gets/sets the context-menu
and context-menu-run-function of a ui-element.
- ReaGirl: UI_Element_GetSet_DropZoneFunction - gets/sets the
dropzone-run-function of a ui-element.
- ReaGirl: UI_Element_GetType - returns the type of the ui-element
- ReaGirl: UI_Element_IsElementAtMousePosition - returns, if
ui-element with element_id is at mouse-position
- ReaGirl: UI_Element_Last_Element_Current_Position - Returns the x
and y position as well as width and height of the last added
ui-element.
- ReaGirl: UI_Element_Remove - Removes a ui-element.
- ReaGirl: UI_Element_SetFocusRect - sets the rectangle for focused
ui-element. Can be used for custom ui-element, who need to control
the focus-rectangle due some of their own ui-elements incorporated,
like options in radio-buttons, etc.
- ReaGirl: UI_Element_SetFocused - Set an ui-element focused.
- ReaGirl: UI_Element_SetHiddenFromTable - Set ui-elements stored in a
table to hidden or visible.
- ReaGirl: UI_Elements_OutsideWindow - returns, if any of the
gui-elements are outside of the window and by how much.
- ReaGirl: Window_ForceSize_Maximum - Sets a maximum window size that
will be enforced by ReaGirl.
- ReaGirl: Window_ForceSize_Minimum - Sets a minimum window size that
will be enforced by ReaGirl.
- ReaGirl: Window_GetCurrentScale - Gets the current scaling-factor
- ReaGirl: Window_SetCurrentScale - Sets a new scaling-factor that
overrides auto-scaling/scaling preferences
- ReaGirl: Window_SetFocus - Sets window focus back to the
ReaGirl-gui-window.
- Rendering: CreateRenderCFG_RAW - Returns the render-cfg-string for
the RAW-PCM-format. You can use this in ProjectStateChunks,
RPP-Projectfiles and reaper-render.ini
- Rendering: CreateRenderCFG_RAW - creates a renderstring for
RAW-renderformat
- Rendering: GetRenderCFG_Settings_RAW - Returns the settings stored
in a render-cfg-string for RAW PCM.
- Rendering: GetRenderCFG_Settings_RAW - gets settings of a
RAW-renderformat-renderstring
- Takes: GetProjectPosByTakeSourcePos - returns the
project-position-representation of the source-position of a take.
- Takes: GetTakeSourcePosByProjectPos - returns the source-position of
a take at a certain project-position. Will obey
time-stretch-markers, offsets, etc, as well.
- Takes: TakeMarker_GetAllTakeMarkers - returns all take-markers of a
MediaItem_Take, including project-position.
Changes from 4.9 to 5
- Developer Tools: State Inspector - restores the loaded slot when
reopening; ini-file doesn’t get overwritten anymore after updating
US_API
- Developer Tools: Create_New_Script_With_Dialog.lua - uses ReaGirl
now to do the gui, also accessible now
- Docs: open-docs-actions - didn’t always open the docs -> fixed
- Editing: RippleCut - does now a standard fadein/out-time of 10ms;
didn’t move regions, markers and envelopes correctly -> fixed(thnx
to lennardodavinci)
- Editing: RippleCut_Reverse - does now a standard fadein/out-time of
10ms; didn’t move regions, markers and envelopes correctly -> fixed
- Envelopes: DeleteTrackEnvelopePointsBetween - inserts now
envelope-points at “cut”-edges
- Envelopes: MoveTrackEnvelopePointsBy - didn’t move first
envelope-point in the envelope -> fixed
- Helpers: EditReaScript - allows now adding ReaGirl-basic structure
to a script
- ProjectManagement: GetProject_RenderStems - added preserve
startoffset and metadata-settings
- ProjectManagement: SetProject_RenderStems - added preserve
startoffset and metadata-settings
- Rendering: AddRenderPreset - added preserve startoffset and