-
Notifications
You must be signed in to change notification settings - Fork 4
/
jtol.bach.slicer.maxhelp
executable file
·5873 lines (5533 loc) · 196 KB
/
jtol.bach.slicer.maxhelp
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
{
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 0,
"revision" : 5,
"architecture" : "x86",
"modernui" : 1
}
,
"rect" : [ 100.0, 100.0, 1073.0, 772.0 ],
"bgcolor" : [ 0.278431, 0.278431, 0.278431, 1.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 9.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 15.0, 15.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 0,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 0,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 18.0,
"id" : "obj-6",
"maxclass" : "newobj",
"numinlets" : 0,
"numoutlets" : 0,
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 0,
"revision" : 5,
"architecture" : "x86",
"modernui" : 1
}
,
"rect" : [ 799.0, 134.0, 821.0, 650.0 ],
"bgcolor" : [ 0.278431, 0.278431, 0.278431, 1.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 9.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 15.0, 15.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 0,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 0,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"allowcopypaste" : 0,
"allowglissandi" : 0,
"bgcolor" : [ 0.94902, 0.94902, 0.941176, 1.0 ],
"cautionaryaccidentalsdecay" : 10,
"clefs" : "F",
"constraintbeamsinspaces" : 0,
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 12.0,
"grid" : 1,
"id" : "obj-3",
"keepselectioniflostfocus" : 0,
"legend" : 0,
"linearedit" : 0,
"loop" : [ "(", 1, 1, 0, ")", "(", 1, 1, 0, ")" ],
"markercolor" : [ 0.22, 0.53, 0.3, 0.8 ],
"maxclass" : "bach.score",
"measmarkercolor" : [ 0.53, 0.22, 0.3, 0.8 ],
"numinlets" : 7,
"numoutlets" : 9,
"numvoices" : 1,
"out" : "nnnnnnnn",
"outlettype" : [ "", "", "", "", "", "", "", "", "bang" ],
"patching_rect" : [ 510.0, 167.333344, 289.0, 105.666656 ],
"pitcheditrange" : "null",
"ruler" : 3,
"senddoneafterpaint" : 0,
"senddoneatstartup" : 0,
"showledgerlines" : 0,
"showlyrics" : 0,
"showmarkers" : 0,
"showtempi" : 0,
"showtupletspreferences" : 3,
"showvoicenames" : 0,
"slotwinalpha" : 92.0,
"slotwinzoom" : 100.0,
"snappitch" : 0,
"snappitchtogridondrag" : 0,
"snappitchtogridwhenediting" : 0,
"spacingtype" : 1,
"spacingwidth" : 1.67,
"stafflines" : 5,
"textcolor" : [ 0.0, 0.0, 0.0, 1.0 ],
"tonedivision" : 4,
"versionnumber" : 7810,
"voicenames" : [ "(", ")" ],
"voicespacing" : [ 0.0, 26.0 ],
"whole_score_data_0000000000" : [ "score", "(", "slotinfo", "(", 1, "(", "name", "amplitude envelope", ")", "(", "type", "function", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080016896, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "ysnap", "(", ")", ")", "(", "domain", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "domainslope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "temporal", ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 2, "(", "name", "slot function", ")", "(", "type", "function", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "ysnap", "(", ")", ")", "(", "domain", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "domainslope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "temporal", ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 3, "(", "name", "slot longlist", ")", "(", "type", "intlist", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080016896, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1078984704, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 4, "(", "name", "slot floatlist", ")", "(", "type", "floatlist", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 5, "(", "name", "slot long", ")", "(", "type", "int", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080016896, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1078984704, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 6, "(", "name", "slot float", ")", "(", "type", "float", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 7, "(", "name", "slot text", ")", "(", "type", "text", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 8, "(", "name", "filelist", ")", "(", "type", "filelist", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080213504, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 9, "(", "name", "spat", ")", "(", "type", "spat", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1076101120, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "width", "temporal", ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 10, "(", "name", "slot 10", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 11, "(", "name", "slot 11", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 12, "(", "name", "slot 12", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 13, "(", "name", "slot 13", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 14, "(", "name", "slot 14", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 15, "(", "name", "slot 15", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 16, "(", "name", "slot 16", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 17, "(", "name", "slot 17", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 18, "(", "name", "slot 18", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 19, "(", "name", "slot 19", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 20, "(", "name", "slot 20", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 21, "(", "name", "slot 21", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 22, "(", "name", "slot 22", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 23, "(", "name", "slot 23", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 24, "(", "name", "slot 24", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 25, "(", "name", "slot 25", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 26, "(", "name", "slot 26", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 27, "(", "name", "slot 27", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 28, "(", "name", "slot 28", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 29, "(", "name", "slot 29", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 30, "(", "name", "slot 30", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", ")", "(", "commands", "(", 1, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 2, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 3, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 4, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 5, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", ")", "(", "markers", ")", "(", "midichannels", 1, ")", "(", "(", "(", "(", 4, 4, ")", "(", "(", "1/4", 60, ")", ")", ")", "(", "leveltype", 1, ")", "(", "(", "leveltype", 18, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", ")", "(", "(", "leveltype", 18, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", ")", 0, ")", 0, ")" ],
"whole_score_data_count" : [ 1 ],
"zoom" : 99.055115
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-4",
"linecount" : 2,
"maxclass" : "newobj",
"numinlets" : 4,
"numoutlets" : 4,
"outlettype" : [ "bang", "", "", "" ],
"patching_rect" : [ 510.0, 131.0, 154.0, 29.0 ],
"style" : "",
"text" : "jtol.bach2score @note 4 @pitch 50 @change 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"allowcopypaste" : 0,
"allowglissandi" : 0,
"bgcolor" : [ 0.94902, 0.94902, 0.941176, 1.0 ],
"cautionaryaccidentalsdecay" : 10,
"clefs" : "F",
"constraintbeamsinspaces" : 0,
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 12.0,
"grid" : 1,
"id" : "obj-52",
"keepselectioniflostfocus" : 0,
"legend" : 0,
"linearedit" : 0,
"loop" : [ "(", 1, 1, 0, ")", "(", 1, 1, 0, ")" ],
"markercolor" : [ 0.22, 0.53, 0.3, 0.8 ],
"maxclass" : "bach.score",
"measmarkercolor" : [ 0.53, 0.22, 0.3, 0.8 ],
"numinlets" : 7,
"numoutlets" : 9,
"numvoices" : 1,
"out" : "nnnnnnnn",
"outlettype" : [ "", "", "", "", "", "", "", "", "bang" ],
"patching_rect" : [ 290.5, 502.333344, 289.0, 105.666656 ],
"pitcheditrange" : "null",
"ruler" : 3,
"senddoneafterpaint" : 0,
"senddoneatstartup" : 0,
"showledgerlines" : 0,
"showlyrics" : 0,
"showmarkers" : 0,
"showtempi" : 0,
"showtupletspreferences" : 3,
"showvoicenames" : 0,
"slotwinalpha" : 92.0,
"slotwinzoom" : 100.0,
"snappitch" : 0,
"snappitchtogridondrag" : 0,
"snappitchtogridwhenediting" : 0,
"spacingtype" : 1,
"spacingwidth" : 1.67,
"stafflines" : 5,
"textcolor" : [ 0.0, 0.0, 0.0, 1.0 ],
"tonedivision" : 4,
"versionnumber" : 7810,
"voicenames" : [ "(", ")" ],
"voicespacing" : [ 0.0, 26.0 ],
"whole_score_data_0000000000" : [ "score", "(", "slotinfo", "(", 1, "(", "name", "amplitude envelope", ")", "(", "type", "function", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080016896, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "ysnap", "(", ")", ")", "(", "domain", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "domainslope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "temporal", ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 2, "(", "name", "slot function", ")", "(", "type", "function", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "ysnap", "(", ")", ")", "(", "domain", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "domainslope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "temporal", ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 3, "(", "name", "slot longlist", ")", "(", "type", "intlist", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080016896, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1078984704, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 4, "(", "name", "slot floatlist", ")", "(", "type", "floatlist", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 5, "(", "name", "slot long", ")", "(", "type", "int", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080016896, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1078984704, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 6, "(", "name", "slot float", ")", "(", "type", "float", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1072693248, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "default", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 7, "(", "name", "slot text", ")", "(", "type", "text", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 8, "(", "name", "filelist", ")", "(", "type", "filelist", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1080213504, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 9, "(", "name", "spat", ")", "(", "type", "spat", ")", "(", "key", 0, ")", "(", "range", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1076101120, ")", "(", "slope", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 0, ")", "(", "representation", ")", "(", "width", "temporal", ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 10, "(", "name", "slot 10", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 11, "(", "name", "slot 11", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 12, "(", "name", "slot 12", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 13, "(", "name", "slot 13", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 14, "(", "name", "slot 14", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 15, "(", "name", "slot 15", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 16, "(", "name", "slot 16", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 17, "(", "name", "slot 17", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 18, "(", "name", "slot 18", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 19, "(", "name", "slot 19", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 20, "(", "name", "slot 20", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 21, "(", "name", "slot 21", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 22, "(", "name", "slot 22", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 23, "(", "name", "slot 23", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 24, "(", "name", "slot 24", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 25, "(", "name", "slot 25", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 26, "(", "name", "slot 26", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 27, "(", "name", "slot 27", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 28, "(", "name", "slot 28", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 29, "(", "name", "slot 29", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", "(", 30, "(", "name", "slot 30", ")", "(", "type", "none", ")", "(", "key", 0, ")", "(", "width", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1079574528, ")", "(", "height", "auto", ")", "(", "singleslotfortiednotes", 1, ")", ")", ")", "(", "commands", "(", 1, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 2, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 3, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 4, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", "(", 5, "(", "note", "note", ")", "(", "chord", "chord", ")", "(", "rest", "rest", ")", "(", "key", 0, ")", ")", ")", "(", "markers", ")", "(", "midichannels", 1, ")", "(", "(", "(", "(", 4, 4, ")", "(", "(", "1/4", 60, ")", ")", ")", "(", "leveltype", 1, ")", "(", "(", "leveltype", 18, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", ")", "(", "(", "leveltype", 18, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", "(", "1/6", "(", "_x_x_x_x_bach_float64_x_x_x_x_", 0, 1085507584, 100, 0, 0, ")", 0, ")", ")", 0, ")", 0, ")" ],
"whole_score_data_count" : [ 1 ],
"zoom" : 99.055115
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-53",
"linecount" : 2,
"maxclass" : "newobj",
"numinlets" : 4,
"numoutlets" : 4,
"outlettype" : [ "bang", "", "", "" ],
"patching_rect" : [ 290.5, 467.0, 154.0, 29.0 ],
"style" : "",
"text" : "jtol.bach2score @note 4 @pitch 50 @change 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-1",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 227.0, 199.0, 40.0, 19.0 ],
"style" : "",
"text" : "del 600",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 0.376187, 0.409384, 0.445165, 1.0 ],
"fontface" : 0,
"fontname" : "Arial Bold",
"fontsize" : 9.0,
"htricolor" : [ 0.921569, 0.94902, 0.05098, 1.0 ],
"id" : "obj-59",
"maxclass" : "number",
"minimum" : 1,
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 381.0, 102.0, 39.0, 19.0 ],
"style" : "",
"textcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"tricolor" : [ 0.666667, 0.698039, 0.717647, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-56",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "bang", "int" ],
"patching_rect" : [ 92.0, 77.0, 293.5, 19.0 ],
"style" : "",
"text" : "t b i",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-55",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 0,
"revision" : 5,
"architecture" : "x86",
"modernui" : 1
}
,
"rect" : [ 34.0, 79.0, 173.0, 425.0 ],
"bgcolor" : [ 0.666667, 0.698039, 0.717647, 1.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 9.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 15.0, 15.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 0,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 0,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"comment" : "",
"id" : "obj-1",
"maxclass" : "inlet",
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 97.0, 36.0, 18.0, 18.0 ],
"style" : ""
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-52",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "bang" ],
"patching_rect" : [ 105.0, 297.0, 23.0, 19.0 ],
"style" : "",
"text" : "b 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-51",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 2,
"outlettype" : [ "bang", "" ],
"patching_rect" : [ 47.0, 212.0, 76.5, 19.0 ],
"style" : "",
"text" : "sel 0",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-47",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 47.0, 339.0, 32.5, 19.0 ],
"style" : "",
"text" : "+ 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-48",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 47.0, 297.0, 32.5, 19.0 ],
"style" : "",
"text" : "% 5",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-49",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 47.0, 272.0, 32.5, 19.0 ],
"style" : "",
"text" : "int",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-50",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 61.0, 248.0, 32.5, 19.0 ],
"style" : "",
"text" : "+ 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-45",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 2,
"outlettype" : [ "bang", "" ],
"patching_rect" : [ 47.0, 94.0, 32.5, 19.0 ],
"style" : "",
"text" : "sel 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-44",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 83.0, 94.0, 32.5, 19.0 ],
"style" : "",
"text" : "gate",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-43",
"maxclass" : "newobj",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "int", "int" ],
"patching_rect" : [ 47.0, 66.0, 54.5, 19.0 ],
"style" : "",
"text" : "t i i",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-39",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 47.0, 180.0, 32.5, 19.0 ],
"style" : "",
"text" : "% 10",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-38",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 47.0, 155.0, 32.5, 19.0 ],
"style" : "",
"text" : "int",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-34",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 61.0, 131.0, 32.5, 19.0 ],
"style" : "",
"text" : "+ 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"comment" : "",
"id" : "obj-53",
"maxclass" : "inlet",
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 47.0, 36.0, 18.0, 18.0 ],
"style" : ""
}
}
, {
"box" : {
"comment" : "",
"id" : "obj-54",
"maxclass" : "outlet",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 47.0, 371.0, 18.0, 18.0 ],
"style" : ""
}
}
],
"lines" : [ {
"patchline" : {
"color" : [ 0.101961, 0.121569, 0.172549, 1.0 ],
"destination" : [ "obj-44", 1 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-1", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-38", 1 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-34", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-39", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-38", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-34", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 56.5, 203.0, 100.5, 203.0, 100.5, 121.0, 70.5, 121.0 ],
"source" : [ "obj-39", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-51", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-39", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-44", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-43", 1 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-45", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-43", 0 ]
}
}
, {
"patchline" : {
"color" : [ 0.047059, 0.0, 1.0, 1.0 ],
"destination" : [ "obj-38", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-44", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-38", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-45", 0 ]
}
}
, {
"patchline" : {
"color" : [ 0.101961, 0.121569, 0.172549, 1.0 ],
"destination" : [ "obj-54", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-47", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-47", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-48", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-50", 0 ],
"disabled" : 0,
"hidden" : 0,
"midpoints" : [ 56.5, 319.0, 96.5, 319.0, 96.5, 243.0, 70.5, 243.0 ],
"source" : [ "obj-48", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-48", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-49", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-49", 1 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-50", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-49", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-51", 0 ]
}
}
, {
"patchline" : {
"color" : [ 1.0, 1.0, 1.0, 1.0 ],
"destination" : [ "obj-52", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-51", 1 ]
}
}
, {
"patchline" : {
"color" : [ 0.047059, 0.0, 1.0, 1.0 ],
"destination" : [ "obj-47", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-52", 0 ]
}
}
, {
"patchline" : {
"color" : [ 0.101961, 0.121569, 0.172549, 1.0 ],
"destination" : [ "obj-43", 0 ],
"disabled" : 0,
"hidden" : 0,
"source" : [ "obj-53", 0 ]
}
}
]
}
,
"patching_rect" : [ 92.0, 53.0, 48.0, 19.0 ],
"saved_object_attributes" : {
"description" : "",
"digest" : "",
"fontsize" : 9.0,
"globalpatchername" : "",
"style" : "",
"tags" : ""
}
,
"style" : "",
"text" : "p counter",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"fontface" : 0,
"fontname" : "Arial Bold",
"fontsize" : 9.0,
"id" : "obj-46",
"maxclass" : "comment",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 109.0, 24.0, 24.0, 17.0 ],
"style" : "",
"text" : "ON",
"textcolor" : [ 1.0, 1.0, 1.0, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"checkedcolor" : [ 0.301961, 0.337255, 0.403922, 1.0 ],
"id" : "obj-42",
"maxclass" : "toggle",
"numinlets" : 1,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"parameter_enable" : 0,
"patching_rect" : [ 92.0, 24.0, 20.0, 20.0 ],
"style" : "",
"uncheckedcolor" : [ 0.0, 0.0, 0.0, 0.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 0.376187, 0.409384, 0.445165, 1.0 ],
"fontface" : 0,
"fontname" : "Arial Bold",
"fontsize" : 9.0,
"htricolor" : [ 0.921569, 0.94902, 0.05098, 1.0 ],
"id" : "obj-28",
"maxclass" : "number",
"numinlets" : 1,
"numoutlets" : 2,
"outlettype" : [ "", "bang" ],
"parameter_enable" : 0,
"patching_rect" : [ 130.0, 467.0, 50.0, 19.0 ],
"style" : "",
"textcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"tricolor" : [ 0.666667, 0.698039, 0.717647, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-21",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patcher" : {
"fileversion" : 1,
"appversion" : {
"major" : 7,
"minor" : 0,
"revision" : 5,
"architecture" : "x86",
"modernui" : 1
}
,
"rect" : [ 25.0, 69.0, 138.0, 151.0 ],
"bgcolor" : [ 0.666667, 0.698039, 0.717647, 1.0 ],
"bglocked" : 0,
"openinpresentation" : 0,
"default_fontsize" : 9.0,
"default_fontface" : 0,
"default_fontname" : "Arial",
"gridonopen" : 1,
"gridsize" : [ 15.0, 15.0 ],
"gridsnaponopen" : 1,
"objectsnaponopen" : 1,
"statusbarvisible" : 2,
"toolbarvisible" : 0,
"lefttoolbarpinned" : 0,
"toptoolbarpinned" : 0,
"righttoolbarpinned" : 0,
"bottomtoolbarpinned" : 0,
"toolbars_unpinned_last_save" : 0,
"tallnewobj" : 0,
"boxanimatetime" : 0,
"enablehscroll" : 1,
"enablevscroll" : 1,
"devicewidth" : 0.0,
"description" : "",
"digest" : "",
"tags" : "",
"style" : "",
"subpatcher_template" : "",
"boxes" : [ {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-99",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "int" ],
"patching_rect" : [ 29.0, 49.0, 32.5, 17.0 ],
"style" : "",
"text" : "== 0",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"bgcolor" : [ 1.0, 1.0, 1.0, 1.0 ],
"color" : [ 0.494118, 0.556863, 0.607843, 1.0 ],
"fontface" : 0,
"fontname" : "Arial",
"fontsize" : 9.0,
"id" : "obj-92",
"maxclass" : "newobj",
"numinlets" : 2,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 29.0, 75.0, 66.0, 17.0 ],
"style" : "",
"text" : "gate 1 1",
"textcolor" : [ 0.101961, 0.121569, 0.172549, 1.0 ]
}
}
, {
"box" : {
"comment" : "",
"id" : "obj-120",
"maxclass" : "inlet",
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 29.0, 23.0, 17.0, 17.0 ],
"style" : ""
}
}
, {
"box" : {
"comment" : "",
"id" : "obj-121",
"maxclass" : "inlet",
"numinlets" : 0,
"numoutlets" : 1,
"outlettype" : [ "" ],
"patching_rect" : [ 76.0, 23.0, 17.0, 17.0 ],
"style" : ""
}
}
, {
"box" : {
"comment" : "",
"id" : "obj-122",
"maxclass" : "outlet",
"numinlets" : 1,
"numoutlets" : 0,
"patching_rect" : [ 29.0, 99.0, 17.0, 17.0 ],
"style" : ""
}
}
],
"lines" : [ {
"patchline" : {
"color" : [ 0.101961, 0.121569, 0.172549, 1.0 ],
"destination" : [ "obj-99", 0 ],
"disabled" : 0,
"hidden" : 0,